Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-2.6.git] / fs / seq_file.c
blob1d641bb108d239f2476d862f0ce9e366c299762c
1 /*
2 * linux/fs/seq_file.c
4 * helper functions for making synthetic files from sequences of records.
5 * initial implementation -- AV, Oct 2001.
6 */
8 #include <linux/fs.h>
9 #include <linux/export.h>
10 #include <linux/seq_file.h>
11 #include <linux/slab.h>
12 #include <linux/cred.h>
14 #include <asm/uaccess.h>
15 #include <asm/page.h>
19 * seq_files have a buffer which can may overflow. When this happens a larger
20 * buffer is reallocated and all the data will be printed again.
21 * The overflow state is true when m->count == m->size.
23 static bool seq_overflow(struct seq_file *m)
25 return m->count == m->size;
28 static void seq_set_overflow(struct seq_file *m)
30 m->count = m->size;
33 /**
34 * seq_open - initialize sequential file
35 * @file: file we initialize
36 * @op: method table describing the sequence
38 * seq_open() sets @file, associating it with a sequence described
39 * by @op. @op->start() sets the iterator up and returns the first
40 * element of sequence. @op->stop() shuts it down. @op->next()
41 * returns the next element of sequence. @op->show() prints element
42 * into the buffer. In case of error ->start() and ->next() return
43 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
44 * returns 0 in case of success and negative number in case of error.
45 * Returning SEQ_SKIP means "discard this element and move on".
47 int seq_open(struct file *file, const struct seq_operations *op)
49 struct seq_file *p = file->private_data;
51 if (!p) {
52 p = kmalloc(sizeof(*p), GFP_KERNEL);
53 if (!p)
54 return -ENOMEM;
55 file->private_data = p;
57 memset(p, 0, sizeof(*p));
58 mutex_init(&p->lock);
59 p->op = op;
60 #ifdef CONFIG_USER_NS
61 p->user_ns = file->f_cred->user_ns;
62 #endif
65 * Wrappers around seq_open(e.g. swaps_open) need to be
66 * aware of this. If they set f_version themselves, they
67 * should call seq_open first and then set f_version.
69 file->f_version = 0;
72 * seq_files support lseek() and pread(). They do not implement
73 * write() at all, but we clear FMODE_PWRITE here for historical
74 * reasons.
76 * If a client of seq_files a) implements file.write() and b) wishes to
77 * support pwrite() then that client will need to implement its own
78 * file.open() which calls seq_open() and then sets FMODE_PWRITE.
80 file->f_mode &= ~FMODE_PWRITE;
81 return 0;
83 EXPORT_SYMBOL(seq_open);
85 static int traverse(struct seq_file *m, loff_t offset)
87 loff_t pos = 0, index;
88 int error = 0;
89 void *p;
91 m->version = 0;
92 index = 0;
93 m->count = m->from = 0;
94 if (!offset) {
95 m->index = index;
96 return 0;
98 if (!m->buf) {
99 m->buf = kmalloc(m->size = PAGE_SIZE, GFP_KERNEL);
100 if (!m->buf)
101 return -ENOMEM;
103 p = m->op->start(m, &index);
104 while (p) {
105 error = PTR_ERR(p);
106 if (IS_ERR(p))
107 break;
108 error = m->op->show(m, p);
109 if (error < 0)
110 break;
111 if (unlikely(error)) {
112 error = 0;
113 m->count = 0;
115 if (seq_overflow(m))
116 goto Eoverflow;
117 if (pos + m->count > offset) {
118 m->from = offset - pos;
119 m->count -= m->from;
120 m->index = index;
121 break;
123 pos += m->count;
124 m->count = 0;
125 if (pos == offset) {
126 index++;
127 m->index = index;
128 break;
130 p = m->op->next(m, p, &index);
132 m->op->stop(m, p);
133 m->index = index;
134 return error;
136 Eoverflow:
137 m->op->stop(m, p);
138 kfree(m->buf);
139 m->count = 0;
140 m->buf = kmalloc(m->size <<= 1, GFP_KERNEL);
141 return !m->buf ? -ENOMEM : -EAGAIN;
145 * seq_read - ->read() method for sequential files.
146 * @file: the file to read from
147 * @buf: the buffer to read to
148 * @size: the maximum number of bytes to read
149 * @ppos: the current position in the file
151 * Ready-made ->f_op->read()
153 ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
155 struct seq_file *m = file->private_data;
156 size_t copied = 0;
157 loff_t pos;
158 size_t n;
159 void *p;
160 int err = 0;
162 mutex_lock(&m->lock);
165 * seq_file->op->..m_start/m_stop/m_next may do special actions
166 * or optimisations based on the file->f_version, so we want to
167 * pass the file->f_version to those methods.
169 * seq_file->version is just copy of f_version, and seq_file
170 * methods can treat it simply as file version.
171 * It is copied in first and copied out after all operations.
172 * It is convenient to have it as part of structure to avoid the
173 * need of passing another argument to all the seq_file methods.
175 m->version = file->f_version;
177 /* Don't assume *ppos is where we left it */
178 if (unlikely(*ppos != m->read_pos)) {
179 while ((err = traverse(m, *ppos)) == -EAGAIN)
181 if (err) {
182 /* With prejudice... */
183 m->read_pos = 0;
184 m->version = 0;
185 m->index = 0;
186 m->count = 0;
187 goto Done;
188 } else {
189 m->read_pos = *ppos;
193 /* grab buffer if we didn't have one */
194 if (!m->buf) {
195 m->buf = kmalloc(m->size = PAGE_SIZE, GFP_KERNEL);
196 if (!m->buf)
197 goto Enomem;
199 /* if not empty - flush it first */
200 if (m->count) {
201 n = min(m->count, size);
202 err = copy_to_user(buf, m->buf + m->from, n);
203 if (err)
204 goto Efault;
205 m->count -= n;
206 m->from += n;
207 size -= n;
208 buf += n;
209 copied += n;
210 if (!m->count)
211 m->index++;
212 if (!size)
213 goto Done;
215 /* we need at least one record in buffer */
216 pos = m->index;
217 p = m->op->start(m, &pos);
218 while (1) {
219 err = PTR_ERR(p);
220 if (!p || IS_ERR(p))
221 break;
222 err = m->op->show(m, p);
223 if (err < 0)
224 break;
225 if (unlikely(err))
226 m->count = 0;
227 if (unlikely(!m->count)) {
228 p = m->op->next(m, p, &pos);
229 m->index = pos;
230 continue;
232 if (m->count < m->size)
233 goto Fill;
234 m->op->stop(m, p);
235 kfree(m->buf);
236 m->count = 0;
237 m->buf = kmalloc(m->size <<= 1, GFP_KERNEL);
238 if (!m->buf)
239 goto Enomem;
240 m->version = 0;
241 pos = m->index;
242 p = m->op->start(m, &pos);
244 m->op->stop(m, p);
245 m->count = 0;
246 goto Done;
247 Fill:
248 /* they want more? let's try to get some more */
249 while (m->count < size) {
250 size_t offs = m->count;
251 loff_t next = pos;
252 p = m->op->next(m, p, &next);
253 if (!p || IS_ERR(p)) {
254 err = PTR_ERR(p);
255 break;
257 err = m->op->show(m, p);
258 if (seq_overflow(m) || err) {
259 m->count = offs;
260 if (likely(err <= 0))
261 break;
263 pos = next;
265 m->op->stop(m, p);
266 n = min(m->count, size);
267 err = copy_to_user(buf, m->buf, n);
268 if (err)
269 goto Efault;
270 copied += n;
271 m->count -= n;
272 if (m->count)
273 m->from = n;
274 else
275 pos++;
276 m->index = pos;
277 Done:
278 if (!copied)
279 copied = err;
280 else {
281 *ppos += copied;
282 m->read_pos += copied;
284 file->f_version = m->version;
285 mutex_unlock(&m->lock);
286 return copied;
287 Enomem:
288 err = -ENOMEM;
289 goto Done;
290 Efault:
291 err = -EFAULT;
292 goto Done;
294 EXPORT_SYMBOL(seq_read);
297 * seq_lseek - ->llseek() method for sequential files.
298 * @file: the file in question
299 * @offset: new position
300 * @whence: 0 for absolute, 1 for relative position
302 * Ready-made ->f_op->llseek()
304 loff_t seq_lseek(struct file *file, loff_t offset, int whence)
306 struct seq_file *m = file->private_data;
307 loff_t retval = -EINVAL;
309 mutex_lock(&m->lock);
310 m->version = file->f_version;
311 switch (whence) {
312 case SEEK_CUR:
313 offset += file->f_pos;
314 case SEEK_SET:
315 if (offset < 0)
316 break;
317 retval = offset;
318 if (offset != m->read_pos) {
319 while ((retval = traverse(m, offset)) == -EAGAIN)
321 if (retval) {
322 /* with extreme prejudice... */
323 file->f_pos = 0;
324 m->read_pos = 0;
325 m->version = 0;
326 m->index = 0;
327 m->count = 0;
328 } else {
329 m->read_pos = offset;
330 retval = file->f_pos = offset;
332 } else {
333 file->f_pos = offset;
336 file->f_version = m->version;
337 mutex_unlock(&m->lock);
338 return retval;
340 EXPORT_SYMBOL(seq_lseek);
343 * seq_release - free the structures associated with sequential file.
344 * @file: file in question
345 * @inode: its inode
347 * Frees the structures associated with sequential file; can be used
348 * as ->f_op->release() if you don't have private data to destroy.
350 int seq_release(struct inode *inode, struct file *file)
352 struct seq_file *m = file->private_data;
353 kfree(m->buf);
354 kfree(m);
355 return 0;
357 EXPORT_SYMBOL(seq_release);
360 * seq_escape - print string into buffer, escaping some characters
361 * @m: target buffer
362 * @s: string
363 * @esc: set of characters that need escaping
365 * Puts string into buffer, replacing each occurrence of character from
366 * @esc with usual octal escape. Returns 0 in case of success, -1 - in
367 * case of overflow.
369 int seq_escape(struct seq_file *m, const char *s, const char *esc)
371 char *end = m->buf + m->size;
372 char *p;
373 char c;
375 for (p = m->buf + m->count; (c = *s) != '\0' && p < end; s++) {
376 if (!strchr(esc, c)) {
377 *p++ = c;
378 continue;
380 if (p + 3 < end) {
381 *p++ = '\\';
382 *p++ = '0' + ((c & 0300) >> 6);
383 *p++ = '0' + ((c & 070) >> 3);
384 *p++ = '0' + (c & 07);
385 continue;
387 seq_set_overflow(m);
388 return -1;
390 m->count = p - m->buf;
391 return 0;
393 EXPORT_SYMBOL(seq_escape);
395 int seq_vprintf(struct seq_file *m, const char *f, va_list args)
397 int len;
399 if (m->count < m->size) {
400 len = vsnprintf(m->buf + m->count, m->size - m->count, f, args);
401 if (m->count + len < m->size) {
402 m->count += len;
403 return 0;
406 seq_set_overflow(m);
407 return -1;
409 EXPORT_SYMBOL(seq_vprintf);
411 int seq_printf(struct seq_file *m, const char *f, ...)
413 int ret;
414 va_list args;
416 va_start(args, f);
417 ret = seq_vprintf(m, f, args);
418 va_end(args);
420 return ret;
422 EXPORT_SYMBOL(seq_printf);
425 * mangle_path - mangle and copy path to buffer beginning
426 * @s: buffer start
427 * @p: beginning of path in above buffer
428 * @esc: set of characters that need escaping
430 * Copy the path from @p to @s, replacing each occurrence of character from
431 * @esc with usual octal escape.
432 * Returns pointer past last written character in @s, or NULL in case of
433 * failure.
435 char *mangle_path(char *s, const char *p, const char *esc)
437 while (s <= p) {
438 char c = *p++;
439 if (!c) {
440 return s;
441 } else if (!strchr(esc, c)) {
442 *s++ = c;
443 } else if (s + 4 > p) {
444 break;
445 } else {
446 *s++ = '\\';
447 *s++ = '0' + ((c & 0300) >> 6);
448 *s++ = '0' + ((c & 070) >> 3);
449 *s++ = '0' + (c & 07);
452 return NULL;
454 EXPORT_SYMBOL(mangle_path);
457 * seq_path - seq_file interface to print a pathname
458 * @m: the seq_file handle
459 * @path: the struct path to print
460 * @esc: set of characters to escape in the output
462 * return the absolute path of 'path', as represented by the
463 * dentry / mnt pair in the path parameter.
465 int seq_path(struct seq_file *m, const struct path *path, const char *esc)
467 char *buf;
468 size_t size = seq_get_buf(m, &buf);
469 int res = -1;
471 if (size) {
472 char *p = d_path(path, buf, size);
473 if (!IS_ERR(p)) {
474 char *end = mangle_path(buf, p, esc);
475 if (end)
476 res = end - buf;
479 seq_commit(m, res);
481 return res;
483 EXPORT_SYMBOL(seq_path);
486 * Same as seq_path, but relative to supplied root.
488 int seq_path_root(struct seq_file *m, const struct path *path,
489 const struct path *root, const char *esc)
491 char *buf;
492 size_t size = seq_get_buf(m, &buf);
493 int res = -ENAMETOOLONG;
495 if (size) {
496 char *p;
498 p = __d_path(path, root, buf, size);
499 if (!p)
500 return SEQ_SKIP;
501 res = PTR_ERR(p);
502 if (!IS_ERR(p)) {
503 char *end = mangle_path(buf, p, esc);
504 if (end)
505 res = end - buf;
506 else
507 res = -ENAMETOOLONG;
510 seq_commit(m, res);
512 return res < 0 && res != -ENAMETOOLONG ? res : 0;
516 * returns the path of the 'dentry' from the root of its filesystem.
518 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
520 char *buf;
521 size_t size = seq_get_buf(m, &buf);
522 int res = -1;
524 if (size) {
525 char *p = dentry_path(dentry, buf, size);
526 if (!IS_ERR(p)) {
527 char *end = mangle_path(buf, p, esc);
528 if (end)
529 res = end - buf;
532 seq_commit(m, res);
534 return res;
537 int seq_bitmap(struct seq_file *m, const unsigned long *bits,
538 unsigned int nr_bits)
540 if (m->count < m->size) {
541 int len = bitmap_scnprintf(m->buf + m->count,
542 m->size - m->count, bits, nr_bits);
543 if (m->count + len < m->size) {
544 m->count += len;
545 return 0;
548 seq_set_overflow(m);
549 return -1;
551 EXPORT_SYMBOL(seq_bitmap);
553 int seq_bitmap_list(struct seq_file *m, const unsigned long *bits,
554 unsigned int nr_bits)
556 if (m->count < m->size) {
557 int len = bitmap_scnlistprintf(m->buf + m->count,
558 m->size - m->count, bits, nr_bits);
559 if (m->count + len < m->size) {
560 m->count += len;
561 return 0;
564 seq_set_overflow(m);
565 return -1;
567 EXPORT_SYMBOL(seq_bitmap_list);
569 static void *single_start(struct seq_file *p, loff_t *pos)
571 return NULL + (*pos == 0);
574 static void *single_next(struct seq_file *p, void *v, loff_t *pos)
576 ++*pos;
577 return NULL;
580 static void single_stop(struct seq_file *p, void *v)
584 int single_open(struct file *file, int (*show)(struct seq_file *, void *),
585 void *data)
587 struct seq_operations *op = kmalloc(sizeof(*op), GFP_KERNEL);
588 int res = -ENOMEM;
590 if (op) {
591 op->start = single_start;
592 op->next = single_next;
593 op->stop = single_stop;
594 op->show = show;
595 res = seq_open(file, op);
596 if (!res)
597 ((struct seq_file *)file->private_data)->private = data;
598 else
599 kfree(op);
601 return res;
603 EXPORT_SYMBOL(single_open);
605 int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
606 void *data, size_t size)
608 char *buf = kmalloc(size, GFP_KERNEL);
609 int ret;
610 if (!buf)
611 return -ENOMEM;
612 ret = single_open(file, show, data);
613 if (ret) {
614 kfree(buf);
615 return ret;
617 ((struct seq_file *)file->private_data)->buf = buf;
618 ((struct seq_file *)file->private_data)->size = size;
619 return 0;
621 EXPORT_SYMBOL(single_open_size);
623 int single_release(struct inode *inode, struct file *file)
625 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op;
626 int res = seq_release(inode, file);
627 kfree(op);
628 return res;
630 EXPORT_SYMBOL(single_release);
632 int seq_release_private(struct inode *inode, struct file *file)
634 struct seq_file *seq = file->private_data;
636 kfree(seq->private);
637 seq->private = NULL;
638 return seq_release(inode, file);
640 EXPORT_SYMBOL(seq_release_private);
642 void *__seq_open_private(struct file *f, const struct seq_operations *ops,
643 int psize)
645 int rc;
646 void *private;
647 struct seq_file *seq;
649 private = kzalloc(psize, GFP_KERNEL);
650 if (private == NULL)
651 goto out;
653 rc = seq_open(f, ops);
654 if (rc < 0)
655 goto out_free;
657 seq = f->private_data;
658 seq->private = private;
659 return private;
661 out_free:
662 kfree(private);
663 out:
664 return NULL;
666 EXPORT_SYMBOL(__seq_open_private);
668 int seq_open_private(struct file *filp, const struct seq_operations *ops,
669 int psize)
671 return __seq_open_private(filp, ops, psize) ? 0 : -ENOMEM;
673 EXPORT_SYMBOL(seq_open_private);
675 int seq_putc(struct seq_file *m, char c)
677 if (m->count < m->size) {
678 m->buf[m->count++] = c;
679 return 0;
681 return -1;
683 EXPORT_SYMBOL(seq_putc);
685 int seq_puts(struct seq_file *m, const char *s)
687 int len = strlen(s);
688 if (m->count + len < m->size) {
689 memcpy(m->buf + m->count, s, len);
690 m->count += len;
691 return 0;
693 seq_set_overflow(m);
694 return -1;
696 EXPORT_SYMBOL(seq_puts);
699 * A helper routine for putting decimal numbers without rich format of printf().
700 * only 'unsigned long long' is supported.
701 * This routine will put one byte delimiter + number into seq_file.
702 * This routine is very quick when you show lots of numbers.
703 * In usual cases, it will be better to use seq_printf(). It's easier to read.
705 int seq_put_decimal_ull(struct seq_file *m, char delimiter,
706 unsigned long long num)
708 int len;
710 if (m->count + 2 >= m->size) /* we'll write 2 bytes at least */
711 goto overflow;
713 if (delimiter)
714 m->buf[m->count++] = delimiter;
716 if (num < 10) {
717 m->buf[m->count++] = num + '0';
718 return 0;
721 len = num_to_str(m->buf + m->count, m->size - m->count, num);
722 if (!len)
723 goto overflow;
724 m->count += len;
725 return 0;
726 overflow:
727 seq_set_overflow(m);
728 return -1;
730 EXPORT_SYMBOL(seq_put_decimal_ull);
732 int seq_put_decimal_ll(struct seq_file *m, char delimiter,
733 long long num)
735 if (num < 0) {
736 if (m->count + 3 >= m->size) {
737 seq_set_overflow(m);
738 return -1;
740 if (delimiter)
741 m->buf[m->count++] = delimiter;
742 num = -num;
743 delimiter = '-';
745 return seq_put_decimal_ull(m, delimiter, num);
748 EXPORT_SYMBOL(seq_put_decimal_ll);
751 * seq_write - write arbitrary data to buffer
752 * @seq: seq_file identifying the buffer to which data should be written
753 * @data: data address
754 * @len: number of bytes
756 * Return 0 on success, non-zero otherwise.
758 int seq_write(struct seq_file *seq, const void *data, size_t len)
760 if (seq->count + len < seq->size) {
761 memcpy(seq->buf + seq->count, data, len);
762 seq->count += len;
763 return 0;
765 seq_set_overflow(seq);
766 return -1;
768 EXPORT_SYMBOL(seq_write);
771 * seq_pad - write padding spaces to buffer
772 * @m: seq_file identifying the buffer to which data should be written
773 * @c: the byte to append after padding if non-zero
775 void seq_pad(struct seq_file *m, char c)
777 int size = m->pad_until - m->count;
778 if (size > 0)
779 seq_printf(m, "%*s", size, "");
780 if (c)
781 seq_putc(m, c);
783 EXPORT_SYMBOL(seq_pad);
785 struct list_head *seq_list_start(struct list_head *head, loff_t pos)
787 struct list_head *lh;
789 list_for_each(lh, head)
790 if (pos-- == 0)
791 return lh;
793 return NULL;
795 EXPORT_SYMBOL(seq_list_start);
797 struct list_head *seq_list_start_head(struct list_head *head, loff_t pos)
799 if (!pos)
800 return head;
802 return seq_list_start(head, pos - 1);
804 EXPORT_SYMBOL(seq_list_start_head);
806 struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos)
808 struct list_head *lh;
810 lh = ((struct list_head *)v)->next;
811 ++*ppos;
812 return lh == head ? NULL : lh;
814 EXPORT_SYMBOL(seq_list_next);
817 * seq_hlist_start - start an iteration of a hlist
818 * @head: the head of the hlist
819 * @pos: the start position of the sequence
821 * Called at seq_file->op->start().
823 struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos)
825 struct hlist_node *node;
827 hlist_for_each(node, head)
828 if (pos-- == 0)
829 return node;
830 return NULL;
832 EXPORT_SYMBOL(seq_hlist_start);
835 * seq_hlist_start_head - start an iteration of a hlist
836 * @head: the head of the hlist
837 * @pos: the start position of the sequence
839 * Called at seq_file->op->start(). Call this function if you want to
840 * print a header at the top of the output.
842 struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos)
844 if (!pos)
845 return SEQ_START_TOKEN;
847 return seq_hlist_start(head, pos - 1);
849 EXPORT_SYMBOL(seq_hlist_start_head);
852 * seq_hlist_next - move to the next position of the hlist
853 * @v: the current iterator
854 * @head: the head of the hlist
855 * @ppos: the current position
857 * Called at seq_file->op->next().
859 struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
860 loff_t *ppos)
862 struct hlist_node *node = v;
864 ++*ppos;
865 if (v == SEQ_START_TOKEN)
866 return head->first;
867 else
868 return node->next;
870 EXPORT_SYMBOL(seq_hlist_next);
873 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
874 * @head: the head of the hlist
875 * @pos: the start position of the sequence
877 * Called at seq_file->op->start().
879 * This list-traversal primitive may safely run concurrently with
880 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
881 * as long as the traversal is guarded by rcu_read_lock().
883 struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
884 loff_t pos)
886 struct hlist_node *node;
888 __hlist_for_each_rcu(node, head)
889 if (pos-- == 0)
890 return node;
891 return NULL;
893 EXPORT_SYMBOL(seq_hlist_start_rcu);
896 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
897 * @head: the head of the hlist
898 * @pos: the start position of the sequence
900 * Called at seq_file->op->start(). Call this function if you want to
901 * print a header at the top of the output.
903 * This list-traversal primitive may safely run concurrently with
904 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
905 * as long as the traversal is guarded by rcu_read_lock().
907 struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
908 loff_t pos)
910 if (!pos)
911 return SEQ_START_TOKEN;
913 return seq_hlist_start_rcu(head, pos - 1);
915 EXPORT_SYMBOL(seq_hlist_start_head_rcu);
918 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
919 * @v: the current iterator
920 * @head: the head of the hlist
921 * @ppos: the current position
923 * Called at seq_file->op->next().
925 * This list-traversal primitive may safely run concurrently with
926 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
927 * as long as the traversal is guarded by rcu_read_lock().
929 struct hlist_node *seq_hlist_next_rcu(void *v,
930 struct hlist_head *head,
931 loff_t *ppos)
933 struct hlist_node *node = v;
935 ++*ppos;
936 if (v == SEQ_START_TOKEN)
937 return rcu_dereference(head->first);
938 else
939 return rcu_dereference(node->next);
941 EXPORT_SYMBOL(seq_hlist_next_rcu);
944 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
945 * @head: pointer to percpu array of struct hlist_heads
946 * @cpu: pointer to cpu "cursor"
947 * @pos: start position of sequence
949 * Called at seq_file->op->start().
951 struct hlist_node *
952 seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos)
954 struct hlist_node *node;
956 for_each_possible_cpu(*cpu) {
957 hlist_for_each(node, per_cpu_ptr(head, *cpu)) {
958 if (pos-- == 0)
959 return node;
962 return NULL;
964 EXPORT_SYMBOL(seq_hlist_start_percpu);
967 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
968 * @v: pointer to current hlist_node
969 * @head: pointer to percpu array of struct hlist_heads
970 * @cpu: pointer to cpu "cursor"
971 * @pos: start position of sequence
973 * Called at seq_file->op->next().
975 struct hlist_node *
976 seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head,
977 int *cpu, loff_t *pos)
979 struct hlist_node *node = v;
981 ++*pos;
983 if (node->next)
984 return node->next;
986 for (*cpu = cpumask_next(*cpu, cpu_possible_mask); *cpu < nr_cpu_ids;
987 *cpu = cpumask_next(*cpu, cpu_possible_mask)) {
988 struct hlist_head *bucket = per_cpu_ptr(head, *cpu);
990 if (!hlist_empty(bucket))
991 return bucket->first;
993 return NULL;
995 EXPORT_SYMBOL(seq_hlist_next_percpu);