Home
last modified time | relevance | path

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

12345678910

/net/xfrm/
Dxfrm_replay.c26 u32 seq, seq_hi, bottom; in xfrm_replay_seqhi() local
32 seq = ntohl(net_seq); in xfrm_replay_seqhi()
34 bottom = replay_esn->seq - replay_esn->replay_window + 1; in xfrm_replay_seqhi()
36 if (likely(replay_esn->seq >= replay_esn->replay_window - 1)) { in xfrm_replay_seqhi()
38 if (unlikely(seq < bottom)) in xfrm_replay_seqhi()
42 if (unlikely(seq >= bottom)) in xfrm_replay_seqhi()
65 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
101 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in xfrm_replay_overflow()
120 u32 seq = ntohl(net_seq); in xfrm_replay_check() local
125 if (unlikely(seq == 0)) in xfrm_replay_check()
[all …]
/net/ipv4/
Dproc.c52 static int sockstat_seq_show(struct seq_file *seq, void *v) in sockstat_seq_show() argument
54 struct net *net = seq->private; in sockstat_seq_show()
63 socket_seq_show(seq); in sockstat_seq_show()
64 seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %ld\n", in sockstat_seq_show()
68 seq_printf(seq, "UDP: inuse %d mem %ld\n", in sockstat_seq_show()
71 seq_printf(seq, "UDPLITE: inuse %d\n", in sockstat_seq_show()
73 seq_printf(seq, "RAW: inuse %d\n", in sockstat_seq_show()
76 seq_printf(seq, "FRAG: inuse %u memory %u\n", !!frag_mem, frag_mem); in sockstat_seq_show()
293 static void icmpmsg_put_line(struct seq_file *seq, unsigned long *vals, in icmpmsg_put_line() argument
299 seq_printf(seq, "\nIcmpMsg:"); in icmpmsg_put_line()
[all …]
/net/sctp/
Dproc.c74 static int sctp_snmp_seq_show(struct seq_file *seq, void *v) in sctp_snmp_seq_show() argument
76 struct net *net = seq->private; in sctp_snmp_seq_show()
80 seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name, in sctp_snmp_seq_show()
121 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument
149 seq_printf(seq, "*"); in sctp_seq_dump_local_addrs()
151 af->seq_dump_addr(seq, addr); in sctp_seq_dump_local_addrs()
157 static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_association *assoc) in sctp_seq_dump_remote_addrs() argument
173 seq_printf(seq, "*"); in sctp_seq_dump_remote_addrs()
175 af->seq_dump_addr(seq, addr); in sctp_seq_dump_remote_addrs()
180 static void *sctp_eps_seq_start(struct seq_file *seq, loff_t *pos) in sctp_eps_seq_start() argument
[all …]
/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]", atomic_read(&dev->refcnt)); in atm_dev_info()
[all …]
/net/8021q/
Dvlanproc.c39 static int vlan_seq_show(struct seq_file *seq, void *v);
40 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos);
41 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos);
42 static void vlan_seq_stop(struct seq_file *seq, void *);
43 static int vlandev_seq_show(struct seq_file *seq, void *v);
202 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos) in vlan_seq_start() argument
206 struct net *net = seq_file_net(seq); in vlan_seq_start()
224 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos) in vlan_seq_next() argument
227 struct net *net = seq_file_net(seq); in vlan_seq_next()
245 static void vlan_seq_stop(struct seq_file *seq, void *v) in vlan_seq_stop() argument
[all …]
/net/ipx/
Dipx_proc.c17 static void *ipx_seq_interface_start(struct seq_file *seq, loff_t *pos) in ipx_seq_interface_start() argument
23 static void *ipx_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos) in ipx_seq_interface_next() argument
28 static void ipx_seq_interface_stop(struct seq_file *seq, void *v) in ipx_seq_interface_stop() argument
33 static int ipx_seq_interface_show(struct seq_file *seq, void *v) in ipx_seq_interface_show() argument
38 seq_puts(seq, "Network Node_Address Primary Device " in ipx_seq_interface_show()
41 seq_puts(seq, " refcnt"); in ipx_seq_interface_show()
43 seq_puts(seq, "\n"); in ipx_seq_interface_show()
48 seq_printf(seq, "%08lX ", (unsigned long int)ntohl(i->if_netnum)); in ipx_seq_interface_show()
49 seq_printf(seq, "%02X%02X%02X%02X%02X%02X ", in ipx_seq_interface_show()
52 seq_printf(seq, "%-9s", i == ipx_primary_net ? "Yes" : "No"); in ipx_seq_interface_show()
[all …]
/net/tipc/
Dname_table.c183 static void nameseq_delete_empty(struct name_seq *seq) in nameseq_delete_empty() argument
185 if (!seq->first_free && list_empty(&seq->subscriptions)) { in nameseq_delete_empty()
186 hlist_del_init(&seq->ns_list); in nameseq_delete_empty()
187 kfree(seq->sseqs); in nameseq_delete_empty()
188 kfree(seq); in nameseq_delete_empty()
484 struct name_seq *seq = nametbl_find_seq(type); in tipc_nametbl_insert_publ() local
493 if (!seq) in tipc_nametbl_insert_publ()
494 seq = tipc_nameseq_create(type, &table.types[hash(type)]); in tipc_nametbl_insert_publ()
495 if (!seq) in tipc_nametbl_insert_publ()
498 return tipc_nameseq_insert_publ(seq, type, lower, upper, in tipc_nametbl_insert_publ()
[all …]
/net/core/
Dnet-procfs.c15 static inline struct net_device *dev_from_same_bucket(struct seq_file *seq, loff_t *pos) in dev_from_same_bucket() argument
17 struct net *net = seq_file_net(seq); in dev_from_same_bucket()
31 static inline struct net_device *dev_from_bucket(struct seq_file *seq, loff_t *pos) in dev_from_bucket() argument
37 dev = dev_from_same_bucket(seq, pos); in dev_from_bucket()
52 static void *dev_seq_start(struct seq_file *seq, loff_t *pos) in dev_seq_start() argument
62 return dev_from_bucket(seq, pos); in dev_seq_start()
65 static void *dev_seq_next(struct seq_file *seq, void *v, loff_t *pos) in dev_seq_next() argument
68 return dev_from_bucket(seq, pos); in dev_seq_next()
71 static void dev_seq_stop(struct seq_file *seq, void *v) in dev_seq_stop() argument
77 static void dev_seq_printf_stats(struct seq_file *seq, struct net_device *dev) in dev_seq_printf_stats() argument
[all …]
Dsecure_seq.c26 static u32 seq_scale(u32 seq) in seq_scale() argument
38 return seq + (ktime_get_real_ns() >> 6); in seq_scale()
127 u64 seq; in secure_dccp_sequence_number() local
137 seq = hash[0] | (((u64)hash[1]) << 32); in secure_dccp_sequence_number()
138 seq += ktime_get_real_ns(); in secure_dccp_sequence_number()
139 seq &= (1ull << 48) - 1; in secure_dccp_sequence_number()
141 return seq; in secure_dccp_sequence_number()
151 u64 seq; in secure_dccpv6_sequence_number() local
165 seq = hash[0] | (((u64)hash[1]) << 32); in secure_dccpv6_sequence_number()
166 seq += ktime_get_real_ns(); in secure_dccpv6_sequence_number()
[all …]
/net/netfilter/
Dnf_conntrack_seqadj.c22 this_way = &seqadj->seq[dir]; in nf_ct_seqadj_init()
30 __be32 seq, s32 off) in nf_ct_seqadj_set() argument
47 this_way = &seqadj->seq[dir]; in nf_ct_seqadj_set()
49 before(this_way->correction_pos, ntohl(seq))) { in nf_ct_seqadj_set()
50 this_way->correction_pos = ntohl(seq); in nf_ct_seqadj_set()
69 nf_ct_seqadj_set(ct, ctinfo, th->seq, off); in nf_ct_tcp_seqadj_set()
78 struct nf_ct_seqadj *seq) in nf_ct_sack_block_adjust() argument
85 if (after(ntohl(sack->start_seq) - seq->offset_before, in nf_ct_sack_block_adjust()
86 seq->correction_pos)) in nf_ct_sack_block_adjust()
88 seq->offset_after); in nf_ct_sack_block_adjust()
[all …]
Dnf_conntrack_standalone.c54 static struct hlist_nulls_node *ct_get_first(struct seq_file *seq) in ct_get_first() argument
56 struct net *net = seq_file_net(seq); in ct_get_first()
57 struct ct_iter_state *st = seq->private; in ct_get_first()
70 static struct hlist_nulls_node *ct_get_next(struct seq_file *seq, in ct_get_next() argument
73 struct net *net = seq_file_net(seq); in ct_get_next()
74 struct ct_iter_state *st = seq->private; in ct_get_next()
89 static struct hlist_nulls_node *ct_get_idx(struct seq_file *seq, loff_t pos) in ct_get_idx() argument
91 struct hlist_nulls_node *head = ct_get_first(seq); in ct_get_idx()
94 while (pos && (head = ct_get_next(seq, head))) in ct_get_idx()
99 static void *ct_seq_start(struct seq_file *seq, loff_t *pos) in ct_seq_start() argument
[all …]
/net/ipv4/netfilter/
Dnf_conntrack_l3proto_ipv4_compat.c32 static struct hlist_nulls_node *ct_get_first(struct seq_file *seq) in ct_get_first() argument
34 struct net *net = seq_file_net(seq); in ct_get_first()
35 struct ct_iter_state *st = seq->private; in ct_get_first()
49 static struct hlist_nulls_node *ct_get_next(struct seq_file *seq, in ct_get_next() argument
52 struct net *net = seq_file_net(seq); in ct_get_next()
53 struct ct_iter_state *st = seq->private; in ct_get_next()
67 static struct hlist_nulls_node *ct_get_idx(struct seq_file *seq, loff_t pos) in ct_get_idx() argument
69 struct hlist_nulls_node *head = ct_get_first(seq); in ct_get_idx()
72 while (pos && (head = ct_get_next(seq, head))) in ct_get_idx()
77 static void *ct_seq_start(struct seq_file *seq, loff_t *pos) in ct_seq_start() argument
[all …]
/net/sunrpc/
Dstats.c34 static int rpc_proc_show(struct seq_file *seq, void *v) { in rpc_proc_show() argument
35 const struct rpc_stat *statp = seq->private; in rpc_proc_show()
39 seq_printf(seq, in rpc_proc_show()
45 seq_printf(seq, in rpc_proc_show()
55 seq_printf(seq, "proc%u %u", in rpc_proc_show()
58 seq_printf(seq, " %u", in rpc_proc_show()
60 seq_putc(seq, '\n'); in rpc_proc_show()
81 void svc_seq_show(struct seq_file *seq, const struct svc_stat *statp) { in svc_seq_show() argument
87 seq_printf(seq, in svc_seq_show()
93 seq_printf(seq, in svc_seq_show()
[all …]
/net/ipv6/
Dproc.c33 static int sockstat6_seq_show(struct seq_file *seq, void *v) in sockstat6_seq_show() argument
35 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 %u\n", !!frag_mem, frag_mem); in sockstat6_seq_show()
153 static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, atomic_long_t *smib) in snmp6_seq_show_icmpv6msg() argument
169 seq_printf(seq, "%-32s\t%lu\n", name, in snmp6_seq_show_icmpv6msg()
182 seq_printf(seq, "%-32s\t%lu\n", name, val); in snmp6_seq_show_icmpv6msg()
[all …]
/net/x25/
Dx25_proc.c30 static void *x25_seq_route_start(struct seq_file *seq, loff_t *pos) in x25_seq_route_start() argument
37 static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_route_next() argument
42 static void x25_seq_route_stop(struct seq_file *seq, void *v) in x25_seq_route_stop() argument
48 static int x25_seq_route_show(struct seq_file *seq, void *v) in x25_seq_route_show() argument
53 seq_puts(seq, "Address Digits Device\n"); in x25_seq_route_show()
58 seq_printf(seq, "%-15s %-6d %-5s\n", in x25_seq_route_show()
65 static void *x25_seq_socket_start(struct seq_file *seq, loff_t *pos) in x25_seq_socket_start() argument
72 static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_socket_next() argument
77 static void x25_seq_socket_stop(struct seq_file *seq, void *v) in x25_seq_socket_stop() argument
83 static int x25_seq_socket_show(struct seq_file *seq, void *v) in x25_seq_socket_show() argument
[all …]
/net/appletalk/
Datalk_proc.c30 static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos) in atalk_seq_interface_start() argument
39 static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_interface_next() argument
56 static void atalk_seq_interface_stop(struct seq_file *seq, void *v) in atalk_seq_interface_stop() argument
62 static int atalk_seq_interface_show(struct seq_file *seq, void *v) in atalk_seq_interface_show() argument
67 seq_puts(seq, "Interface Address Networks " in atalk_seq_interface_show()
73 seq_printf(seq, "%-16s %04X:%02X %04X-%04X %d\n", in atalk_seq_interface_show()
91 static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos) in atalk_seq_route_start() argument
100 static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_route_next() argument
117 static void atalk_seq_route_stop(struct seq_file *seq, void *v) in atalk_seq_route_stop() argument
123 static int atalk_seq_route_show(struct seq_file *seq, void *v) in atalk_seq_route_show() argument
[all …]
/net/irda/
Ddiscovery.c336 static void *discovery_seq_start(struct seq_file *seq, loff_t *pos) in discovery_seq_start() argument
342 static void *discovery_seq_next(struct seq_file *seq, void *v, loff_t *pos) in discovery_seq_next() argument
350 static void discovery_seq_stop(struct seq_file *seq, void *v) in discovery_seq_stop() argument
355 static int discovery_seq_show(struct seq_file *seq, void *v) in discovery_seq_show() argument
358 seq_puts(seq, "IrLMP: Discovery log:\n\n"); in discovery_seq_show()
362 seq_printf(seq, "nickname: %s, hint: 0x%02x%02x", in discovery_seq_show()
368 seq_puts(seq, "PnP Compatible "); in discovery_seq_show()
370 seq_puts(seq, "PDA/Palmtop "); in discovery_seq_show()
372 seq_puts(seq, "Computer "); in discovery_seq_show()
374 seq_puts(seq, "Printer "); in discovery_seq_show()
[all …]
Dirlap.c1101 static void *irlap_seq_start(struct seq_file *seq, loff_t *pos) in irlap_seq_start() argument
1103 struct irlap_iter_state *iter = seq->private; in irlap_seq_start()
1120 static void *irlap_seq_next(struct seq_file *seq, void *v, loff_t *pos) in irlap_seq_next() argument
1122 struct irlap_iter_state *iter = seq->private; in irlap_seq_next()
1129 static void irlap_seq_stop(struct seq_file *seq, void *v) in irlap_seq_stop() argument
1134 static int irlap_seq_show(struct seq_file *seq, void *v) in irlap_seq_show() argument
1136 const struct irlap_iter_state *iter = seq->private; in irlap_seq_show()
1141 seq_printf(seq, "irlap%d ", iter->id); in irlap_seq_show()
1142 seq_printf(seq, "state: %s\n", in irlap_seq_show()
1145 seq_printf(seq, " device name: %s, ", in irlap_seq_show()
[all …]
/net/mac80211/
Dkey.c325 size_t seq_len, const u8 *seq, in ieee80211_key_alloc() argument
357 if (seq) { in ieee80211_key_alloc()
360 get_unaligned_le32(&seq[2]); in ieee80211_key_alloc()
362 get_unaligned_le16(seq); in ieee80211_key_alloc()
370 if (seq) { in ieee80211_key_alloc()
374 seq[IEEE80211_CCMP_PN_LEN - j - 1]; in ieee80211_key_alloc()
390 if (seq) in ieee80211_key_alloc()
393 seq[IEEE80211_CMAC_PN_LEN - j - 1]; in ieee80211_key_alloc()
416 seq[len - j - 1]; in ieee80211_key_alloc()
766 struct ieee80211_key_seq *seq) in ieee80211_get_key_tx_seq() argument
[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.c295 __u32 seq = ntohl(th->seq); in vs_fix_seq() local
303 if(after(seq, vseq->init_seq)) { in vs_fix_seq()
304 th->seq = htonl(seq + vseq->delta); in vs_fix_seq()
308 th->seq = htonl(seq + vseq->previous_delta); in vs_fix_seq()
352 unsigned int flag, __u32 seq, int diff) in vs_seq_update() argument
356 if (!(cp->flags & flag) || after(seq, vseq->init_seq)) { in vs_seq_update()
359 vseq->init_seq = seq; in vs_seq_update()
371 __u32 seq; in app_tcp_pkt_out() local
381 seq = ntohl(th->seq); in app_tcp_pkt_out()
405 IP_VS_CONN_F_OUT_SEQ, seq, diff); in app_tcp_pkt_out()
[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
/net/rxrpc/
Dar-proc.c31 static void *rxrpc_call_seq_start(struct seq_file *seq, loff_t *_pos) in rxrpc_call_seq_start() argument
37 static void *rxrpc_call_seq_next(struct seq_file *seq, void *v, loff_t *pos) in rxrpc_call_seq_next() argument
42 static void rxrpc_call_seq_stop(struct seq_file *seq, void *v) in rxrpc_call_seq_stop() argument
47 static int rxrpc_call_seq_show(struct seq_file *seq, void *v) in rxrpc_call_seq_show() argument
54 seq_puts(seq, in rxrpc_call_seq_show()
72 seq_printf(seq, in rxrpc_call_seq_show()
112 static void *rxrpc_connection_seq_start(struct seq_file *seq, loff_t *_pos) in rxrpc_connection_seq_start() argument
118 static void *rxrpc_connection_seq_next(struct seq_file *seq, void *v, in rxrpc_connection_seq_next() argument
124 static void rxrpc_connection_seq_stop(struct seq_file *seq, void *v) in rxrpc_connection_seq_stop() argument
129 static int rxrpc_connection_seq_show(struct seq_file *seq, void *v) in rxrpc_connection_seq_show() argument
[all …]
Dar-input.c135 struct sk_buff *skb, u32 seq) in rxrpc_fast_process_data() argument
141 _enter("{%u,%u},,{%u}", call->rx_data_post, call->rx_first_oos, seq); in rxrpc_fast_process_data()
155 if (seq < call->rx_data_post) { in rxrpc_fast_process_data()
156 _debug("dup #%u [-%u]", seq, call->rx_data_post); in rxrpc_fast_process_data()
163 ackbit = seq - (call->rx_data_eaten + 1); in rxrpc_fast_process_data()
167 seq, call->rx_data_eaten, call->rx_data_post); in rxrpc_fast_process_data()
172 if (seq >= call->ackr_win_top) { in rxrpc_fast_process_data()
173 _debug("exceed #%u [%u]", seq, call->ackr_win_top); in rxrpc_fast_process_data()
179 if (seq == call->rx_data_expect) { in rxrpc_fast_process_data()
182 } else if (seq > call->rx_data_expect) { in rxrpc_fast_process_data()
[all …]
/net/phonet/
Dsocket.c540 static struct sock *pn_sock_get_idx(struct seq_file *seq, loff_t pos) in pn_sock_get_idx() argument
542 struct net *net = seq_file_net(seq); in pn_sock_get_idx()
560 static struct sock *pn_sock_get_next(struct seq_file *seq, struct sock *sk) in pn_sock_get_next() argument
562 struct net *net = seq_file_net(seq); in pn_sock_get_next()
571 static void *pn_sock_seq_start(struct seq_file *seq, loff_t *pos) in pn_sock_seq_start() argument
575 return *pos ? pn_sock_get_idx(seq, *pos - 1) : SEQ_START_TOKEN; in pn_sock_seq_start()
578 static void *pn_sock_seq_next(struct seq_file *seq, void *v, loff_t *pos) in pn_sock_seq_next() argument
583 sk = pn_sock_get_idx(seq, 0); in pn_sock_seq_next()
585 sk = pn_sock_get_next(seq, v); in pn_sock_seq_next()
590 static void pn_sock_seq_stop(struct seq_file *seq, void *v) in pn_sock_seq_stop() argument
[all …]

12345678910