Message ID | 20180628224604.18729-1-dg@adax.com (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show |
Series | kni: Interface detach and link status fixes. | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
ci/Intel-compilation | fail | Compilation issues |
diff --git a/kernel/linux/kni/kni_dev.h b/kernel/linux/kni/kni_dev.h index 6275ef27f..ed42989cc 100644 --- a/kernel/linux/kni/kni_dev.h +++ b/kernel/linux/kni/kni_dev.h @@ -37,7 +37,6 @@ struct kni_dev { struct list_head list; struct net_device_stats stats; - int status; uint16_t group_id; /* Group ID of a group of KNI devices */ uint32_t core_id; /* Core ID to bind */ char name[RTE_KNI_NAMESIZE]; /* Network device name */ @@ -82,9 +81,6 @@ struct kni_dev { /* mbuf size */ uint32_t mbuf_size; - /* synchro for request processing */ - unsigned long synchro; - /* buffers */ void *pa[MBUF_BURST_SZ]; void *va[MBUF_BURST_SZ];
Remove the unused fields 'status' and 'synchro' from the struct kni_dev. Signed-off-by: Dan Gora <dg@adax.com> --- kernel/linux/kni/kni_dev.h | 4 ---- 1 file changed, 4 deletions(-)