diff options
| author | Ingo Molnar <mingo@elte.hu> | 2009-04-05 19:41:22 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2009-04-05 19:41:22 -0400 |
| commit | 9efe21cb82b5dbe3b0b2ae4de4eccc64ecb94e95 (patch) | |
| tree | 7ff8833745d2f268f897f6fa4a27263b4a572245 /include/linux/etherdevice.h | |
| parent | de18836e447c2dc30120c0919b8db8ddc0401cc4 (diff) | |
| parent | 0221c81b1b8eb0cbb6b30a0ced52ead32d2b4e4c (diff) | |
Merge branch 'linus' into irq/threaded
Conflicts:
include/linux/irq.h
kernel/irq/handle.c
Diffstat (limited to 'include/linux/etherdevice.h')
| -rw-r--r-- | include/linux/etherdevice.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index 1cb0f0b90926..a1f17abba7dc 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h | |||
| @@ -184,4 +184,25 @@ static inline unsigned compare_ether_addr_64bits(const u8 addr1[6+2], | |||
| 184 | } | 184 | } |
| 185 | #endif /* __KERNEL__ */ | 185 | #endif /* __KERNEL__ */ |
| 186 | 186 | ||
| 187 | /** | ||
| 188 | * compare_ether_header - Compare two Ethernet headers | ||
| 189 | * @a: Pointer to Ethernet header | ||
| 190 | * @b: Pointer to Ethernet header | ||
| 191 | * | ||
| 192 | * Compare two ethernet headers, returns 0 if equal. | ||
| 193 | * This assumes that the network header (i.e., IP header) is 4-byte | ||
| 194 | * aligned OR the platform can handle unaligned access. This is the | ||
| 195 | * case for all packets coming into netif_receive_skb or similar | ||
| 196 | * entry points. | ||
| 197 | */ | ||
| 198 | |||
| 199 | static inline int compare_ether_header(const void *a, const void *b) | ||
| 200 | { | ||
| 201 | u32 *a32 = (u32 *)((u8 *)a + 2); | ||
| 202 | u32 *b32 = (u32 *)((u8 *)b + 2); | ||
| 203 | |||
| 204 | return (*(u16 *)a ^ *(u16 *)b) | (a32[0] ^ b32[0]) | | ||
| 205 | (a32[1] ^ b32[1]) | (a32[2] ^ b32[2]); | ||
| 206 | } | ||
| 207 | |||
| 187 | #endif /* _LINUX_ETHERDEVICE_H */ | 208 | #endif /* _LINUX_ETHERDEVICE_H */ |
