diff options
| author | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
|---|---|---|
| committer | Dan Williams <dan.j.williams@intel.com> | 2009-09-08 20:55:21 -0400 |
| commit | bbb20089a3275a19e475dbc21320c3742e3ca423 (patch) | |
| tree | 216fdc1cbef450ca688135c5b8969169482d9a48 /include/linux/if_packet.h | |
| parent | 3e48e656903e9fd8bc805c6a2c4264d7808d315b (diff) | |
| parent | 657a77fa7284d8ae28dfa48f1dc5d919bf5b2843 (diff) | |
Merge branch 'dmaengine' into async-tx-next
Conflicts:
crypto/async_tx/async_xor.c
drivers/dma/ioat/dma_v2.h
drivers/dma/ioat/pci.c
drivers/md/raid5.c
Diffstat (limited to 'include/linux/if_packet.h')
| -rw-r--r-- | include/linux/if_packet.h | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/include/linux/if_packet.h b/include/linux/if_packet.h index 18db0668065a..dea7d6b7cf98 100644 --- a/include/linux/if_packet.h +++ b/include/linux/if_packet.h | |||
| @@ -46,6 +46,8 @@ struct sockaddr_ll | |||
| 46 | #define PACKET_VERSION 10 | 46 | #define PACKET_VERSION 10 |
| 47 | #define PACKET_HDRLEN 11 | 47 | #define PACKET_HDRLEN 11 |
| 48 | #define PACKET_RESERVE 12 | 48 | #define PACKET_RESERVE 12 |
| 49 | #define PACKET_TX_RING 13 | ||
| 50 | #define PACKET_LOSS 14 | ||
| 49 | 51 | ||
| 50 | struct tpacket_stats | 52 | struct tpacket_stats |
| 51 | { | 53 | { |
| @@ -63,14 +65,22 @@ struct tpacket_auxdata | |||
| 63 | __u16 tp_vlan_tci; | 65 | __u16 tp_vlan_tci; |
| 64 | }; | 66 | }; |
| 65 | 67 | ||
| 68 | /* Rx ring - header status */ | ||
| 69 | #define TP_STATUS_KERNEL 0x0 | ||
| 70 | #define TP_STATUS_USER 0x1 | ||
| 71 | #define TP_STATUS_COPY 0x2 | ||
| 72 | #define TP_STATUS_LOSING 0x4 | ||
| 73 | #define TP_STATUS_CSUMNOTREADY 0x8 | ||
| 74 | |||
| 75 | /* Tx ring - header status */ | ||
| 76 | #define TP_STATUS_AVAILABLE 0x0 | ||
| 77 | #define TP_STATUS_SEND_REQUEST 0x1 | ||
| 78 | #define TP_STATUS_SENDING 0x2 | ||
| 79 | #define TP_STATUS_WRONG_FORMAT 0x4 | ||
| 80 | |||
| 66 | struct tpacket_hdr | 81 | struct tpacket_hdr |
| 67 | { | 82 | { |
| 68 | unsigned long tp_status; | 83 | unsigned long tp_status; |
| 69 | #define TP_STATUS_KERNEL 0 | ||
| 70 | #define TP_STATUS_USER 1 | ||
| 71 | #define TP_STATUS_COPY 2 | ||
| 72 | #define TP_STATUS_LOSING 4 | ||
| 73 | #define TP_STATUS_CSUMNOTREADY 8 | ||
| 74 | unsigned int tp_len; | 84 | unsigned int tp_len; |
| 75 | unsigned int tp_snaplen; | 85 | unsigned int tp_snaplen; |
| 76 | unsigned short tp_mac; | 86 | unsigned short tp_mac; |
| @@ -135,5 +145,6 @@ struct packet_mreq | |||
| 135 | #define PACKET_MR_MULTICAST 0 | 145 | #define PACKET_MR_MULTICAST 0 |
| 136 | #define PACKET_MR_PROMISC 1 | 146 | #define PACKET_MR_PROMISC 1 |
| 137 | #define PACKET_MR_ALLMULTI 2 | 147 | #define PACKET_MR_ALLMULTI 2 |
| 148 | #define PACKET_MR_UNICAST 3 | ||
| 138 | 149 | ||
| 139 | #endif | 150 | #endif |
