Home
last modified time | relevance | path

Searched refs:seq (Results 1 – 25 of 279) sorted by relevance

12345678910>>...12

/net/xfrm/
Dxfrm_replay.c14 u32 seq, seq_hi, bottom; in xfrm_replay_seqhi() local
20 seq = ntohl(net_seq); in xfrm_replay_seqhi()
22 bottom = replay_esn->seq - replay_esn->replay_window + 1; in xfrm_replay_seqhi()
24 if (likely(replay_esn->seq >= replay_esn->replay_window - 1)) { in xfrm_replay_seqhi()
26 if (unlikely(seq < bottom)) in xfrm_replay_seqhi()
30 if (unlikely(seq >= bottom)) in xfrm_replay_seqhi()
54 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
90 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in xfrm_replay_overflow()
91 XFRM_SKB_CB(skb)->seq.output.hi = 0; in xfrm_replay_overflow()
110 u32 seq = ntohl(net_seq); in xfrm_replay_check() local
[all …]
/net/sctp/
Dproc.c59 static int sctp_snmp_seq_show(struct seq_file *seq, void *v) in sctp_snmp_seq_show() argument
62 struct net *net = seq->private; in sctp_snmp_seq_show()
70 seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name, in sctp_snmp_seq_show()
77 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument
105 seq_printf(seq, "*"); in sctp_seq_dump_local_addrs()
107 af->seq_dump_addr(seq, addr); in sctp_seq_dump_local_addrs()
113 static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_association *assoc) in sctp_seq_dump_remote_addrs() argument
126 seq_printf(seq, "*"); in sctp_seq_dump_remote_addrs()
128 af->seq_dump_addr(seq, addr); in sctp_seq_dump_remote_addrs()
132 static void *sctp_eps_seq_start(struct seq_file *seq, loff_t *pos) in sctp_eps_seq_start() argument
[all …]
Dobjcnt.c62 static int sctp_objcnt_seq_show(struct seq_file *seq, void *v) in sctp_objcnt_seq_show() argument
67 seq_setwidth(seq, 127); in sctp_objcnt_seq_show()
68 seq_printf(seq, "%s: %d", sctp_dbg_objcnt[i].label, in sctp_objcnt_seq_show()
70 seq_pad(seq, '\n'); in sctp_objcnt_seq_show()
74 static void *sctp_objcnt_seq_start(struct seq_file *seq, loff_t *pos) in sctp_objcnt_seq_start() argument
79 static void sctp_objcnt_seq_stop(struct seq_file *seq, void *v) in sctp_objcnt_seq_stop() argument
83 static void *sctp_objcnt_seq_next(struct seq_file *seq, void *v, loff_t *pos) in sctp_objcnt_seq_next() argument
/net/atm/
Dproc.c44 static void add_stats(struct seq_file *seq, const char *aal, in add_stats() argument
47 seq_printf(seq, "%s ( %d %d %d %d %d )", aal, in add_stats()
53 static void atm_dev_info(struct seq_file *seq, const struct atm_dev *dev) in atm_dev_info() argument
57 seq_printf(seq, "%3d %-8s", dev->number, dev->type); in atm_dev_info()
59 seq_printf(seq, "%02x", dev->esi[i]); in atm_dev_info()
60 seq_puts(seq, " "); in atm_dev_info()
61 add_stats(seq, "0", &dev->stats.aal0); in atm_dev_info()
62 seq_puts(seq, " "); in atm_dev_info()
63 add_stats(seq, "5", &dev->stats.aal5); in atm_dev_info()
64 seq_printf(seq, "\t[%d]", refcount_read(&dev->refcnt)); in atm_dev_info()
[all …]
/net/kcm/
Dkcmproc.c18 static struct kcm_mux *kcm_get_first(struct seq_file *seq) in kcm_get_first() argument
20 struct net *net = seq_file_net(seq); in kcm_get_first()
35 static struct kcm_mux *kcm_get_idx(struct seq_file *seq, loff_t pos) in kcm_get_idx() argument
37 struct net *net = seq_file_net(seq); in kcm_get_idx()
49 static void *kcm_seq_next(struct seq_file *seq, void *v, loff_t *pos) in kcm_seq_next() argument
54 p = kcm_get_first(seq); in kcm_seq_next()
61 static void *kcm_seq_start(struct seq_file *seq, loff_t *pos) in kcm_seq_start() argument
69 return kcm_get_idx(seq, *pos - 1); in kcm_seq_start()
72 static void kcm_seq_stop(struct seq_file *seq, void *v) in kcm_seq_stop() argument
83 static void kcm_format_mux_header(struct seq_file *seq) in kcm_format_mux_header() argument
[all …]
/net/ipv4/
Dproc.c50 static int sockstat_seq_show(struct seq_file *seq, void *v) in sockstat_seq_show() argument
52 struct net *net = seq->private; in sockstat_seq_show()
58 socket_seq_show(seq); in sockstat_seq_show()
59 seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %ld\n", in sockstat_seq_show()
63 seq_printf(seq, "UDP: inuse %d mem %ld\n", in sockstat_seq_show()
66 seq_printf(seq, "UDPLITE: inuse %d\n", in sockstat_seq_show()
68 seq_printf(seq, "RAW: inuse %d\n", in sockstat_seq_show()
70 seq_printf(seq, "FRAG: inuse %u memory %lu\n", in sockstat_seq_show()
295 static void icmpmsg_put_line(struct seq_file *seq, unsigned long *vals, in icmpmsg_put_line() argument
301 seq_puts(seq, "\nIcmpMsg:"); in icmpmsg_put_line()
[all …]
Dtcp_minisocks.c33 static bool tcp_in_window(u32 seq, u32 end_seq, u32 s_win, u32 e_win) in tcp_in_window() argument
35 if (seq == s_win) in tcp_in_window()
37 if (after(end_seq, s_win) && before(seq, e_win)) in tcp_in_window()
39 return seq == e_win && seq == end_seq; in tcp_in_window()
117 !tcp_in_window(TCP_SKB_CB(skb)->seq, TCP_SKB_CB(skb)->end_seq, in tcp_timewait_state_process()
126 if (th->syn && !before(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt)) in tcp_timewait_state_process()
132 TCP_SKB_CB(skb)->end_seq == TCP_SKB_CB(skb)->seq) { in tcp_timewait_state_process()
174 (TCP_SKB_CB(skb)->seq == tcptw->tw_rcv_nxt && in tcp_timewait_state_process()
175 (TCP_SKB_CB(skb)->seq == TCP_SKB_CB(skb)->end_seq || th->rst))) { in tcp_timewait_state_process()
219 (after(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt) || in tcp_timewait_state_process()
[all …]
/net/8021q/
Dvlanproc.c36 static int vlan_seq_show(struct seq_file *seq, void *v);
37 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos);
38 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos);
39 static void vlan_seq_stop(struct seq_file *seq, void *);
40 static int vlandev_seq_show(struct seq_file *seq, void *v);
167 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos) in vlan_seq_start() argument
171 struct net *net = seq_file_net(seq); in vlan_seq_start()
189 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos) in vlan_seq_next() argument
192 struct net *net = seq_file_net(seq); in vlan_seq_next()
210 static void vlan_seq_stop(struct seq_file *seq, void *v) in vlan_seq_stop() argument
[all …]
/net/netfilter/
Dnf_conntrack_seqadj.c23 this_way = &seqadj->seq[dir]; in nf_ct_seqadj_init()
31 __be32 seq, s32 off) in nf_ct_seqadj_set() argument
48 this_way = &seqadj->seq[dir]; in nf_ct_seqadj_set()
50 before(this_way->correction_pos, ntohl(seq))) { in nf_ct_seqadj_set()
51 this_way->correction_pos = ntohl(seq); in nf_ct_seqadj_set()
70 nf_ct_seqadj_set(ct, ctinfo, th->seq, off); in nf_ct_tcp_seqadj_set()
79 struct nf_ct_seqadj *seq) in nf_ct_sack_block_adjust() argument
86 if (after(ntohl(sack->start_seq) - seq->offset_before, in nf_ct_sack_block_adjust()
87 seq->correction_pos)) in nf_ct_sack_block_adjust()
89 seq->offset_after); in nf_ct_sack_block_adjust()
[all …]
/net/core/
Dnet-procfs.c16 static inline struct net_device *dev_from_same_bucket(struct seq_file *seq, loff_t *pos) in dev_from_same_bucket() argument
18 struct net *net = seq_file_net(seq); in dev_from_same_bucket()
32 static inline struct net_device *dev_from_bucket(struct seq_file *seq, loff_t *pos) in dev_from_bucket() argument
38 dev = dev_from_same_bucket(seq, pos); in dev_from_bucket()
53 static void *dev_seq_start(struct seq_file *seq, loff_t *pos) in dev_seq_start() argument
63 return dev_from_bucket(seq, pos); in dev_seq_start()
66 static void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) in dev_seq_next() argument
69 return dev_from_bucket(seq, pos); in dev_seq_next()
72 static void dev_seq_stop(struct seq_file *seq, void *v) in dev_seq_stop() argument
78 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev) in dev_seq_printf_stats() argument
[all …]
Dsecure_seq.c38 static u32 seq_scale(u32 seq) in seq_scale() argument
50 return seq + (ktime_get_real_ns() >> 6); in seq_scale()
159 u64 seq; in secure_dccp_sequence_number() local
161 seq = siphash_3u32((__force u32)saddr, (__force u32)daddr, in secure_dccp_sequence_number()
164 seq += ktime_get_real_ns(); in secure_dccp_sequence_number()
165 seq &= (1ull << 48) - 1; in secure_dccp_sequence_number()
166 return seq; in secure_dccp_sequence_number()
185 u64 seq; in secure_dccpv6_sequence_number() local
187 seq = siphash(&combined, offsetofend(typeof(combined), dport), in secure_dccpv6_sequence_number()
189 seq += ktime_get_real_ns(); in secure_dccpv6_sequence_number()
[all …]
/net/rxrpc/
Dproc.c27 static void *rxrpc_call_seq_start(struct seq_file *seq, loff_t *_pos) in rxrpc_call_seq_start() argument
31 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_start()
38 static void *rxrpc_call_seq_next(struct seq_file *seq, void *v, loff_t *pos) in rxrpc_call_seq_next() argument
40 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_next()
45 static void rxrpc_call_seq_stop(struct seq_file *seq, void *v) in rxrpc_call_seq_stop() argument
49 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_stop()
55 static int rxrpc_call_seq_show(struct seq_file *seq, void *v) in rxrpc_call_seq_show() argument
61 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_show()
67 seq_puts(seq, in rxrpc_call_seq_show()
101 seq_printf(seq, in rxrpc_call_seq_show()
[all …]
Dinput.c27 struct rxrpc_call *call, rxrpc_seq_t seq) in rxrpc_proto_abort() argument
29 if (rxrpc_abort_call(why, call, seq, RX_PROTOCOL_ERROR, -EBADMSG)) { in rxrpc_proto_abort()
391 static void rxrpc_input_dup_data(struct rxrpc_call *call, rxrpc_seq_t seq, in rxrpc_input_dup_data() argument
418 rxrpc_seq_t seq0 = sp->hdr.seq, hard_ack; in rxrpc_input_data()
471 rxrpc_seq_t seq = seq0 + j; in rxrpc_input_data() local
472 unsigned int ix = seq & RXRPC_RXTX_BUFF_MASK; in rxrpc_input_data()
478 j, serial, seq, terminal, last); in rxrpc_input_data()
482 seq != call->rx_top) { in rxrpc_input_data()
483 rxrpc_proto_abort("LSN", call, seq); in rxrpc_input_data()
488 after_eq(seq, call->rx_top)) { in rxrpc_input_data()
[all …]
/net/ipv6/
Dproc.c34 static int sockstat6_seq_show(struct seq_file *seq, void *v) in sockstat6_seq_show() argument
36 struct net *net = seq->private; in sockstat6_seq_show()
38 seq_printf(seq, "TCP6: inuse %d\n", in sockstat6_seq_show()
40 seq_printf(seq, "UDP6: inuse %d\n", in sockstat6_seq_show()
42 seq_printf(seq, "UDPLITE6: inuse %d\n", in sockstat6_seq_show()
44 seq_printf(seq, "RAW6: inuse %d\n", in sockstat6_seq_show()
46 seq_printf(seq, "FRAG6: inuse %u memory %lu\n", in sockstat6_seq_show()
143 static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib) in snmp6_seq_show_icmpv6msg() argument
159 seq_printf(seq, "%-32s\t%lu\n", name, in snmp6_seq_show_icmpv6msg()
172 seq_printf(seq, "%-32s\t%lu\n", name, val); in snmp6_seq_show_icmpv6msg()
[all …]
Danycast.c476 #define ac6_seq_private(seq) ((struct ac6_iter_state *)(seq)->private) argument
478 static inline struct ifacaddr6 *ac6_get_first(struct seq_file *seq) in ac6_get_first() argument
481 struct ac6_iter_state *state = ac6_seq_private(seq); in ac6_get_first()
482 struct net *net = seq_file_net(seq); in ac6_get_first()
501 static struct ifacaddr6 *ac6_get_next(struct seq_file *seq, struct ifacaddr6 *im) in ac6_get_next() argument
503 struct ac6_iter_state *state = ac6_seq_private(seq); in ac6_get_next()
524 static struct ifacaddr6 *ac6_get_idx(struct seq_file *seq, loff_t pos) in ac6_get_idx() argument
526 struct ifacaddr6 *im = ac6_get_first(seq); in ac6_get_idx()
528 while (pos && (im = ac6_get_next(seq, im)) != NULL) in ac6_get_idx()
533 static void *ac6_seq_start(struct seq_file *seq, loff_t *pos) in ac6_seq_start() argument
[all …]
/net/sunrpc/
Dstats.c37 static int rpc_proc_show(struct seq_file *seq, void *v) { in rpc_proc_show() argument
38 const struct rpc_stat *statp = seq->private; in rpc_proc_show()
42 seq_printf(seq, in rpc_proc_show()
48 seq_printf(seq, in rpc_proc_show()
58 seq_printf(seq, "proc%u %u", in rpc_proc_show()
61 seq_printf(seq, " %u", vers->counts[j]); in rpc_proc_show()
62 seq_putc(seq, '\n'); in rpc_proc_show()
83 void svc_seq_show(struct seq_file *seq, const struct svc_stat *statp) in svc_seq_show() argument
89 seq_printf(seq, in svc_seq_show()
95 seq_printf(seq, in svc_seq_show()
[all …]
/net/appletalk/
Datalk_proc.c27 static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos) in atalk_seq_interface_start() argument
36 static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_interface_next() argument
53 static void atalk_seq_interface_stop(struct seq_file *seq, void *v) in atalk_seq_interface_stop() argument
59 static int atalk_seq_interface_show(struct seq_file *seq, void *v) in atalk_seq_interface_show() argument
64 seq_puts(seq, "Interface Address Networks " in atalk_seq_interface_show()
70 seq_printf(seq, "%-16s %04X:%02X %04X-%04X %d\n", in atalk_seq_interface_show()
88 static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos) in atalk_seq_route_start() argument
97 static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_route_next() argument
114 static void atalk_seq_route_stop(struct seq_file *seq, void *v) in atalk_seq_route_stop() argument
120 static int atalk_seq_route_show(struct seq_file *seq, void *v) in atalk_seq_route_show() argument
[all …]
/net/x25/
Dx25_proc.c25 static void *x25_seq_route_start(struct seq_file *seq, loff_t *pos) in x25_seq_route_start() argument
32 static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_route_next() argument
37 static void x25_seq_route_stop(struct seq_file *seq, void *v) in x25_seq_route_stop() argument
43 static int x25_seq_route_show(struct seq_file *seq, void *v) in x25_seq_route_show() argument
48 seq_puts(seq, "Address Digits Device\n"); in x25_seq_route_show()
53 seq_printf(seq, "%-15s %-6d %-5s\n", in x25_seq_route_show()
60 static void *x25_seq_socket_start(struct seq_file *seq, loff_t *pos) in x25_seq_socket_start() argument
67 static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_socket_next() argument
72 static void x25_seq_socket_stop(struct seq_file *seq, void *v) in x25_seq_socket_stop() argument
78 static int x25_seq_socket_show(struct seq_file *seq, void *v) in x25_seq_socket_show() argument
[all …]
/net/tipc/
Dsubscr.c63 int tipc_sub_check_overlap(struct tipc_name_seq *seq, u32 found_lower, in tipc_sub_check_overlap() argument
66 if (found_lower < seq->lower) in tipc_sub_check_overlap()
67 found_lower = seq->lower; in tipc_sub_check_overlap()
68 if (found_upper > seq->upper) in tipc_sub_check_overlap()
69 found_upper = seq->upper; in tipc_sub_check_overlap()
82 struct tipc_name_seq seq; in tipc_sub_report_overlap() local
84 seq.type = tipc_sub_read(s, seq.type); in tipc_sub_report_overlap()
85 seq.lower = tipc_sub_read(s, seq.lower); in tipc_sub_report_overlap()
86 seq.upper = tipc_sub_read(s, seq.upper); in tipc_sub_report_overlap()
88 if (!tipc_sub_check_overlap(&seq, found_lower, found_upper)) in tipc_sub_report_overlap()
[all …]
/net/llc/
Dllc_proc.c29 static void llc_ui_format_mac(struct seq_file *seq, u8 *addr) in llc_ui_format_mac() argument
31 seq_printf(seq, "%pM", addr); in llc_ui_format_mac()
59 static void *llc_seq_start(struct seq_file *seq, loff_t *pos) in llc_seq_start() argument
80 static void *llc_seq_next(struct seq_file *seq, void *v, loff_t *pos) in llc_seq_next() argument
114 static void llc_seq_stop(struct seq_file *seq, void *v) in llc_seq_stop() argument
126 static int llc_seq_socket_show(struct seq_file *seq, void *v) in llc_seq_socket_show() argument
132 seq_puts(seq, "SKt Mc local_mac_sap remote_mac_sap " in llc_seq_socket_show()
140 seq_printf(seq, "%2X %2X ", sk->sk_type, 0); in llc_seq_socket_show()
143 llc_ui_format_mac(seq, llc->dev->dev_addr); in llc_seq_socket_show()
146 llc_ui_format_mac(seq, addr); in llc_seq_socket_show()
[all …]
/net/netfilter/ipvs/
Dip_vs_app.c290 __u32 seq = ntohl(th->seq); in vs_fix_seq() local
298 if(after(seq, vseq->init_seq)) { in vs_fix_seq()
299 th->seq = htonl(seq + vseq->delta); in vs_fix_seq()
303 th->seq = htonl(seq + vseq->previous_delta); in vs_fix_seq()
347 unsigned int flag, __u32 seq, int diff) in vs_seq_update() argument
351 if (!(cp->flags & flag) || after(seq, vseq->init_seq)) { in vs_seq_update()
354 vseq->init_seq = seq; in vs_seq_update()
367 __u32 seq; in app_tcp_pkt_out() local
377 seq = ntohl(th->seq); in app_tcp_pkt_out()
401 IP_VS_CONN_F_OUT_SEQ, seq, diff); in app_tcp_pkt_out()
[all …]
/net/phonet/
Dsocket.c530 static struct sock *pn_sock_get_idx(struct seq_file *seq, loff_t pos) in pn_sock_get_idx() argument
532 struct net *net = seq_file_net(seq); in pn_sock_get_idx()
550 static struct sock *pn_sock_get_next(struct seq_file *seq, struct sock *sk) in pn_sock_get_next() argument
552 struct net *net = seq_file_net(seq); in pn_sock_get_next()
561 static void *pn_sock_seq_start(struct seq_file *seq, loff_t *pos) in pn_sock_seq_start() argument
565 return *pos ? pn_sock_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; in pn_sock_seq_start()
568 static void *pn_sock_seq_next(struct seq_file *seq, void *v, loff_t *pos) in pn_sock_seq_next() argument
573 sk = pn_sock_get_idx(seq, 0); in pn_sock_seq_next()
575 sk = pn_sock_get_next(seq, v); in pn_sock_seq_next()
580 static void pn_sock_seq_stop(struct seq_file *seq, void *v) in pn_sock_seq_stop() argument
[all …]
/net/wireless/
Dwext-proc.c29 static void wireless_seq_printf_stats(struct seq_file *seq, in wireless_seq_printf_stats() argument
49 seq_printf(seq, "%6s: %04x %3d%c %3d%c %3d%c %6d %6d %6d " in wireless_seq_printf_stats()
75 static int wireless_dev_seq_show(struct seq_file *seq, void *v) in wireless_dev_seq_show() argument
80 seq_printf(seq, "Inter-| sta-| Quality | Discarded " in wireless_dev_seq_show()
86 wireless_seq_printf_stats(seq, v); in wireless_dev_seq_show()
90 static void *wireless_dev_seq_start(struct seq_file *seq, loff_t *pos) in wireless_dev_seq_start() argument
92 struct net *net = seq_file_net(seq); in wireless_dev_seq_start()
107 static void *wireless_dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) in wireless_dev_seq_next() argument
109 struct net *net = seq_file_net(seq); in wireless_dev_seq_next()
117 static void wireless_dev_seq_stop(struct seq_file *seq, void *v) in wireless_dev_seq_stop() argument
Dlib80211_crypt_ccmp.c347 static int lib80211_ccmp_set_key(void *key, int len, u8 * seq, void *priv) in lib80211_ccmp_set_key() argument
360 if (seq) { in lib80211_ccmp_set_key()
361 data->rx_pn[0] = seq[5]; in lib80211_ccmp_set_key()
362 data->rx_pn[1] = seq[4]; in lib80211_ccmp_set_key()
363 data->rx_pn[2] = seq[3]; in lib80211_ccmp_set_key()
364 data->rx_pn[3] = seq[2]; in lib80211_ccmp_set_key()
365 data->rx_pn[4] = seq[1]; in lib80211_ccmp_set_key()
366 data->rx_pn[5] = seq[0]; in lib80211_ccmp_set_key()
379 static int lib80211_ccmp_get_key(void *key, int len, u8 * seq, void *priv) in lib80211_ccmp_get_key() argument
390 if (seq) { in lib80211_ccmp_get_key()
[all …]
/net/batman-adv/
Dbat_v.c134 struct seq_file *seq) in batadv_v_orig_print_neigh() argument
144 seq_printf(seq, " %pM (%9u.%1u)", in batadv_v_orig_print_neigh()
159 batadv_v_hardif_neigh_print(struct seq_file *seq, in batadv_v_hardif_neigh_print() argument
169 seq_printf(seq, "%pM %4i.%03is (%9u.%1u) [%10s]\n", in batadv_v_hardif_neigh_print()
180 struct seq_file *seq) in batadv_v_neigh_print() argument
182 struct net_device *net_dev = (struct net_device *)seq->private; in batadv_v_neigh_print()
187 seq_puts(seq, in batadv_v_neigh_print()
197 batadv_v_hardif_neigh_print(seq, hardif_neigh); in batadv_v_neigh_print()
204 seq_puts(seq, "No batman nodes in range ...\n"); in batadv_v_neigh_print()
218 batadv_v_neigh_dump_neigh(struct sk_buff *msg, u32 portid, u32 seq, in batadv_v_neigh_dump_neigh() argument
[all …]

12345678910>>...12