Home
last modified time | relevance | path

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

1234567

/net/ipv4/
Dproc.c51 static int sockstat_seq_show(struct seq_file *seq, void *v) in sockstat_seq_show() argument
53 struct net *net = seq->private; in sockstat_seq_show()
61 socket_seq_show(seq); in sockstat_seq_show()
62 seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %d\n", in sockstat_seq_show()
66 seq_printf(seq, "UDP: inuse %d mem %d\n", in sockstat_seq_show()
69 seq_printf(seq, "UDPLITE: inuse %d\n", in sockstat_seq_show()
71 seq_printf(seq, "RAW: inuse %d\n", in sockstat_seq_show()
73 seq_printf(seq, "FRAG: inuse %d memory %d\n", in sockstat_seq_show()
249 static void icmpmsg_put_line(struct seq_file *seq, unsigned long *vals, in icmpmsg_put_line() argument
255 seq_printf(seq, "\nIcmpMsg:"); in icmpmsg_put_line()
[all …]
/net/atm/
Dproc.c42 static void add_stats(struct seq_file *seq, const char *aal, in add_stats() argument
45 seq_printf(seq, "%s ( %d %d %d %d %d )", aal, in add_stats()
51 static void atm_dev_info(struct seq_file *seq, const struct atm_dev *dev) in atm_dev_info() argument
55 seq_printf(seq, "%3d %-8s", dev->number, dev->type); in atm_dev_info()
57 seq_printf(seq, "%02x", dev->esi[i]); in atm_dev_info()
58 seq_puts(seq, " "); in atm_dev_info()
59 add_stats(seq, "0", &dev->stats.aal0); in atm_dev_info()
60 seq_puts(seq, " "); in atm_dev_info()
61 add_stats(seq, "5", &dev->stats.aal5); in atm_dev_info()
62 seq_printf(seq, "\t[%d]", atomic_read(&dev->refcnt)); in atm_dev_info()
[all …]
/net/8021q/
Dvlanproc.c37 static int vlan_seq_show(struct seq_file *seq, void *v);
38 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos);
39 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos);
40 static void vlan_seq_stop(struct seq_file *seq, void *);
41 static int vlandev_seq_show(struct seq_file *seq, void *v);
203 static void *vlan_seq_start(struct seq_file *seq, loff_t *pos) in vlan_seq_start() argument
207 struct net *net = seq_file_net(seq); in vlan_seq_start()
226 static void *vlan_seq_next(struct seq_file *seq, void *v, loff_t *pos) in vlan_seq_next() argument
229 struct net *net = seq_file_net(seq); in vlan_seq_next()
247 static void vlan_seq_stop(struct seq_file *seq, void *v) in vlan_seq_stop() argument
[all …]
/net/sctp/
Dproc.c80 static int sctp_snmp_seq_show(struct seq_file *seq, void *v) in sctp_snmp_seq_show() argument
85 seq_printf(seq, "%-32s\t%ld\n", sctp_snmp_list[i].name, in sctp_snmp_seq_show()
125 static void sctp_seq_dump_local_addrs(struct seq_file *seq, struct sctp_ep_common *epb) in sctp_seq_dump_local_addrs() argument
143 seq_printf(seq, "*"); in sctp_seq_dump_local_addrs()
145 af->seq_dump_addr(seq, addr); in sctp_seq_dump_local_addrs()
150 static void sctp_seq_dump_remote_addrs(struct seq_file *seq, struct sctp_association *assoc) in sctp_seq_dump_remote_addrs() argument
162 seq_printf(seq, "*"); in sctp_seq_dump_remote_addrs()
164 af->seq_dump_addr(seq, addr); in sctp_seq_dump_remote_addrs()
168 static void * sctp_eps_seq_start(struct seq_file *seq, loff_t *pos) in sctp_eps_seq_start() argument
177 seq_printf(seq, " ENDPT SOCK STY SST HBKT LPORT UID INODE LADDRS\n"); in sctp_eps_seq_start()
[all …]
Dcommand.c46 int sctp_init_cmd_seq(sctp_cmd_seq_t *seq) in sctp_init_cmd_seq() argument
48 memset(seq, 0, sizeof(sctp_cmd_seq_t)); in sctp_init_cmd_seq()
55 void sctp_add_cmd_sf(sctp_cmd_seq_t *seq, sctp_verb_t verb, sctp_arg_t obj) in sctp_add_cmd_sf() argument
57 BUG_ON(seq->next_free_slot >= SCTP_MAX_NUM_COMMANDS); in sctp_add_cmd_sf()
59 seq->cmds[seq->next_free_slot].verb = verb; in sctp_add_cmd_sf()
60 seq->cmds[seq->next_free_slot++].obj = obj; in sctp_add_cmd_sf()
66 sctp_cmd_t *sctp_next_cmd(sctp_cmd_seq_t *seq) in sctp_next_cmd() argument
70 if (seq->next_cmd < seq->next_free_slot) in sctp_next_cmd()
71 retval = &seq->cmds[seq->next_cmd++]; in sctp_next_cmd()
/net/tipc/
Dname_table.c574 struct name_seq *seq = nametbl_find_seq(type); in tipc_nametbl_insert_publ() local
576 dbg("tipc_nametbl_insert_publ: {%u,%u,%u} found %p\n", type, lower, upper, seq); in tipc_nametbl_insert_publ()
584 if (!seq) { in tipc_nametbl_insert_publ()
585 seq = tipc_nameseq_create(type, &table.types[hash(type)]); in tipc_nametbl_insert_publ()
586 dbg("tipc_nametbl_insert_publ: created %p\n", seq); in tipc_nametbl_insert_publ()
588 if (!seq) in tipc_nametbl_insert_publ()
591 return tipc_nameseq_insert_publ(seq, type, lower, upper, in tipc_nametbl_insert_publ()
599 struct name_seq *seq = nametbl_find_seq(type); in tipc_nametbl_remove_publ() local
601 if (!seq) in tipc_nametbl_remove_publ()
605 publ = tipc_nameseq_remove_publ(seq, lower, node, ref, key); in tipc_nametbl_remove_publ()
[all …]
Dsubscr.c129 if (found_lower < sub->seq.lower) in tipc_subscr_overlap()
130 found_lower = sub->seq.lower; in tipc_subscr_overlap()
131 if (found_upper > sub->seq.upper) in tipc_subscr_overlap()
132 found_upper = sub->seq.upper; in tipc_subscr_overlap()
195 subscr_send_event(sub, sub->evt.s.seq.lower, sub->evt.s.seq.upper, in subscr_timeout()
256 sub->seq.type, sub->seq.lower, sub->seq.upper, subscriber); in subscr_terminate()
314 sub->seq.type, sub->seq.lower, sub->seq.upper, subscriber); in subscr_cancel()
362 sub->seq.type = htohl(s->seq.type, swap); in subscr_subscribe()
363 sub->seq.lower = htohl(s->seq.lower, swap); in subscr_subscribe()
364 sub->seq.upper = htohl(s->seq.upper, swap); in subscr_subscribe()
[all …]
/net/ipx/
Dipx_proc.c37 static void *ipx_seq_interface_start(struct seq_file *seq, loff_t *pos) in ipx_seq_interface_start() argument
45 static void *ipx_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos) in ipx_seq_interface_next() argument
57 static void ipx_seq_interface_stop(struct seq_file *seq, void *v) in ipx_seq_interface_stop() argument
62 static int ipx_seq_interface_show(struct seq_file *seq, void *v) in ipx_seq_interface_show() argument
67 seq_puts(seq, "Network Node_Address Primary Device " in ipx_seq_interface_show()
70 seq_puts(seq, " refcnt"); in ipx_seq_interface_show()
72 seq_puts(seq, "\n"); in ipx_seq_interface_show()
77 seq_printf(seq, "%08lX ", (unsigned long int)ntohl(i->if_netnum)); in ipx_seq_interface_show()
78 seq_printf(seq, "%02X%02X%02X%02X%02X%02X ", in ipx_seq_interface_show()
81 seq_printf(seq, "%-9s", i == ipx_primary_net ? "Yes" : "No"); in ipx_seq_interface_show()
[all …]
/net/ipv4/netfilter/
Dnf_conntrack_l3proto_ipv4_compat.c28 static struct hlist_node *ct_get_first(struct seq_file *seq) in ct_get_first() argument
30 struct net *net = seq_file_net(seq); in ct_get_first()
31 struct ct_iter_state *st = seq->private; in ct_get_first()
44 static struct hlist_node *ct_get_next(struct seq_file *seq, in ct_get_next() argument
47 struct net *net = seq_file_net(seq); in ct_get_next()
48 struct ct_iter_state *st = seq->private; in ct_get_next()
59 static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos) in ct_get_idx() argument
61 struct hlist_node *head = ct_get_first(seq); in ct_get_idx()
64 while (pos && (head = ct_get_next(seq, head))) in ct_get_idx()
69 static void *ct_seq_start(struct seq_file *seq, loff_t *pos) in ct_seq_start() argument
[all …]
Dnf_nat_helper.c39 adjust_tcp_sequence(u32 seq, in adjust_tcp_sequence() argument
48 pr_debug("adjust_tcp_sequence: seq = %u, sizediff = %d\n", seq, seq); in adjust_tcp_sequence()
52 this_way = &nat->seq[dir]; in adjust_tcp_sequence()
53 other_way = &nat->seq[!dir]; in adjust_tcp_sequence()
65 before(this_way->correction_pos, seq)) { in adjust_tcp_sequence()
66 this_way->correction_pos = seq; in adjust_tcp_sequence()
189 adjust_tcp_sequence(ntohl(tcph->seq), in nf_nat_mangle_tcp_packet()
364 optoff+op[1], &nat->seq[!dir]); in nf_nat_sack_adjust()
385 this_way = &nat->seq[dir]; in nf_nat_seq_adjust()
386 other_way = &nat->seq[!dir]; in nf_nat_seq_adjust()
[all …]
/net/sunrpc/
Dstats.c33 static int rpc_proc_show(struct seq_file *seq, void *v) { in rpc_proc_show() argument
34 const struct rpc_stat *statp = seq->private; in rpc_proc_show()
38 seq_printf(seq, in rpc_proc_show()
44 seq_printf(seq, in rpc_proc_show()
54 seq_printf(seq, "proc%u %u", in rpc_proc_show()
57 seq_printf(seq, " %u", in rpc_proc_show()
59 seq_putc(seq, '\n'); in rpc_proc_show()
80 void svc_seq_show(struct seq_file *seq, const struct svc_stat *statp) { in svc_seq_show() argument
86 seq_printf(seq, in svc_seq_show()
92 seq_printf(seq, in svc_seq_show()
[all …]
/net/ipv6/
Dproc.c32 static int sockstat6_seq_show(struct seq_file *seq, void *v) in sockstat6_seq_show() argument
34 struct net *net = seq->private; in sockstat6_seq_show()
36 seq_printf(seq, "TCP6: inuse %d\n", in sockstat6_seq_show()
38 seq_printf(seq, "UDP6: inuse %d\n", in sockstat6_seq_show()
40 seq_printf(seq, "UDPLITE6: inuse %d\n", in sockstat6_seq_show()
42 seq_printf(seq, "RAW6: inuse %d\n", in sockstat6_seq_show()
44 seq_printf(seq, "FRAG6: inuse %d memory %d\n", in sockstat6_seq_show()
133 static void snmp6_seq_show_icmpv6msg(struct seq_file *seq, void **mib) in snmp6_seq_show_icmpv6msg() argument
149 seq_printf(seq, "%-32s\t%lu\n", name, in snmp6_seq_show_icmpv6msg()
162 seq_printf(seq, "%-32s\t%lu\n", name, val); in snmp6_seq_show_icmpv6msg()
[all …]
Danycast.c425 #define ac6_seq_private(seq) ((struct ac6_iter_state *)(seq)->private) argument
427 static inline struct ifacaddr6 *ac6_get_first(struct seq_file *seq) in ac6_get_first() argument
430 struct ac6_iter_state *state = ac6_seq_private(seq); in ac6_get_first()
431 struct net *net = seq_file_net(seq); in ac6_get_first()
451 static struct ifacaddr6 *ac6_get_next(struct seq_file *seq, struct ifacaddr6 *im) in ac6_get_next() argument
453 struct ac6_iter_state *state = ac6_seq_private(seq); in ac6_get_next()
475 static struct ifacaddr6 *ac6_get_idx(struct seq_file *seq, loff_t pos) in ac6_get_idx() argument
477 struct ifacaddr6 *im = ac6_get_first(seq); in ac6_get_idx()
479 while (pos && (im = ac6_get_next(seq, im)) != NULL) in ac6_get_idx()
484 static void *ac6_seq_start(struct seq_file *seq, loff_t *pos) in ac6_seq_start() argument
[all …]
/net/appletalk/
Datalk_proc.c29 static void *atalk_seq_interface_start(struct seq_file *seq, loff_t *pos) in atalk_seq_interface_start() argument
38 static void *atalk_seq_interface_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_interface_next() argument
55 static void atalk_seq_interface_stop(struct seq_file *seq, void *v) in atalk_seq_interface_stop() argument
61 static int atalk_seq_interface_show(struct seq_file *seq, void *v) in atalk_seq_interface_show() argument
66 seq_puts(seq, "Interface Address Networks " in atalk_seq_interface_show()
72 seq_printf(seq, "%-16s %04X:%02X %04X-%04X %d\n", in atalk_seq_interface_show()
90 static void *atalk_seq_route_start(struct seq_file *seq, loff_t *pos) in atalk_seq_route_start() argument
99 static void *atalk_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in atalk_seq_route_next() argument
116 static void atalk_seq_route_stop(struct seq_file *seq, void *v) in atalk_seq_route_stop() argument
122 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.c1103 static void *irlap_seq_start(struct seq_file *seq, loff_t *pos) in irlap_seq_start() argument
1105 struct irlap_iter_state *iter = seq->private; in irlap_seq_start()
1122 static void *irlap_seq_next(struct seq_file *seq, void *v, loff_t *pos) in irlap_seq_next() argument
1124 struct irlap_iter_state *iter = seq->private; in irlap_seq_next()
1131 static void irlap_seq_stop(struct seq_file *seq, void *v) in irlap_seq_stop() argument
1136 static int irlap_seq_show(struct seq_file *seq, void *v) in irlap_seq_show() argument
1138 const struct irlap_iter_state *iter = seq->private; in irlap_seq_show()
1143 seq_printf(seq, "irlap%d ", iter->id); in irlap_seq_show()
1144 seq_printf(seq, "state: %s\n", in irlap_seq_show()
1147 seq_printf(seq, " device name: %s, ", in irlap_seq_show()
[all …]
/net/netfilter/ipvs/
Dip_vs_app.c255 __u32 seq = ntohl(th->seq); in vs_fix_seq() local
263 if(after(seq, vseq->init_seq)) { in vs_fix_seq()
264 th->seq = htonl(seq + vseq->delta); in vs_fix_seq()
268 th->seq = htonl(seq + vseq->previous_delta); in vs_fix_seq()
312 unsigned flag, __u32 seq, int diff) in vs_seq_update() argument
316 if (!(cp->flags & flag) || after(seq, vseq->init_seq)) { in vs_seq_update()
319 vseq->init_seq = seq; in vs_seq_update()
331 __u32 seq; in app_tcp_pkt_out() local
341 seq = ntohl(th->seq); in app_tcp_pkt_out()
365 IP_VS_CONN_F_OUT_SEQ, seq, diff); in app_tcp_pkt_out()
[all …]
/net/llc/
Dllc_proc.c28 static void llc_ui_format_mac(struct seq_file *seq, u8 *addr) in llc_ui_format_mac() argument
30 seq_printf(seq, "%pM", addr); in llc_ui_format_mac()
56 static void *llc_seq_start(struct seq_file *seq, loff_t *pos) in llc_seq_start() argument
64 static void *llc_seq_next(struct seq_file *seq, void *v, loff_t *pos) in llc_seq_next() argument
100 static void llc_seq_stop(struct seq_file *seq, void *v) in llc_seq_stop() argument
112 static int llc_seq_socket_show(struct seq_file *seq, void *v) in llc_seq_socket_show() argument
118 seq_puts(seq, "SKt Mc local_mac_sap remote_mac_sap " in llc_seq_socket_show()
126 seq_printf(seq, "%2X %2X ", sk->sk_type, 0); in llc_seq_socket_show()
129 llc_ui_format_mac(seq, llc->dev->dev_addr); in llc_seq_socket_show()
132 llc_ui_format_mac(seq, addr); in llc_seq_socket_show()
[all …]
/net/x25/
Dx25_proc.c43 static void *x25_seq_route_start(struct seq_file *seq, loff_t *pos) in x25_seq_route_start() argument
52 static void *x25_seq_route_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_route_next() argument
73 static void x25_seq_route_stop(struct seq_file *seq, void *v) in x25_seq_route_stop() argument
79 static int x25_seq_route_show(struct seq_file *seq, void *v) in x25_seq_route_show() argument
84 seq_puts(seq, "Address Digits Device\n"); in x25_seq_route_show()
89 seq_printf(seq, "%-15s %-6d %-5s\n", in x25_seq_route_show()
109 static void *x25_seq_socket_start(struct seq_file *seq, loff_t *pos) in x25_seq_socket_start() argument
118 static void *x25_seq_socket_next(struct seq_file *seq, void *v, loff_t *pos) in x25_seq_socket_next() argument
132 static void x25_seq_socket_stop(struct seq_file *seq, void *v) in x25_seq_socket_stop() argument
138 static int x25_seq_socket_show(struct seq_file *seq, void *v) in x25_seq_socket_show() argument
[all …]
/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.c143 struct sk_buff *skb, u32 seq) in rxrpc_fast_process_data() argument
149 _enter("{%u,%u},,{%u}", call->rx_data_post, call->rx_first_oos, seq); in rxrpc_fast_process_data()
163 if (seq < call->rx_data_post) { in rxrpc_fast_process_data()
164 _debug("dup #%u [-%u]", seq, call->rx_data_post); in rxrpc_fast_process_data()
171 ackbit = seq - (call->rx_data_eaten + 1); in rxrpc_fast_process_data()
175 seq, call->rx_data_eaten, call->rx_data_post); in rxrpc_fast_process_data()
180 if (seq >= call->ackr_win_top) { in rxrpc_fast_process_data()
181 _debug("exceed #%u [%u]", seq, call->ackr_win_top); in rxrpc_fast_process_data()
187 if (seq == call->rx_data_expect) { in rxrpc_fast_process_data()
190 } else if (seq > call->rx_data_expect) { in rxrpc_fast_process_data()
[all …]
/net/netfilter/
Dnf_conntrack_standalone.c47 static struct hlist_node *ct_get_first(struct seq_file *seq) in ct_get_first() argument
49 struct net *net = seq_file_net(seq); in ct_get_first()
50 struct ct_iter_state *st = seq->private; in ct_get_first()
63 static struct hlist_node *ct_get_next(struct seq_file *seq, in ct_get_next() argument
66 struct net *net = seq_file_net(seq); in ct_get_next()
67 struct ct_iter_state *st = seq->private; in ct_get_next()
78 static struct hlist_node *ct_get_idx(struct seq_file *seq, loff_t pos) in ct_get_idx() argument
80 struct hlist_node *head = ct_get_first(seq); in ct_get_idx()
83 while (pos && (head = ct_get_next(seq, head))) in ct_get_idx()
88 static void *ct_seq_start(struct seq_file *seq, loff_t *pos) in ct_seq_start() argument
[all …]
Dx_tables.c764 static void *xt_table_seq_start(struct seq_file *seq, loff_t *pos) in xt_table_seq_start() argument
766 struct xt_names_priv *priv = seq->private; in xt_table_seq_start()
767 struct net *net = seq_file_net(seq); in xt_table_seq_start()
774 static void *xt_table_seq_next(struct seq_file *seq, void *v, loff_t *pos) in xt_table_seq_next() argument
776 struct xt_names_priv *priv = seq->private; in xt_table_seq_next()
777 struct net *net = seq_file_net(seq); in xt_table_seq_next()
783 static void xt_table_seq_stop(struct seq_file *seq, void *v) in xt_table_seq_stop() argument
785 struct xt_names_priv *priv = seq->private; in xt_table_seq_stop()
791 static int xt_table_seq_show(struct seq_file *seq, void *v) in xt_table_seq_show() argument
796 return seq_printf(seq, "%s\n", table->name); in xt_table_seq_show()
[all …]
/net/xfrm/
Dxfrm_input.c51 int xfrm_parse_spi(struct sk_buff *skb, u8 nexthdr, __be32 *spi, __be32 *seq) in xfrm_parse_spi() argument
71 *seq = 0; in xfrm_parse_spi()
81 *seq = *(__be32*)(skb_transport_header(skb) + offset_seq); in xfrm_parse_spi()
109 __be32 seq; in xfrm_input() local
121 seq = XFRM_SKB_CB(skb)->seq.input; in xfrm_input()
143 seq = 0; in xfrm_input()
144 if (!spi && (err = xfrm_parse_spi(skb, nexthdr, &spi, &seq)) != 0) { in xfrm_input()
158 xfrm_audit_state_notfound(skb, family, spi, seq); in xfrm_input()
175 if (x->props.replay_window && xfrm_replay_check(x, skb, seq)) { in xfrm_input()
187 XFRM_SKB_CB(skb)->seq.input = seq; in xfrm_input()
[all …]
/net/dcb/
Ddcbnl.c163 u32 seq, u16 flags) in dcbnl_reply() argument
174 nlh = NLMSG_NEW(dcbnl_skb, pid, seq, event, sizeof(*dcb), flags); in dcbnl_reply()
199 u32 pid, u32 seq, u16 flags) in dcbnl_getstate() argument
208 DCB_CMD_GSTATE, DCB_ATTR_STATE, pid, seq, flags); in dcbnl_getstate()
214 u32 pid, u32 seq, u16 flags) in dcbnl_getpfccfg() argument
238 nlh = NLMSG_NEW(dcbnl_skb, pid, seq, RTM_GETDCB, sizeof(*dcb), flags); in dcbnl_getpfccfg()
281 u32 pid, u32 seq, u16 flags) in dcbnl_getperm_hwaddr() argument
296 nlh = NLMSG_NEW(dcbnl_skb, pid, seq, RTM_GETDCB, sizeof(*dcb), flags); in dcbnl_getperm_hwaddr()
323 u32 pid, u32 seq, u16 flags) in dcbnl_getcap() argument
346 nlh = NLMSG_NEW(dcbnl_skb, pid, seq, RTM_GETDCB, sizeof(*dcb), flags); in dcbnl_getcap()
[all …]

1234567