diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/rfkill.h | 8 | ||||
| -rw-r--r-- | include/linux/skbuff.h | 5 | ||||
| -rw-r--r-- | include/linux/snmp.h | 2 |
3 files changed, 11 insertions, 4 deletions
diff --git a/include/linux/rfkill.h b/include/linux/rfkill.h index c5f6e54ec6ae..741d1a62cc3f 100644 --- a/include/linux/rfkill.h +++ b/include/linux/rfkill.h | |||
| @@ -68,7 +68,8 @@ enum rfkill_state { | |||
| 68 | * @user_claim_unsupported: Whether the hardware supports exclusive | 68 | * @user_claim_unsupported: Whether the hardware supports exclusive |
| 69 | * RF-kill control by userspace. Set this before registering. | 69 | * RF-kill control by userspace. Set this before registering. |
| 70 | * @user_claim: Set when the switch is controlled exlusively by userspace. | 70 | * @user_claim: Set when the switch is controlled exlusively by userspace. |
| 71 | * @mutex: Guards switch state transitions | 71 | * @mutex: Guards switch state transitions. It serializes callbacks |
| 72 | * and also protects the state. | ||
| 72 | * @data: Pointer to the RF button drivers private data which will be | 73 | * @data: Pointer to the RF button drivers private data which will be |
| 73 | * passed along when toggling radio state. | 74 | * passed along when toggling radio state. |
| 74 | * @toggle_radio(): Mandatory handler to control state of the radio. | 75 | * @toggle_radio(): Mandatory handler to control state of the radio. |
| @@ -89,12 +90,13 @@ struct rfkill { | |||
| 89 | const char *name; | 90 | const char *name; |
| 90 | enum rfkill_type type; | 91 | enum rfkill_type type; |
| 91 | 92 | ||
| 92 | enum rfkill_state state; | ||
| 93 | bool user_claim_unsupported; | 93 | bool user_claim_unsupported; |
| 94 | bool user_claim; | 94 | bool user_claim; |
| 95 | 95 | ||
| 96 | /* the mutex serializes callbacks and also protects | ||
| 97 | * the state */ | ||
| 96 | struct mutex mutex; | 98 | struct mutex mutex; |
| 97 | 99 | enum rfkill_state state; | |
| 98 | void *data; | 100 | void *data; |
| 99 | int (*toggle_radio)(void *data, enum rfkill_state state); | 101 | int (*toggle_radio)(void *data, enum rfkill_state state); |
| 100 | int (*get_state)(void *data, enum rfkill_state *state); | 102 | int (*get_state)(void *data, enum rfkill_state *state); |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 7ea44f6621f2..a640385e0598 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -316,7 +316,10 @@ struct sk_buff { | |||
| 316 | #ifdef CONFIG_IPV6_NDISC_NODETYPE | 316 | #ifdef CONFIG_IPV6_NDISC_NODETYPE |
| 317 | __u8 ndisc_nodetype:2; | 317 | __u8 ndisc_nodetype:2; |
| 318 | #endif | 318 | #endif |
| 319 | /* 14 bit hole */ | 319 | #if defined(CONFIG_MAC80211) || defined(CONFIG_MAC80211_MODULE) |
| 320 | __u8 do_not_encrypt:1; | ||
| 321 | #endif | ||
| 322 | /* 0/13/14 bit hole */ | ||
| 320 | 323 | ||
| 321 | #ifdef CONFIG_NET_DMA | 324 | #ifdef CONFIG_NET_DMA |
| 322 | dma_cookie_t dma_cookie; | 325 | dma_cookie_t dma_cookie; |
diff --git a/include/linux/snmp.h b/include/linux/snmp.h index 5df62ef1280c..7a6e6bba4a71 100644 --- a/include/linux/snmp.h +++ b/include/linux/snmp.h | |||
| @@ -214,6 +214,8 @@ enum | |||
| 214 | LINUX_MIB_TCPDSACKIGNOREDOLD, /* TCPSACKIgnoredOld */ | 214 | LINUX_MIB_TCPDSACKIGNOREDOLD, /* TCPSACKIgnoredOld */ |
| 215 | LINUX_MIB_TCPDSACKIGNOREDNOUNDO, /* TCPSACKIgnoredNoUndo */ | 215 | LINUX_MIB_TCPDSACKIGNOREDNOUNDO, /* TCPSACKIgnoredNoUndo */ |
| 216 | LINUX_MIB_TCPSPURIOUSRTOS, /* TCPSpuriousRTOs */ | 216 | LINUX_MIB_TCPSPURIOUSRTOS, /* TCPSpuriousRTOs */ |
| 217 | LINUX_MIB_TCPMD5NOTFOUND, /* TCPMD5NotFound */ | ||
| 218 | LINUX_MIB_TCPMD5UNEXPECTED, /* TCPMD5Unexpected */ | ||
| 217 | __LINUX_MIB_MAX | 219 | __LINUX_MIB_MAX |
| 218 | }; | 220 | }; |
| 219 | 221 | ||
