Home
last modified time | relevance | path

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

12345678910>>...62

/linux-6.1.9/drivers/net/bonding/
Dbond_procfs.c11 static void *bond_info_seq_start(struct seq_file *seq, loff_t *pos) in bond_info_seq_start() argument
14 struct bonding *bond = pde_data(file_inode(seq->file)); in bond_info_seq_start()
31 static void *bond_info_seq_next(struct seq_file *seq, void *v, loff_t *pos) in bond_info_seq_next() argument
33 struct bonding *bond = pde_data(file_inode(seq->file)); in bond_info_seq_next()
52 static void bond_info_seq_stop(struct seq_file *seq, void *v) in bond_info_seq_stop() argument
58 static void bond_info_show_master(struct seq_file *seq) in bond_info_show_master() argument
60 struct bonding *bond = pde_data(file_inode(seq->file)); in bond_info_show_master()
67 seq_printf(seq, "Bonding Mode: %s", in bond_info_show_master()
74 seq_printf(seq, " (fail_over_mac %s)", optval->string); in bond_info_show_master()
77 seq_printf(seq, "\n"); in bond_info_show_master()
[all …]
/linux-6.1.9/drivers/net/wireless/st/cw1200/
Ddebug.c69 static void cw1200_queue_status_show(struct seq_file *seq, in cw1200_queue_status_show() argument
73 seq_printf(seq, "Queue %d:\n", q->queue_id); in cw1200_queue_status_show()
74 seq_printf(seq, " capacity: %zu\n", q->capacity); in cw1200_queue_status_show()
75 seq_printf(seq, " queued: %zu\n", q->num_queued); in cw1200_queue_status_show()
76 seq_printf(seq, " pending: %zu\n", q->num_pending); in cw1200_queue_status_show()
77 seq_printf(seq, " sent: %zu\n", q->num_sent); in cw1200_queue_status_show()
78 seq_printf(seq, " locked: %s\n", q->tx_locked_cnt ? "yes" : "no"); in cw1200_queue_status_show()
79 seq_printf(seq, " overfull: %s\n", q->overfull ? "yes" : "no"); in cw1200_queue_status_show()
80 seq_puts(seq, " link map: 0-> "); in cw1200_queue_status_show()
82 seq_printf(seq, "%.2d ", q->link_map_cache[i]); in cw1200_queue_status_show()
[all …]
/linux-6.1.9/drivers/net/wireless/rsi/
Drsi_91x_debugfs.c27 static int rsi_sdio_stats_read(struct seq_file *seq, void *data) in rsi_sdio_stats_read() argument
29 struct rsi_common *common = seq->private; in rsi_sdio_stats_read()
34 seq_printf(seq, "total_sdio_interrupts: %d\n", in rsi_sdio_stats_read()
36 seq_printf(seq, "sdio_msdu_pending_intr_count: %d\n", in rsi_sdio_stats_read()
38 seq_printf(seq, "sdio_buff_full_count : %d\n", in rsi_sdio_stats_read()
40 seq_printf(seq, "sdio_buf_semi_full_count %d\n", in rsi_sdio_stats_read()
42 seq_printf(seq, "sdio_unknown_intr_count: %d\n", in rsi_sdio_stats_read()
45 seq_printf(seq, "BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
47 seq_printf(seq, "SEMI BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
49 seq_printf(seq, "MGMT BUFFER FULL STATUS : %d\n", in rsi_sdio_stats_read()
[all …]
/linux-6.1.9/drivers/usb/dwc2/
Ddebugfs.c126 static int state_show(struct seq_file *seq, void *v) in state_show() argument
128 struct dwc2_hsotg *hsotg = seq->private; in state_show()
131 seq_printf(seq, "DCFG=0x%08x, DCTL=0x%08x, DSTS=0x%08x\n", in state_show()
136 seq_printf(seq, "DIEPMSK=0x%08x, DOEPMASK=0x%08x\n", in state_show()
139 seq_printf(seq, "GINTMSK=0x%08x, GINTSTS=0x%08x\n", in state_show()
143 seq_printf(seq, "DAINTMSK=0x%08x, DAINT=0x%08x\n", in state_show()
147 seq_printf(seq, "GNPTXSTS=0x%08x, GRXSTSR=%08x\n", in state_show()
151 seq_puts(seq, "\nEndpoint status:\n"); in state_show()
159 seq_printf(seq, "ep%d: DIEPCTL=0x%08x, DOEPCTL=0x%08x", in state_show()
165 seq_printf(seq, ", DIEPTSIZ=0x%08x, DOEPTSIZ=0x%08x", in state_show()
[all …]
/linux-6.1.9/drivers/cpufreq/
Ds3c24xx-cpufreq-debugfs.c30 static void show_max(struct seq_file *seq, struct s3c_freq *f) in show_max() argument
32 seq_printf(seq, "MAX: F=%lu, H=%lu, P=%lu, A=%lu\n", in show_max()
36 static int board_show(struct seq_file *seq, void *p) in board_show() argument
43 seq_printf(seq, "no configuration registered\n"); in board_show()
49 seq_printf(seq, "no board definition set?\n"); in board_show()
53 seq_printf(seq, "SDRAM refresh %u ns\n", brd->refresh); in board_show()
54 seq_printf(seq, "auto_io=%u\n", brd->auto_io); in board_show()
55 seq_printf(seq, "need_io=%u\n", brd->need_io); in board_show()
57 show_max(seq, &brd->max); in board_show()
65 static int info_show(struct seq_file *seq, void *p) in info_show() argument
[all …]
/linux-6.1.9/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()
68 ((x->replay.seq - x->preplay.seq < x->replay_maxdiff) && in xfrm_replay_notify()
104 XFRM_SKB_CB(skb)->seq.output.low = ++x->replay.oseq; in __xfrm_replay_overflow()
105 XFRM_SKB_CB(skb)->seq.output.hi = 0; in __xfrm_replay_overflow()
125 u32 seq = ntohl(net_seq); in xfrm_replay_check_legacy() local
[all …]
/linux-6.1.9/kernel/bpf/
Dbpf_iter.c44 static void bpf_iter_inc_seq_num(struct seq_file *seq) in bpf_iter_inc_seq_num() argument
48 iter_priv = container_of(seq->private, struct bpf_iter_priv_data, in bpf_iter_inc_seq_num()
53 static void bpf_iter_dec_seq_num(struct seq_file *seq) in bpf_iter_dec_seq_num() argument
57 iter_priv = container_of(seq->private, struct bpf_iter_priv_data, in bpf_iter_dec_seq_num()
62 static void bpf_iter_done_stop(struct seq_file *seq) in bpf_iter_done_stop() argument
66 iter_priv = container_of(seq->private, struct bpf_iter_priv_data, in bpf_iter_done_stop()
76 static bool bpf_iter_support_resched(struct seq_file *seq) in bpf_iter_support_resched() argument
80 iter_priv = container_of(seq->private, struct bpf_iter_priv_data, in bpf_iter_support_resched()
97 struct seq_file *seq = file->private_data; in bpf_seq_read() local
103 mutex_lock(&seq->lock); in bpf_seq_read()
[all …]
/linux-6.1.9/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 …]
/linux-6.1.9/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 …]
/linux-6.1.9/drivers/block/drbd/
Ddrbd_proc.c26 static void seq_printf_with_thousands_grouping(struct seq_file *seq, long v) in seq_printf_with_thousands_grouping() argument
31 seq_printf(seq, "%ld,", v / 1000000); in seq_printf_with_thousands_grouping()
33 seq_printf(seq, "%03ld,%03ld", v/1000, v % 1000); in seq_printf_with_thousands_grouping()
35 seq_printf(seq, "%ld,%03ld", v/1000, v % 1000); in seq_printf_with_thousands_grouping()
37 seq_printf(seq, "%ld", v); in seq_printf_with_thousands_grouping()
90 static void drbd_syncer_progress(struct drbd_device *device, struct seq_file *seq, in drbd_syncer_progress() argument
102 seq_puts(seq, "\t["); in drbd_syncer_progress()
104 seq_putc(seq, '='); in drbd_syncer_progress()
105 seq_putc(seq, '>'); in drbd_syncer_progress()
107 seq_putc(seq, '.'); in drbd_syncer_progress()
[all …]
/linux-6.1.9/kernel/trace/
Dtrace_seq.c31 #define TRACE_SEQ_BUF_LEFT(s) seq_buf_buffer_left(&(s)->seq)
38 if (unlikely(!s->seq.size)) in __trace_seq_init()
57 ret = seq_buf_print_seq(m, &s->seq); in trace_print_seq()
83 unsigned int save_len = s->seq.len; in trace_seq_printf()
92 seq_buf_vprintf(&s->seq, fmt, ap); in trace_seq_printf()
96 if (unlikely(seq_buf_has_overflowed(&s->seq))) { in trace_seq_printf()
97 s->seq.len = save_len; in trace_seq_printf()
114 unsigned int save_len = s->seq.len; in trace_seq_bitmask()
121 seq_buf_printf(&s->seq, "%*pb", nmaskbits, maskp); in trace_seq_bitmask()
123 if (unlikely(seq_buf_has_overflowed(&s->seq))) { in trace_seq_bitmask()
[all …]
/linux-6.1.9/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 …]
/linux-6.1.9/drivers/net/ethernet/chelsio/cxgb4/
Dcxgb4_debugfs.c61 static void *seq_tab_start(struct seq_file *seq, loff_t *pos) in seq_tab_start() argument
63 struct seq_tab *tb = seq->private; in seq_tab_start()
71 static void *seq_tab_next(struct seq_file *seq, void *v, loff_t *pos) in seq_tab_next() argument
73 v = seq_tab_get_idx(seq->private, *pos + 1); in seq_tab_next()
78 static void seq_tab_stop(struct seq_file *seq, void *v) in seq_tab_stop() argument
82 static int seq_tab_show(struct seq_file *seq, void *v) in seq_tab_show() argument
84 const struct seq_tab *tb = seq->private; in seq_tab_show()
86 return tb->show(seq, v, ((char *)v - tb->data) / tb->width); in seq_tab_show()
98 int (*show)(struct seq_file *seq, void *v, int i)) in seq_open_tab() argument
123 static int cim_la_show(struct seq_file *seq, void *v, int idx) in cim_la_show() argument
[all …]
/linux-6.1.9/drivers/gpu/drm/nouveau/nvkm/falcon/
Dqmgr.c29 struct nvkm_falcon_qmgr_seq *seq; in nvkm_falcon_qmgr_seq_acquire() local
32 mutex_lock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
33 index = find_first_zero_bit(qmgr->seq.tbl, NVKM_FALCON_QMGR_SEQ_NUM); in nvkm_falcon_qmgr_seq_acquire()
36 mutex_unlock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
40 set_bit(index, qmgr->seq.tbl); in nvkm_falcon_qmgr_seq_acquire()
41 mutex_unlock(&qmgr->seq.mutex); in nvkm_falcon_qmgr_seq_acquire()
43 seq = &qmgr->seq.id[index]; in nvkm_falcon_qmgr_seq_acquire()
44 seq->state = SEQ_STATE_PENDING; in nvkm_falcon_qmgr_seq_acquire()
45 return seq; in nvkm_falcon_qmgr_seq_acquire()
50 struct nvkm_falcon_qmgr_seq *seq) in nvkm_falcon_qmgr_seq_release() argument
[all …]
/linux-6.1.9/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()
59 socket_seq_show(seq); in sockstat_seq_show()
60 seq_printf(seq, "TCP: inuse %d orphan %d tw %d alloc %d mem %ld\n", in sockstat_seq_show()
64 seq_printf(seq, "UDP: inuse %d mem %ld\n", in sockstat_seq_show()
67 seq_printf(seq, "UDPLITE: inuse %d\n", in sockstat_seq_show()
69 seq_printf(seq, "RAW: inuse %d\n", in sockstat_seq_show()
71 seq_printf(seq, "FRAG: inuse %u memory %lu\n", in sockstat_seq_show()
303 static void icmpmsg_put_line(struct seq_file *seq, unsigned long *vals, in icmpmsg_put_line() argument
309 seq_puts(seq, "\nIcmpMsg:"); in icmpmsg_put_line()
[all …]
/linux-6.1.9/include/vdso/
Dhelpers.h11 u32 seq; in vdso_read_begin() local
13 while (unlikely((seq = READ_ONCE(vd->seq)) & 1)) in vdso_read_begin()
17 return seq; in vdso_read_begin()
23 u32 seq; in vdso_read_retry() local
26 seq = READ_ONCE(vd->seq); in vdso_read_retry()
27 return seq != start; in vdso_read_retry()
37 WRITE_ONCE(vd[CS_HRES_COARSE].seq, vd[CS_HRES_COARSE].seq + 1); in vdso_write_begin()
38 WRITE_ONCE(vd[CS_RAW].seq, vd[CS_RAW].seq + 1); in vdso_write_begin()
50 WRITE_ONCE(vd[CS_HRES_COARSE].seq, vd[CS_HRES_COARSE].seq + 1); in vdso_write_end()
51 WRITE_ONCE(vd[CS_RAW].seq, vd[CS_RAW].seq + 1); in vdso_write_end()
/linux-6.1.9/kernel/cgroup/
Ddebug.c40 static int current_css_set_read(struct seq_file *seq, void *v) in current_css_set_read() argument
42 struct kernfs_open_file *of = seq->private; in current_css_set_read()
55 seq_printf(seq, "css_set %pK %d", cset, refcnt); in current_css_set_read()
57 seq_printf(seq, " +%d", refcnt - cset->nr_tasks); in current_css_set_read()
58 seq_puts(seq, "\n"); in current_css_set_read()
67 seq_printf(seq, "%2d: %-4s\t- %p[%d]\n", ss->id, ss->name, in current_css_set_read()
87 static int current_css_set_cg_links_read(struct seq_file *seq, void *v) in current_css_set_cg_links_read() argument
104 seq_printf(seq, "Root %d group %s\n", in current_css_set_cg_links_read()
114 static int cgroup_css_links_read(struct seq_file *seq, void *v) in cgroup_css_links_read() argument
116 struct cgroup_subsys_state *css = seq_css(seq); in cgroup_css_links_read()
[all …]
/linux-6.1.9/drivers/remoteproc/
Dremoteproc_debugfs.c275 static int rproc_rsc_table_show(struct seq_file *seq, void *p) in rproc_rsc_table_show() argument
278 struct rproc *rproc = seq->private; in rproc_rsc_table_show()
287 seq_puts(seq, "No resource table found\n"); in rproc_rsc_table_show()
299 seq_printf(seq, "Entry %d is of type %s\n", i, types[hdr->type]); in rproc_rsc_table_show()
300 seq_printf(seq, " Device Address 0x%x\n", c->da); in rproc_rsc_table_show()
301 seq_printf(seq, " Physical Address 0x%x\n", c->pa); in rproc_rsc_table_show()
302 seq_printf(seq, " Length 0x%x Bytes\n", c->len); in rproc_rsc_table_show()
303 seq_printf(seq, " Flags 0x%x\n", c->flags); in rproc_rsc_table_show()
304 seq_printf(seq, " Reserved (should be zero) [%d]\n", c->reserved); in rproc_rsc_table_show()
305 seq_printf(seq, " Name %s\n\n", c->name); in rproc_rsc_table_show()
[all …]
/linux-6.1.9/drivers/gpu/drm/
Ddrm_trace.h16 TP_PROTO(int crtc, unsigned int seq, ktime_t time, bool high_prec),
17 TP_ARGS(crtc, seq, time, high_prec),
20 __field(unsigned int, seq)
26 __entry->seq = seq;
31 __entry->crtc, __entry->seq, __entry->time,
36 TP_PROTO(struct drm_file *file, int crtc, unsigned int seq),
37 TP_ARGS(file, crtc, seq),
41 __field(unsigned int, seq)
46 __entry->seq = seq;
49 __entry->seq)
[all …]
/linux-6.1.9/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 …]
/linux-6.1.9/include/trace/events/
Dscmi.h36 TP_PROTO(int transfer_id, u8 msg_id, u8 protocol_id, u16 seq,
38 TP_ARGS(transfer_id, msg_id, protocol_id, seq, poll),
44 __field(u16, seq)
52 __entry->seq = seq;
57 __entry->protocol_id, __entry->msg_id, __entry->seq,
62 TP_PROTO(int transfer_id, u8 msg_id, u8 protocol_id, u16 seq,
64 TP_ARGS(transfer_id, msg_id, protocol_id, seq, timeout, poll),
70 __field(u16, seq)
79 __entry->seq = seq;
85 __entry->protocol_id, __entry->msg_id, __entry->seq,
[all …]
/linux-6.1.9/arch/m68k/atari/
Dnvram.c178 static void atari_nvram_proc_read(unsigned char *nvram, struct seq_file *seq, in atari_nvram_proc_read() argument
189 seq_printf(seq, "Checksum status : %svalid\n", checksum ? "" : "not "); in atari_nvram_proc_read()
191 seq_puts(seq, "Boot preference : "); in atari_nvram_proc_read()
194 seq_printf(seq, "%s\n", boot_prefs[i].name); in atari_nvram_proc_read()
198 seq_printf(seq, "0x%02x (undefined)\n", nvram[1]); in atari_nvram_proc_read()
200 seq_printf(seq, "SCSI arbitration : %s\n", in atari_nvram_proc_read()
202 seq_puts(seq, "SCSI host ID : "); in atari_nvram_proc_read()
204 seq_printf(seq, "%d\n", nvram[16] & 7); in atari_nvram_proc_read()
206 seq_puts(seq, "n/a\n"); in atari_nvram_proc_read()
211 seq_puts(seq, "OS language : "); in atari_nvram_proc_read()
[all …]
/linux-6.1.9/drivers/scsi/aic94xx/
Daic94xx_hwi.c200 struct asd_seq_data *seq = &asd_ha->seq; in asd_init_scbs() local
204 asd_ha->seq.tc_index_bitmap_bits = asd_ha->hw_prof.max_scbs; in asd_init_scbs()
205 asd_ha->seq.tc_index_array = kcalloc(asd_ha->seq.tc_index_bitmap_bits, in asd_init_scbs()
208 if (!asd_ha->seq.tc_index_array) in asd_init_scbs()
211 bitmap_bytes = (asd_ha->seq.tc_index_bitmap_bits+7)/8; in asd_init_scbs()
213 asd_ha->seq.tc_index_bitmap = kzalloc(bitmap_bytes, GFP_KERNEL); in asd_init_scbs()
214 if (!asd_ha->seq.tc_index_bitmap) { in asd_init_scbs()
215 kfree(asd_ha->seq.tc_index_array); in asd_init_scbs()
216 asd_ha->seq.tc_index_array = NULL; in asd_init_scbs()
220 spin_lock_init(&seq->tc_index_lock); in asd_init_scbs()
[all …]
/linux-6.1.9/net/rxrpc/
Dproc.c27 static void *rxrpc_call_seq_start(struct seq_file *seq, loff_t *_pos) in rxrpc_call_seq_start() argument
30 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_start()
36 static void *rxrpc_call_seq_next(struct seq_file *seq, void *v, loff_t *pos) in rxrpc_call_seq_next() argument
38 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_next()
43 static void rxrpc_call_seq_stop(struct seq_file *seq, void *v) in rxrpc_call_seq_stop() argument
49 static int rxrpc_call_seq_show(struct seq_file *seq, void *v) in rxrpc_call_seq_show() argument
55 struct rxrpc_net *rxnet = rxrpc_net(seq_file_net(seq)); in rxrpc_call_seq_show()
61 seq_puts(seq, in rxrpc_call_seq_show()
95 seq_printf(seq, in rxrpc_call_seq_show()
126 static void *rxrpc_connection_seq_start(struct seq_file *seq, loff_t *_pos) in rxrpc_connection_seq_start() argument
[all …]
/linux-6.1.9/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 …]

12345678910>>...62