1 // SPDX-License-Identifier: GPL-2.0
5 * helper functions for making synthetic files from sequences of records.
6 * initial implementation -- AV, Oct 2001.
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/cache.h>
13 #include <linux/export.h>
14 #include <linux/seq_file.h>
15 #include <linux/vmalloc.h>
16 #include <linux/slab.h>
17 #include <linux/cred.h>
19 #include <linux/printk.h>
20 #include <linux/string_helpers.h>
21 #include <linux/uio.h>
23 #include <linux/uaccess.h>
26 static struct kmem_cache
*seq_file_cache __ro_after_init
;
28 static void seq_set_overflow(struct seq_file
*m
)
33 static void *seq_buf_alloc(unsigned long size
)
35 return kvmalloc(size
, GFP_KERNEL_ACCOUNT
);
39 * seq_open - initialize sequential file
40 * @file: file we initialize
41 * @op: method table describing the sequence
43 * seq_open() sets @file, associating it with a sequence described
44 * by @op. @op->start() sets the iterator up and returns the first
45 * element of sequence. @op->stop() shuts it down. @op->next()
46 * returns the next element of sequence. @op->show() prints element
47 * into the buffer. In case of error ->start() and ->next() return
48 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
49 * returns 0 in case of success and negative number in case of error.
50 * Returning SEQ_SKIP means "discard this element and move on".
51 * Note: seq_open() will allocate a struct seq_file and store its
52 * pointer in @file->private_data. This pointer should not be modified.
54 int seq_open(struct file
*file
, const struct seq_operations
*op
)
58 WARN_ON(file
->private_data
);
60 p
= kmem_cache_zalloc(seq_file_cache
, GFP_KERNEL
);
64 file
->private_data
= p
;
69 // No refcounting: the lifetime of 'p' is constrained
70 // to the lifetime of the file.
74 * seq_files support lseek() and pread(). They do not implement
75 * write() at all, but we clear FMODE_PWRITE here for historical
78 * If a client of seq_files a) implements file.write() and b) wishes to
79 * support pwrite() then that client will need to implement its own
80 * file.open() which calls seq_open() and then sets FMODE_PWRITE.
82 file
->f_mode
&= ~FMODE_PWRITE
;
85 EXPORT_SYMBOL(seq_open
);
87 static int traverse(struct seq_file
*m
, loff_t offset
)
94 m
->count
= m
->from
= 0;
99 m
->buf
= seq_buf_alloc(m
->size
= PAGE_SIZE
);
103 p
= m
->op
->start(m
, &m
->index
);
108 error
= m
->op
->show(m
, p
);
111 if (unlikely(error
)) {
115 if (seq_has_overflowed(m
))
117 p
= m
->op
->next(m
, p
, &m
->index
);
118 if (pos
+ m
->count
> offset
) {
119 m
->from
= offset
- pos
;
135 m
->buf
= seq_buf_alloc(m
->size
<<= 1);
136 return !m
->buf
? -ENOMEM
: -EAGAIN
;
140 * seq_read - ->read() method for sequential files.
141 * @file: the file to read from
142 * @buf: the buffer to read to
143 * @size: the maximum number of bytes to read
144 * @ppos: the current position in the file
146 * Ready-made ->f_op->read()
148 ssize_t
seq_read(struct file
*file
, char __user
*buf
, size_t size
, loff_t
*ppos
)
150 struct iovec iov
= { .iov_base
= buf
, .iov_len
= size
};
152 struct iov_iter iter
;
155 init_sync_kiocb(&kiocb
, file
);
156 iov_iter_init(&iter
, READ
, &iov
, 1, size
);
158 kiocb
.ki_pos
= *ppos
;
159 ret
= seq_read_iter(&kiocb
, &iter
);
160 *ppos
= kiocb
.ki_pos
;
163 EXPORT_SYMBOL(seq_read
);
166 * Ready-made ->f_op->read_iter()
168 ssize_t
seq_read_iter(struct kiocb
*iocb
, struct iov_iter
*iter
)
170 struct seq_file
*m
= iocb
->ki_filp
->private_data
;
176 if (!iov_iter_count(iter
))
179 mutex_lock(&m
->lock
);
182 * if request is to read from zero offset, reset iterator to first
183 * record as it might have been already advanced by previous requests
185 if (iocb
->ki_pos
== 0) {
190 /* Don't assume ki_pos is where we left it */
191 if (unlikely(iocb
->ki_pos
!= m
->read_pos
)) {
192 while ((err
= traverse(m
, iocb
->ki_pos
)) == -EAGAIN
)
195 /* With prejudice... */
201 m
->read_pos
= iocb
->ki_pos
;
205 /* grab buffer if we didn't have one */
207 m
->buf
= seq_buf_alloc(m
->size
= PAGE_SIZE
);
211 // something left in the buffer - copy it out first
213 n
= copy_to_iter(m
->buf
+ m
->from
, m
->count
, iter
);
217 if (m
->count
) // hadn't managed to copy everything
220 // get a non-empty record in the buffer
222 p
= m
->op
->start(m
, &m
->index
);
225 if (!p
|| IS_ERR(p
)) // EOF or an error
227 err
= m
->op
->show(m
, p
);
228 if (err
< 0) // hard error
230 if (unlikely(err
)) // ->show() says "skip it"
232 if (unlikely(!m
->count
)) { // empty record
233 p
= m
->op
->next(m
, p
, &m
->index
);
236 if (!seq_has_overflowed(m
)) // got it
238 // need a bigger buffer
242 m
->buf
= seq_buf_alloc(m
->size
<<= 1);
245 p
= m
->op
->start(m
, &m
->index
);
252 // one non-empty record is in the buffer; if they want more,
253 // try to fit more in, but in any case we need to advance
254 // the iterator once for every record shown.
256 size_t offs
= m
->count
;
257 loff_t pos
= m
->index
;
259 p
= m
->op
->next(m
, p
, &m
->index
);
260 if (pos
== m
->index
) {
261 pr_info_ratelimited("buggy .next function %ps did not update position index\n",
265 if (!p
|| IS_ERR(p
)) // no next record for us
267 if (m
->count
>= iov_iter_count(iter
))
269 err
= m
->op
->show(m
, p
);
270 if (err
> 0) { // ->show() says "skip it"
272 } else if (err
|| seq_has_overflowed(m
)) {
278 n
= copy_to_iter(m
->buf
, m
->count
, iter
);
283 if (unlikely(!copied
)) {
284 copied
= m
->count
? -EFAULT
: err
;
286 iocb
->ki_pos
+= copied
;
287 m
->read_pos
+= copied
;
289 mutex_unlock(&m
->lock
);
295 EXPORT_SYMBOL(seq_read_iter
);
298 * seq_lseek - ->llseek() method for sequential files.
299 * @file: the file in question
300 * @offset: new position
301 * @whence: 0 for absolute, 1 for relative position
303 * Ready-made ->f_op->llseek()
305 loff_t
seq_lseek(struct file
*file
, loff_t offset
, int whence
)
307 struct seq_file
*m
= file
->private_data
;
308 loff_t retval
= -EINVAL
;
310 mutex_lock(&m
->lock
);
313 offset
+= file
->f_pos
;
319 if (offset
!= m
->read_pos
) {
320 while ((retval
= traverse(m
, offset
)) == -EAGAIN
)
323 /* with extreme prejudice... */
329 m
->read_pos
= offset
;
330 retval
= file
->f_pos
= offset
;
333 file
->f_pos
= offset
;
336 mutex_unlock(&m
->lock
);
339 EXPORT_SYMBOL(seq_lseek
);
342 * seq_release - free the structures associated with sequential file.
343 * @file: file in question
346 * Frees the structures associated with sequential file; can be used
347 * as ->f_op->release() if you don't have private data to destroy.
349 int seq_release(struct inode
*inode
, struct file
*file
)
351 struct seq_file
*m
= file
->private_data
;
353 kmem_cache_free(seq_file_cache
, m
);
356 EXPORT_SYMBOL(seq_release
);
359 * seq_escape - print string into buffer, escaping some characters
362 * @esc: set of characters that need escaping
364 * Puts string into buffer, replacing each occurrence of character from
365 * @esc with usual octal escape.
366 * Use seq_has_overflowed() to check for errors.
368 void seq_escape(struct seq_file
*m
, const char *s
, const char *esc
)
371 size_t size
= seq_get_buf(m
, &buf
);
374 ret
= string_escape_str(s
, buf
, size
, ESCAPE_OCTAL
, esc
);
375 seq_commit(m
, ret
< size
? ret
: -1);
377 EXPORT_SYMBOL(seq_escape
);
379 void seq_escape_mem_ascii(struct seq_file
*m
, const char *src
, size_t isz
)
382 size_t size
= seq_get_buf(m
, &buf
);
385 ret
= string_escape_mem_ascii(src
, isz
, buf
, size
);
386 seq_commit(m
, ret
< size
? ret
: -1);
388 EXPORT_SYMBOL(seq_escape_mem_ascii
);
390 void seq_vprintf(struct seq_file
*m
, const char *f
, va_list args
)
394 if (m
->count
< m
->size
) {
395 len
= vsnprintf(m
->buf
+ m
->count
, m
->size
- m
->count
, f
, args
);
396 if (m
->count
+ len
< m
->size
) {
403 EXPORT_SYMBOL(seq_vprintf
);
405 void seq_printf(struct seq_file
*m
, const char *f
, ...)
410 seq_vprintf(m
, f
, args
);
413 EXPORT_SYMBOL(seq_printf
);
416 * mangle_path - mangle and copy path to buffer beginning
418 * @p: beginning of path in above buffer
419 * @esc: set of characters that need escaping
421 * Copy the path from @p to @s, replacing each occurrence of character from
422 * @esc with usual octal escape.
423 * Returns pointer past last written character in @s, or NULL in case of
426 char *mangle_path(char *s
, const char *p
, const char *esc
)
432 } else if (!strchr(esc
, c
)) {
434 } else if (s
+ 4 > p
) {
438 *s
++ = '0' + ((c
& 0300) >> 6);
439 *s
++ = '0' + ((c
& 070) >> 3);
440 *s
++ = '0' + (c
& 07);
445 EXPORT_SYMBOL(mangle_path
);
448 * seq_path - seq_file interface to print a pathname
449 * @m: the seq_file handle
450 * @path: the struct path to print
451 * @esc: set of characters to escape in the output
453 * return the absolute path of 'path', as represented by the
454 * dentry / mnt pair in the path parameter.
456 int seq_path(struct seq_file
*m
, const struct path
*path
, const char *esc
)
459 size_t size
= seq_get_buf(m
, &buf
);
463 char *p
= d_path(path
, buf
, size
);
465 char *end
= mangle_path(buf
, p
, esc
);
474 EXPORT_SYMBOL(seq_path
);
477 * seq_file_path - seq_file interface to print a pathname of a file
478 * @m: the seq_file handle
479 * @file: the struct file to print
480 * @esc: set of characters to escape in the output
482 * return the absolute path to the file.
484 int seq_file_path(struct seq_file
*m
, struct file
*file
, const char *esc
)
486 return seq_path(m
, &file
->f_path
, esc
);
488 EXPORT_SYMBOL(seq_file_path
);
491 * Same as seq_path, but relative to supplied root.
493 int seq_path_root(struct seq_file
*m
, const struct path
*path
,
494 const struct path
*root
, const char *esc
)
497 size_t size
= seq_get_buf(m
, &buf
);
498 int res
= -ENAMETOOLONG
;
503 p
= __d_path(path
, root
, buf
, size
);
508 char *end
= mangle_path(buf
, p
, esc
);
517 return res
< 0 && res
!= -ENAMETOOLONG
? res
: 0;
521 * returns the path of the 'dentry' from the root of its filesystem.
523 int seq_dentry(struct seq_file
*m
, struct dentry
*dentry
, const char *esc
)
526 size_t size
= seq_get_buf(m
, &buf
);
530 char *p
= dentry_path(dentry
, buf
, size
);
532 char *end
= mangle_path(buf
, p
, esc
);
541 EXPORT_SYMBOL(seq_dentry
);
543 static void *single_start(struct seq_file
*p
, loff_t
*pos
)
545 return NULL
+ (*pos
== 0);
548 static void *single_next(struct seq_file
*p
, void *v
, loff_t
*pos
)
554 static void single_stop(struct seq_file
*p
, void *v
)
558 int single_open(struct file
*file
, int (*show
)(struct seq_file
*, void *),
561 struct seq_operations
*op
= kmalloc(sizeof(*op
), GFP_KERNEL_ACCOUNT
);
565 op
->start
= single_start
;
566 op
->next
= single_next
;
567 op
->stop
= single_stop
;
569 res
= seq_open(file
, op
);
571 ((struct seq_file
*)file
->private_data
)->private = data
;
577 EXPORT_SYMBOL(single_open
);
579 int single_open_size(struct file
*file
, int (*show
)(struct seq_file
*, void *),
580 void *data
, size_t size
)
582 char *buf
= seq_buf_alloc(size
);
586 ret
= single_open(file
, show
, data
);
591 ((struct seq_file
*)file
->private_data
)->buf
= buf
;
592 ((struct seq_file
*)file
->private_data
)->size
= size
;
595 EXPORT_SYMBOL(single_open_size
);
597 int single_release(struct inode
*inode
, struct file
*file
)
599 const struct seq_operations
*op
= ((struct seq_file
*)file
->private_data
)->op
;
600 int res
= seq_release(inode
, file
);
604 EXPORT_SYMBOL(single_release
);
606 int seq_release_private(struct inode
*inode
, struct file
*file
)
608 struct seq_file
*seq
= file
->private_data
;
612 return seq_release(inode
, file
);
614 EXPORT_SYMBOL(seq_release_private
);
616 void *__seq_open_private(struct file
*f
, const struct seq_operations
*ops
,
621 struct seq_file
*seq
;
623 private = kzalloc(psize
, GFP_KERNEL_ACCOUNT
);
627 rc
= seq_open(f
, ops
);
631 seq
= f
->private_data
;
632 seq
->private = private;
640 EXPORT_SYMBOL(__seq_open_private
);
642 int seq_open_private(struct file
*filp
, const struct seq_operations
*ops
,
645 return __seq_open_private(filp
, ops
, psize
) ? 0 : -ENOMEM
;
647 EXPORT_SYMBOL(seq_open_private
);
649 void seq_putc(struct seq_file
*m
, char c
)
651 if (m
->count
>= m
->size
)
654 m
->buf
[m
->count
++] = c
;
656 EXPORT_SYMBOL(seq_putc
);
658 void seq_puts(struct seq_file
*m
, const char *s
)
662 if (m
->count
+ len
>= m
->size
) {
666 memcpy(m
->buf
+ m
->count
, s
, len
);
669 EXPORT_SYMBOL(seq_puts
);
672 * A helper routine for putting decimal numbers without rich format of printf().
673 * only 'unsigned long long' is supported.
674 * @m: seq_file identifying the buffer to which data should be written
675 * @delimiter: a string which is printed before the number
677 * @width: a minimum field width
679 * This routine will put strlen(delimiter) + number into seq_filed.
680 * This routine is very quick when you show lots of numbers.
681 * In usual cases, it will be better to use seq_printf(). It's easier to read.
683 void seq_put_decimal_ull_width(struct seq_file
*m
, const char *delimiter
,
684 unsigned long long num
, unsigned int width
)
688 if (m
->count
+ 2 >= m
->size
) /* we'll write 2 bytes at least */
691 if (delimiter
&& delimiter
[0]) {
692 if (delimiter
[1] == 0)
693 seq_putc(m
, delimiter
[0]);
695 seq_puts(m
, delimiter
);
701 if (m
->count
+ width
>= m
->size
)
704 len
= num_to_str(m
->buf
+ m
->count
, m
->size
- m
->count
, num
, width
);
715 void seq_put_decimal_ull(struct seq_file
*m
, const char *delimiter
,
716 unsigned long long num
)
718 return seq_put_decimal_ull_width(m
, delimiter
, num
, 0);
720 EXPORT_SYMBOL(seq_put_decimal_ull
);
723 * seq_put_hex_ll - put a number in hexadecimal notation
724 * @m: seq_file identifying the buffer to which data should be written
725 * @delimiter: a string which is printed before the number
727 * @width: a minimum field width
729 * seq_put_hex_ll(m, "", v, 8) is equal to seq_printf(m, "%08llx", v)
731 * This routine is very quick when you show lots of numbers.
732 * In usual cases, it will be better to use seq_printf(). It's easier to read.
734 void seq_put_hex_ll(struct seq_file
*m
, const char *delimiter
,
735 unsigned long long v
, unsigned int width
)
740 if (delimiter
&& delimiter
[0]) {
741 if (delimiter
[1] == 0)
742 seq_putc(m
, delimiter
[0]);
744 seq_puts(m
, delimiter
);
747 /* If x is 0, the result of __builtin_clzll is undefined */
751 len
= (sizeof(v
) * 8 - __builtin_clzll(v
) + 3) / 4;
756 if (m
->count
+ len
> m
->size
) {
761 for (i
= len
- 1; i
>= 0; i
--) {
762 m
->buf
[m
->count
+ i
] = hex_asc
[0xf & v
];
768 void seq_put_decimal_ll(struct seq_file
*m
, const char *delimiter
, long long num
)
772 if (m
->count
+ 3 >= m
->size
) /* we'll write 2 bytes at least */
775 if (delimiter
&& delimiter
[0]) {
776 if (delimiter
[1] == 0)
777 seq_putc(m
, delimiter
[0]);
779 seq_puts(m
, delimiter
);
782 if (m
->count
+ 2 >= m
->size
)
786 m
->buf
[m
->count
++] = '-';
791 m
->buf
[m
->count
++] = num
+ '0';
795 len
= num_to_str(m
->buf
+ m
->count
, m
->size
- m
->count
, num
, 0);
805 EXPORT_SYMBOL(seq_put_decimal_ll
);
808 * seq_write - write arbitrary data to buffer
809 * @seq: seq_file identifying the buffer to which data should be written
810 * @data: data address
811 * @len: number of bytes
813 * Return 0 on success, non-zero otherwise.
815 int seq_write(struct seq_file
*seq
, const void *data
, size_t len
)
817 if (seq
->count
+ len
< seq
->size
) {
818 memcpy(seq
->buf
+ seq
->count
, data
, len
);
822 seq_set_overflow(seq
);
825 EXPORT_SYMBOL(seq_write
);
828 * seq_pad - write padding spaces to buffer
829 * @m: seq_file identifying the buffer to which data should be written
830 * @c: the byte to append after padding if non-zero
832 void seq_pad(struct seq_file
*m
, char c
)
834 int size
= m
->pad_until
- m
->count
;
836 if (size
+ m
->count
> m
->size
) {
840 memset(m
->buf
+ m
->count
, ' ', size
);
846 EXPORT_SYMBOL(seq_pad
);
848 /* A complete analogue of print_hex_dump() */
849 void seq_hex_dump(struct seq_file
*m
, const char *prefix_str
, int prefix_type
,
850 int rowsize
, int groupsize
, const void *buf
, size_t len
,
854 int i
, linelen
, remaining
= len
;
859 if (rowsize
!= 16 && rowsize
!= 32)
862 for (i
= 0; i
< len
&& !seq_has_overflowed(m
); i
+= rowsize
) {
863 linelen
= min(remaining
, rowsize
);
864 remaining
-= rowsize
;
866 switch (prefix_type
) {
867 case DUMP_PREFIX_ADDRESS
:
868 seq_printf(m
, "%s%p: ", prefix_str
, ptr
+ i
);
870 case DUMP_PREFIX_OFFSET
:
871 seq_printf(m
, "%s%.8x: ", prefix_str
, i
);
874 seq_printf(m
, "%s", prefix_str
);
878 size
= seq_get_buf(m
, &buffer
);
879 ret
= hex_dump_to_buffer(ptr
+ i
, linelen
, rowsize
, groupsize
,
880 buffer
, size
, ascii
);
881 seq_commit(m
, ret
< size
? ret
: -1);
886 EXPORT_SYMBOL(seq_hex_dump
);
888 struct list_head
*seq_list_start(struct list_head
*head
, loff_t pos
)
890 struct list_head
*lh
;
892 list_for_each(lh
, head
)
898 EXPORT_SYMBOL(seq_list_start
);
900 struct list_head
*seq_list_start_head(struct list_head
*head
, loff_t pos
)
905 return seq_list_start(head
, pos
- 1);
907 EXPORT_SYMBOL(seq_list_start_head
);
909 struct list_head
*seq_list_next(void *v
, struct list_head
*head
, loff_t
*ppos
)
911 struct list_head
*lh
;
913 lh
= ((struct list_head
*)v
)->next
;
915 return lh
== head
? NULL
: lh
;
917 EXPORT_SYMBOL(seq_list_next
);
920 * seq_hlist_start - start an iteration of a hlist
921 * @head: the head of the hlist
922 * @pos: the start position of the sequence
924 * Called at seq_file->op->start().
926 struct hlist_node
*seq_hlist_start(struct hlist_head
*head
, loff_t pos
)
928 struct hlist_node
*node
;
930 hlist_for_each(node
, head
)
935 EXPORT_SYMBOL(seq_hlist_start
);
938 * seq_hlist_start_head - start an iteration of a hlist
939 * @head: the head of the hlist
940 * @pos: the start position of the sequence
942 * Called at seq_file->op->start(). Call this function if you want to
943 * print a header at the top of the output.
945 struct hlist_node
*seq_hlist_start_head(struct hlist_head
*head
, loff_t pos
)
948 return SEQ_START_TOKEN
;
950 return seq_hlist_start(head
, pos
- 1);
952 EXPORT_SYMBOL(seq_hlist_start_head
);
955 * seq_hlist_next - move to the next position of the hlist
956 * @v: the current iterator
957 * @head: the head of the hlist
958 * @ppos: the current position
960 * Called at seq_file->op->next().
962 struct hlist_node
*seq_hlist_next(void *v
, struct hlist_head
*head
,
965 struct hlist_node
*node
= v
;
968 if (v
== SEQ_START_TOKEN
)
973 EXPORT_SYMBOL(seq_hlist_next
);
976 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
977 * @head: the head of the hlist
978 * @pos: the start position of the sequence
980 * Called at seq_file->op->start().
982 * This list-traversal primitive may safely run concurrently with
983 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
984 * as long as the traversal is guarded by rcu_read_lock().
986 struct hlist_node
*seq_hlist_start_rcu(struct hlist_head
*head
,
989 struct hlist_node
*node
;
991 __hlist_for_each_rcu(node
, head
)
996 EXPORT_SYMBOL(seq_hlist_start_rcu
);
999 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
1000 * @head: the head of the hlist
1001 * @pos: the start position of the sequence
1003 * Called at seq_file->op->start(). Call this function if you want to
1004 * print a header at the top of the output.
1006 * This list-traversal primitive may safely run concurrently with
1007 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
1008 * as long as the traversal is guarded by rcu_read_lock().
1010 struct hlist_node
*seq_hlist_start_head_rcu(struct hlist_head
*head
,
1014 return SEQ_START_TOKEN
;
1016 return seq_hlist_start_rcu(head
, pos
- 1);
1018 EXPORT_SYMBOL(seq_hlist_start_head_rcu
);
1021 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
1022 * @v: the current iterator
1023 * @head: the head of the hlist
1024 * @ppos: the current position
1026 * Called at seq_file->op->next().
1028 * This list-traversal primitive may safely run concurrently with
1029 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
1030 * as long as the traversal is guarded by rcu_read_lock().
1032 struct hlist_node
*seq_hlist_next_rcu(void *v
,
1033 struct hlist_head
*head
,
1036 struct hlist_node
*node
= v
;
1039 if (v
== SEQ_START_TOKEN
)
1040 return rcu_dereference(head
->first
);
1042 return rcu_dereference(node
->next
);
1044 EXPORT_SYMBOL(seq_hlist_next_rcu
);
1047 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
1048 * @head: pointer to percpu array of struct hlist_heads
1049 * @cpu: pointer to cpu "cursor"
1050 * @pos: start position of sequence
1052 * Called at seq_file->op->start().
1055 seq_hlist_start_percpu(struct hlist_head __percpu
*head
, int *cpu
, loff_t pos
)
1057 struct hlist_node
*node
;
1059 for_each_possible_cpu(*cpu
) {
1060 hlist_for_each(node
, per_cpu_ptr(head
, *cpu
)) {
1067 EXPORT_SYMBOL(seq_hlist_start_percpu
);
1070 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
1071 * @v: pointer to current hlist_node
1072 * @head: pointer to percpu array of struct hlist_heads
1073 * @cpu: pointer to cpu "cursor"
1074 * @pos: start position of sequence
1076 * Called at seq_file->op->next().
1079 seq_hlist_next_percpu(void *v
, struct hlist_head __percpu
*head
,
1080 int *cpu
, loff_t
*pos
)
1082 struct hlist_node
*node
= v
;
1089 for (*cpu
= cpumask_next(*cpu
, cpu_possible_mask
); *cpu
< nr_cpu_ids
;
1090 *cpu
= cpumask_next(*cpu
, cpu_possible_mask
)) {
1091 struct hlist_head
*bucket
= per_cpu_ptr(head
, *cpu
);
1093 if (!hlist_empty(bucket
))
1094 return bucket
->first
;
1098 EXPORT_SYMBOL(seq_hlist_next_percpu
);
1100 void __init
seq_file_init(void)
1102 seq_file_cache
= KMEM_CACHE(seq_file
, SLAB_ACCOUNT
|SLAB_PANIC
);