diff options
| author | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-11 10:28:19 -0500 |
|---|---|---|
| committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2013-01-11 10:28:19 -0500 |
| commit | 734d1ece37fbf3d2ddfc71bc6c69e0fe35f02542 (patch) | |
| tree | c4805dd7e746b1feb9e09e9849f3245d0b2c0c6b /net/tipc/node.h | |
| parent | 216c82c6aba63eeb49d7654b448e0d47bea255bb (diff) | |
| parent | 9931faca02c604c22335f5a935a501bb2ace6e20 (diff) | |
Merge tag 'v3.8-rc3' into v4l_for_linus
Linux 3.8-rc3
* tag 'v3.8-rc3': (11110 commits)
Linux 3.8-rc3
mm: reinstante dropped pmd_trans_splitting() check
cred: Remove tgcred pointer from struct cred
drm/ttm: fix fence locking in ttm_buffer_object_transfer
ARM: clps711x: Fix bad merge of clockevents setup
ARM: highbank: save and restore L2 cache and GIC on suspend
ARM: highbank: add a power request clear
ARM: highbank: fix secondary boot and hotplug
ARM: highbank: fix typos with hignbank in power request functions
ARM: dts: fix highbank cpu mpidr values
ARM: dts: add device_type prop to cpu nodes on Calxeda platforms
drm/prime: drop reference on imported dma-buf come from gem
xen/netfront: improve truesize tracking
ARM: mx5: Fix MX53 flexcan2 clock
ARM: OMAP2+: am33xx-hwmod: Fix wrongly terminated am33xx_usbss_mpu_irqs array
sctp: fix Kconfig bug in default cookie hmac selection
EDAC: Cleanup device deregistering path
EDAC: Fix EDAC Kconfig menu
EDAC: Fix kernel panic on module unloading
ALSA: hda - add mute LED for HP Pavilion 17 (Realtek codec)
...
Diffstat (limited to 'net/tipc/node.h')
| -rw-r--r-- | net/tipc/node.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/net/tipc/node.h b/net/tipc/node.h index cfcaf4d6e480..3c189b35b102 100644 --- a/net/tipc/node.h +++ b/net/tipc/node.h | |||
| @@ -67,8 +67,6 @@ | |||
| 67 | * @permit_changeover: non-zero if node has redundant links to this system | 67 | * @permit_changeover: non-zero if node has redundant links to this system |
| 68 | * @signature: node instance identifier | 68 | * @signature: node instance identifier |
| 69 | * @bclink: broadcast-related info | 69 | * @bclink: broadcast-related info |
| 70 | * @supportable: non-zero if node supports TIPC b'cast link capability | ||
| 71 | * @supported: non-zero if node supports TIPC b'cast capability | ||
| 72 | * @acked: sequence # of last outbound b'cast message acknowledged by node | 70 | * @acked: sequence # of last outbound b'cast message acknowledged by node |
| 73 | * @last_in: sequence # of last in-sequence b'cast message received from node | 71 | * @last_in: sequence # of last in-sequence b'cast message received from node |
| 74 | * @last_sent: sequence # of last b'cast message sent by node | 72 | * @last_sent: sequence # of last b'cast message sent by node |
| @@ -77,6 +75,7 @@ | |||
| 77 | * @deferred_head: oldest OOS b'cast message received from node | 75 | * @deferred_head: oldest OOS b'cast message received from node |
| 78 | * @deferred_tail: newest OOS b'cast message received from node | 76 | * @deferred_tail: newest OOS b'cast message received from node |
| 79 | * @defragm: list of partially reassembled b'cast message fragments from node | 77 | * @defragm: list of partially reassembled b'cast message fragments from node |
| 78 | * @recv_permitted: true if node is allowed to receive b'cast messages | ||
| 80 | */ | 79 | */ |
| 81 | struct tipc_node { | 80 | struct tipc_node { |
| 82 | u32 addr; | 81 | u32 addr; |
| @@ -92,8 +91,6 @@ struct tipc_node { | |||
| 92 | int permit_changeover; | 91 | int permit_changeover; |
| 93 | u32 signature; | 92 | u32 signature; |
| 94 | struct { | 93 | struct { |
| 95 | u8 supportable; | ||
| 96 | u8 supported; | ||
| 97 | u32 acked; | 94 | u32 acked; |
| 98 | u32 last_in; | 95 | u32 last_in; |
| 99 | u32 last_sent; | 96 | u32 last_sent; |
| @@ -102,6 +99,7 @@ struct tipc_node { | |||
| 102 | struct sk_buff *deferred_head; | 99 | struct sk_buff *deferred_head; |
| 103 | struct sk_buff *deferred_tail; | 100 | struct sk_buff *deferred_tail; |
| 104 | struct sk_buff *defragm; | 101 | struct sk_buff *defragm; |
| 102 | bool recv_permitted; | ||
| 105 | } bclink; | 103 | } bclink; |
| 106 | }; | 104 | }; |
| 107 | 105 | ||
