Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tipc: Remove some excess struct member documentation

Remove documentation for nonexistent struct members, addressing these
warnings:

./net/tipc/link.c:228: warning: Excess struct member 'media_addr' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'timer' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'refcnt' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'proto_msg' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'pmsg' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'backlog_limit' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'exp_msg_count' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'reset_rcv_checkpt' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'transmitq' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'snt_nxt' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'deferred_queue' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'unacked_window' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'next_out' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'long_msg_seq_no' description in 'tipc_link'
./net/tipc/link.c:228: warning: Excess struct member 'bc_rcvr' description in 'tipc_link'

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

Jonathan Corbet and committed by
David S. Miller
45248f29 dcc3e464

-15
-15
net/tipc/link.c
··· 82 82 * struct tipc_link - TIPC link data structure 83 83 * @addr: network address of link's peer node 84 84 * @name: link name character string 85 - * @media_addr: media address to use when sending messages over link 86 - * @timer: link timer 87 85 * @net: pointer to namespace struct 88 - * @refcnt: reference counter for permanent references (owner node & timer) 89 86 * @peer_session: link session # being used by peer end of link 90 87 * @peer_bearer_id: bearer id used by link's peer endpoint 91 88 * @bearer_id: local bearer id used by link ··· 91 94 * @state: current state of link FSM 92 95 * @peer_caps: bitmap describing capabilities of peer node 93 96 * @silent_intv_cnt: # of timer intervals without any reception from peer 94 - * @proto_msg: template for control messages generated by link 95 - * @pmsg: convenience pointer to "proto_msg" field 96 97 * @priority: current link priority 97 98 * @net_plane: current link network plane ('A' through 'H') 98 99 * @mon_state: cookie with information needed by link monitor 99 - * @backlog_limit: backlog queue congestion thresholds (indexed by importance) 100 - * @exp_msg_count: # of tunnelled messages expected during link changeover 101 - * @reset_rcv_checkpt: seq # of last acknowledged message at time of link reset 102 100 * @mtu: current maximum packet size for this link 103 101 * @advertised_mtu: advertised own mtu when link is being established 104 - * @transmitq: queue for sent, non-acked messages 105 102 * @backlogq: queue for messages waiting to be sent 106 - * @snt_nxt: next sequence number to use for outbound messages 107 103 * @ackers: # of peers that needs to ack each packet before it can be released 108 104 * @acked: # last packet acked by a certain peer. Used for broadcast. 109 105 * @rcv_nxt: next sequence number to expect for inbound messages 110 - * @deferred_queue: deferred queue saved OOS b'cast message received from node 111 - * @unacked_window: # of inbound messages rx'd without ack'ing back to peer 112 106 * @inputq: buffer queue for messages to be delivered upwards 113 107 * @namedq: buffer queue for name table messages to be delivered upwards 114 - * @next_out: ptr to first unsent outbound message in queue 115 108 * @wakeupq: linked list of wakeup msgs waiting for link congestion to abate 116 - * @long_msg_seq_no: next identifier to use for outbound fragmented messages 117 109 * @reasm_buf: head of partially reassembled inbound message fragments 118 - * @bc_rcvr: marks that this is a broadcast receiver link 119 110 * @stats: collects statistics regarding link activity 120 111 * @session: session to be used by link 121 112 * @snd_nxt_state: next send seq number