config: android-base: add CONFIG_MODULES option
[linux-2.6/btrfs-unstable.git] / fs / seq_file.c
blobdc7c2be963ed4e2c2751313a44270b7655a45b4d
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/vmalloc.h>
12 #include <linux/slab.h>
13 #include <linux/cred.h>
14 #include <linux/mm.h>
15 #include <linux/printk.h>
16 #include <linux/string_helpers.h>
18 #include <linux/uaccess.h>
19 #include <asm/page.h>
21 static void seq_set_overflow(struct seq_file *m)
23 m->count = m->size;
26 static void *seq_buf_alloc(unsigned long size)
28 return kvmalloc(size, GFP_KERNEL);
31 /**
32 * seq_open - initialize sequential file
33 * @file: file we initialize
34 * @op: method table describing the sequence
36 * seq_open() sets @file, associating it with a sequence described
37 * by @op. @op->start() sets the iterator up and returns the first
38 * element of sequence. @op->stop() shuts it down. @op->next()
39 * returns the next element of sequence. @op->show() prints element
40 * into the buffer. In case of error ->start() and ->next() return
41 * ERR_PTR(error). In the end of sequence they return %NULL. ->show()
42 * returns 0 in case of success and negative number in case of error.
43 * Returning SEQ_SKIP means "discard this element and move on".
44 * Note: seq_open() will allocate a struct seq_file and store its
45 * pointer in @file->private_data. This pointer should not be modified.
47 int seq_open(struct file *file, const struct seq_operations *op)
49 struct seq_file *p;
51 WARN_ON(file->private_data);
53 p = kzalloc(sizeof(*p), GFP_KERNEL);
54 if (!p)
55 return -ENOMEM;
57 file->private_data = p;
59 mutex_init(&p->lock);
60 p->op = op;
62 // No refcounting: the lifetime of 'p' is constrained
63 // to the lifetime of the file.
64 p->file = file;
67 * Wrappers around seq_open(e.g. swaps_open) need to be
68 * aware of this. If they set f_version themselves, they
69 * should call seq_open first and then set f_version.
71 file->f_version = 0;
74 * seq_files support lseek() and pread(). They do not implement
75 * write() at all, but we clear FMODE_PWRITE here for historical
76 * reasons.
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;
83 return 0;
85 EXPORT_SYMBOL(seq_open);
87 static int traverse(struct seq_file *m, loff_t offset)
89 loff_t pos = 0, index;
90 int error = 0;
91 void *p;
93 m->version = 0;
94 index = 0;
95 m->count = m->from = 0;
96 if (!offset) {
97 m->index = index;
98 return 0;
100 if (!m->buf) {
101 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
102 if (!m->buf)
103 return -ENOMEM;
105 p = m->op->start(m, &index);
106 while (p) {
107 error = PTR_ERR(p);
108 if (IS_ERR(p))
109 break;
110 error = m->op->show(m, p);
111 if (error < 0)
112 break;
113 if (unlikely(error)) {
114 error = 0;
115 m->count = 0;
117 if (seq_has_overflowed(m))
118 goto Eoverflow;
119 if (pos + m->count > offset) {
120 m->from = offset - pos;
121 m->count -= m->from;
122 m->index = index;
123 break;
125 pos += m->count;
126 m->count = 0;
127 if (pos == offset) {
128 index++;
129 m->index = index;
130 break;
132 p = m->op->next(m, p, &index);
134 m->op->stop(m, p);
135 m->index = index;
136 return error;
138 Eoverflow:
139 m->op->stop(m, p);
140 kvfree(m->buf);
141 m->count = 0;
142 m->buf = seq_buf_alloc(m->size <<= 1);
143 return !m->buf ? -ENOMEM : -EAGAIN;
147 * seq_read - ->read() method for sequential files.
148 * @file: the file to read from
149 * @buf: the buffer to read to
150 * @size: the maximum number of bytes to read
151 * @ppos: the current position in the file
153 * Ready-made ->f_op->read()
155 ssize_t seq_read(struct file *file, char __user *buf, size_t size, loff_t *ppos)
157 struct seq_file *m = file->private_data;
158 size_t copied = 0;
159 loff_t pos;
160 size_t n;
161 void *p;
162 int err = 0;
164 mutex_lock(&m->lock);
167 * seq_file->op->..m_start/m_stop/m_next may do special actions
168 * or optimisations based on the file->f_version, so we want to
169 * pass the file->f_version to those methods.
171 * seq_file->version is just copy of f_version, and seq_file
172 * methods can treat it simply as file version.
173 * It is copied in first and copied out after all operations.
174 * It is convenient to have it as part of structure to avoid the
175 * need of passing another argument to all the seq_file methods.
177 m->version = file->f_version;
180 * if request is to read from zero offset, reset iterator to first
181 * record as it might have been already advanced by previous requests
183 if (*ppos == 0)
184 m->index = 0;
186 /* Don't assume *ppos is where we left it */
187 if (unlikely(*ppos != m->read_pos)) {
188 while ((err = traverse(m, *ppos)) == -EAGAIN)
190 if (err) {
191 /* With prejudice... */
192 m->read_pos = 0;
193 m->version = 0;
194 m->index = 0;
195 m->count = 0;
196 goto Done;
197 } else {
198 m->read_pos = *ppos;
202 /* grab buffer if we didn't have one */
203 if (!m->buf) {
204 m->buf = seq_buf_alloc(m->size = PAGE_SIZE);
205 if (!m->buf)
206 goto Enomem;
208 /* if not empty - flush it first */
209 if (m->count) {
210 n = min(m->count, size);
211 err = copy_to_user(buf, m->buf + m->from, n);
212 if (err)
213 goto Efault;
214 m->count -= n;
215 m->from += n;
216 size -= n;
217 buf += n;
218 copied += n;
219 if (!m->count) {
220 m->from = 0;
221 m->index++;
223 if (!size)
224 goto Done;
226 /* we need at least one record in buffer */
227 pos = m->index;
228 p = m->op->start(m, &pos);
229 while (1) {
230 err = PTR_ERR(p);
231 if (!p || IS_ERR(p))
232 break;
233 err = m->op->show(m, p);
234 if (err < 0)
235 break;
236 if (unlikely(err))
237 m->count = 0;
238 if (unlikely(!m->count)) {
239 p = m->op->next(m, p, &pos);
240 m->index = pos;
241 continue;
243 if (m->count < m->size)
244 goto Fill;
245 m->op->stop(m, p);
246 kvfree(m->buf);
247 m->count = 0;
248 m->buf = seq_buf_alloc(m->size <<= 1);
249 if (!m->buf)
250 goto Enomem;
251 m->version = 0;
252 pos = m->index;
253 p = m->op->start(m, &pos);
255 m->op->stop(m, p);
256 m->count = 0;
257 goto Done;
258 Fill:
259 /* they want more? let's try to get some more */
260 while (m->count < size) {
261 size_t offs = m->count;
262 loff_t next = pos;
263 p = m->op->next(m, p, &next);
264 if (!p || IS_ERR(p)) {
265 err = PTR_ERR(p);
266 break;
268 err = m->op->show(m, p);
269 if (seq_has_overflowed(m) || err) {
270 m->count = offs;
271 if (likely(err <= 0))
272 break;
274 pos = next;
276 m->op->stop(m, p);
277 n = min(m->count, size);
278 err = copy_to_user(buf, m->buf, n);
279 if (err)
280 goto Efault;
281 copied += n;
282 m->count -= n;
283 if (m->count)
284 m->from = n;
285 else
286 pos++;
287 m->index = pos;
288 Done:
289 if (!copied)
290 copied = err;
291 else {
292 *ppos += copied;
293 m->read_pos += copied;
295 file->f_version = m->version;
296 mutex_unlock(&m->lock);
297 return copied;
298 Enomem:
299 err = -ENOMEM;
300 goto Done;
301 Efault:
302 err = -EFAULT;
303 goto Done;
305 EXPORT_SYMBOL(seq_read);
308 * seq_lseek - ->llseek() method for sequential files.
309 * @file: the file in question
310 * @offset: new position
311 * @whence: 0 for absolute, 1 for relative position
313 * Ready-made ->f_op->llseek()
315 loff_t seq_lseek(struct file *file, loff_t offset, int whence)
317 struct seq_file *m = file->private_data;
318 loff_t retval = -EINVAL;
320 mutex_lock(&m->lock);
321 m->version = file->f_version;
322 switch (whence) {
323 case SEEK_CUR:
324 offset += file->f_pos;
325 case SEEK_SET:
326 if (offset < 0)
327 break;
328 retval = offset;
329 if (offset != m->read_pos) {
330 while ((retval = traverse(m, offset)) == -EAGAIN)
332 if (retval) {
333 /* with extreme prejudice... */
334 file->f_pos = 0;
335 m->read_pos = 0;
336 m->version = 0;
337 m->index = 0;
338 m->count = 0;
339 } else {
340 m->read_pos = offset;
341 retval = file->f_pos = offset;
343 } else {
344 file->f_pos = offset;
347 file->f_version = m->version;
348 mutex_unlock(&m->lock);
349 return retval;
351 EXPORT_SYMBOL(seq_lseek);
354 * seq_release - free the structures associated with sequential file.
355 * @file: file in question
356 * @inode: its inode
358 * Frees the structures associated with sequential file; can be used
359 * as ->f_op->release() if you don't have private data to destroy.
361 int seq_release(struct inode *inode, struct file *file)
363 struct seq_file *m = file->private_data;
364 kvfree(m->buf);
365 kfree(m);
366 return 0;
368 EXPORT_SYMBOL(seq_release);
371 * seq_escape - print string into buffer, escaping some characters
372 * @m: target buffer
373 * @s: string
374 * @esc: set of characters that need escaping
376 * Puts string into buffer, replacing each occurrence of character from
377 * @esc with usual octal escape.
378 * Use seq_has_overflowed() to check for errors.
380 void seq_escape(struct seq_file *m, const char *s, const char *esc)
382 char *buf;
383 size_t size = seq_get_buf(m, &buf);
384 int ret;
386 ret = string_escape_str(s, buf, size, ESCAPE_OCTAL, esc);
387 seq_commit(m, ret < size ? ret : -1);
389 EXPORT_SYMBOL(seq_escape);
391 void seq_vprintf(struct seq_file *m, const char *f, va_list args)
393 int len;
395 if (m->count < m->size) {
396 len = vsnprintf(m->buf + m->count, m->size - m->count, f, args);
397 if (m->count + len < m->size) {
398 m->count += len;
399 return;
402 seq_set_overflow(m);
404 EXPORT_SYMBOL(seq_vprintf);
406 void seq_printf(struct seq_file *m, const char *f, ...)
408 va_list args;
410 va_start(args, f);
411 seq_vprintf(m, f, args);
412 va_end(args);
414 EXPORT_SYMBOL(seq_printf);
417 * mangle_path - mangle and copy path to buffer beginning
418 * @s: buffer start
419 * @p: beginning of path in above buffer
420 * @esc: set of characters that need escaping
422 * Copy the path from @p to @s, replacing each occurrence of character from
423 * @esc with usual octal escape.
424 * Returns pointer past last written character in @s, or NULL in case of
425 * failure.
427 char *mangle_path(char *s, const char *p, const char *esc)
429 while (s <= p) {
430 char c = *p++;
431 if (!c) {
432 return s;
433 } else if (!strchr(esc, c)) {
434 *s++ = c;
435 } else if (s + 4 > p) {
436 break;
437 } else {
438 *s++ = '\\';
439 *s++ = '0' + ((c & 0300) >> 6);
440 *s++ = '0' + ((c & 070) >> 3);
441 *s++ = '0' + (c & 07);
444 return NULL;
446 EXPORT_SYMBOL(mangle_path);
449 * seq_path - seq_file interface to print a pathname
450 * @m: the seq_file handle
451 * @path: the struct path to print
452 * @esc: set of characters to escape in the output
454 * return the absolute path of 'path', as represented by the
455 * dentry / mnt pair in the path parameter.
457 int seq_path(struct seq_file *m, const struct path *path, const char *esc)
459 char *buf;
460 size_t size = seq_get_buf(m, &buf);
461 int res = -1;
463 if (size) {
464 char *p = d_path(path, buf, size);
465 if (!IS_ERR(p)) {
466 char *end = mangle_path(buf, p, esc);
467 if (end)
468 res = end - buf;
471 seq_commit(m, res);
473 return res;
475 EXPORT_SYMBOL(seq_path);
478 * seq_file_path - seq_file interface to print a pathname of a file
479 * @m: the seq_file handle
480 * @file: the struct file to print
481 * @esc: set of characters to escape in the output
483 * return the absolute path to the file.
485 int seq_file_path(struct seq_file *m, struct file *file, const char *esc)
487 return seq_path(m, &file->f_path, esc);
489 EXPORT_SYMBOL(seq_file_path);
492 * Same as seq_path, but relative to supplied root.
494 int seq_path_root(struct seq_file *m, const struct path *path,
495 const struct path *root, const char *esc)
497 char *buf;
498 size_t size = seq_get_buf(m, &buf);
499 int res = -ENAMETOOLONG;
501 if (size) {
502 char *p;
504 p = __d_path(path, root, buf, size);
505 if (!p)
506 return SEQ_SKIP;
507 res = PTR_ERR(p);
508 if (!IS_ERR(p)) {
509 char *end = mangle_path(buf, p, esc);
510 if (end)
511 res = end - buf;
512 else
513 res = -ENAMETOOLONG;
516 seq_commit(m, res);
518 return res < 0 && res != -ENAMETOOLONG ? res : 0;
522 * returns the path of the 'dentry' from the root of its filesystem.
524 int seq_dentry(struct seq_file *m, struct dentry *dentry, const char *esc)
526 char *buf;
527 size_t size = seq_get_buf(m, &buf);
528 int res = -1;
530 if (size) {
531 char *p = dentry_path(dentry, buf, size);
532 if (!IS_ERR(p)) {
533 char *end = mangle_path(buf, p, esc);
534 if (end)
535 res = end - buf;
538 seq_commit(m, res);
540 return res;
542 EXPORT_SYMBOL(seq_dentry);
544 static void *single_start(struct seq_file *p, loff_t *pos)
546 return NULL + (*pos == 0);
549 static void *single_next(struct seq_file *p, void *v, loff_t *pos)
551 ++*pos;
552 return NULL;
555 static void single_stop(struct seq_file *p, void *v)
559 int single_open(struct file *file, int (*show)(struct seq_file *, void *),
560 void *data)
562 struct seq_operations *op = kmalloc(sizeof(*op), GFP_KERNEL);
563 int res = -ENOMEM;
565 if (op) {
566 op->start = single_start;
567 op->next = single_next;
568 op->stop = single_stop;
569 op->show = show;
570 res = seq_open(file, op);
571 if (!res)
572 ((struct seq_file *)file->private_data)->private = data;
573 else
574 kfree(op);
576 return res;
578 EXPORT_SYMBOL(single_open);
580 int single_open_size(struct file *file, int (*show)(struct seq_file *, void *),
581 void *data, size_t size)
583 char *buf = seq_buf_alloc(size);
584 int ret;
585 if (!buf)
586 return -ENOMEM;
587 ret = single_open(file, show, data);
588 if (ret) {
589 kvfree(buf);
590 return ret;
592 ((struct seq_file *)file->private_data)->buf = buf;
593 ((struct seq_file *)file->private_data)->size = size;
594 return 0;
596 EXPORT_SYMBOL(single_open_size);
598 int single_release(struct inode *inode, struct file *file)
600 const struct seq_operations *op = ((struct seq_file *)file->private_data)->op;
601 int res = seq_release(inode, file);
602 kfree(op);
603 return res;
605 EXPORT_SYMBOL(single_release);
607 int seq_release_private(struct inode *inode, struct file *file)
609 struct seq_file *seq = file->private_data;
611 kfree(seq->private);
612 seq->private = NULL;
613 return seq_release(inode, file);
615 EXPORT_SYMBOL(seq_release_private);
617 void *__seq_open_private(struct file *f, const struct seq_operations *ops,
618 int psize)
620 int rc;
621 void *private;
622 struct seq_file *seq;
624 private = kzalloc(psize, GFP_KERNEL);
625 if (private == NULL)
626 goto out;
628 rc = seq_open(f, ops);
629 if (rc < 0)
630 goto out_free;
632 seq = f->private_data;
633 seq->private = private;
634 return private;
636 out_free:
637 kfree(private);
638 out:
639 return NULL;
641 EXPORT_SYMBOL(__seq_open_private);
643 int seq_open_private(struct file *filp, const struct seq_operations *ops,
644 int psize)
646 return __seq_open_private(filp, ops, psize) ? 0 : -ENOMEM;
648 EXPORT_SYMBOL(seq_open_private);
650 void seq_putc(struct seq_file *m, char c)
652 if (m->count >= m->size)
653 return;
655 m->buf[m->count++] = c;
657 EXPORT_SYMBOL(seq_putc);
659 void seq_puts(struct seq_file *m, const char *s)
661 int len = strlen(s);
663 if (m->count + len >= m->size) {
664 seq_set_overflow(m);
665 return;
667 memcpy(m->buf + m->count, s, len);
668 m->count += len;
670 EXPORT_SYMBOL(seq_puts);
673 * A helper routine for putting decimal numbers without rich format of printf().
674 * only 'unsigned long long' is supported.
675 * This routine will put strlen(delimiter) + number into seq_file.
676 * This routine is very quick when you show lots of numbers.
677 * In usual cases, it will be better to use seq_printf(). It's easier to read.
679 void seq_put_decimal_ull(struct seq_file *m, const char *delimiter,
680 unsigned long long num)
682 int len;
684 if (m->count + 2 >= m->size) /* we'll write 2 bytes at least */
685 goto overflow;
687 len = strlen(delimiter);
688 if (m->count + len >= m->size)
689 goto overflow;
691 memcpy(m->buf + m->count, delimiter, len);
692 m->count += len;
694 if (m->count + 1 >= m->size)
695 goto overflow;
697 if (num < 10) {
698 m->buf[m->count++] = num + '0';
699 return;
702 len = num_to_str(m->buf + m->count, m->size - m->count, num);
703 if (!len)
704 goto overflow;
706 m->count += len;
707 return;
709 overflow:
710 seq_set_overflow(m);
712 EXPORT_SYMBOL(seq_put_decimal_ull);
714 void seq_put_decimal_ll(struct seq_file *m, const char *delimiter, long long num)
716 int len;
718 if (m->count + 3 >= m->size) /* we'll write 2 bytes at least */
719 goto overflow;
721 len = strlen(delimiter);
722 if (m->count + len >= m->size)
723 goto overflow;
725 memcpy(m->buf + m->count, delimiter, len);
726 m->count += len;
728 if (m->count + 2 >= m->size)
729 goto overflow;
731 if (num < 0) {
732 m->buf[m->count++] = '-';
733 num = -num;
736 if (num < 10) {
737 m->buf[m->count++] = num + '0';
738 return;
741 len = num_to_str(m->buf + m->count, m->size - m->count, num);
742 if (!len)
743 goto overflow;
745 m->count += len;
746 return;
748 overflow:
749 seq_set_overflow(m);
751 EXPORT_SYMBOL(seq_put_decimal_ll);
754 * seq_write - write arbitrary data to buffer
755 * @seq: seq_file identifying the buffer to which data should be written
756 * @data: data address
757 * @len: number of bytes
759 * Return 0 on success, non-zero otherwise.
761 int seq_write(struct seq_file *seq, const void *data, size_t len)
763 if (seq->count + len < seq->size) {
764 memcpy(seq->buf + seq->count, data, len);
765 seq->count += len;
766 return 0;
768 seq_set_overflow(seq);
769 return -1;
771 EXPORT_SYMBOL(seq_write);
774 * seq_pad - write padding spaces to buffer
775 * @m: seq_file identifying the buffer to which data should be written
776 * @c: the byte to append after padding if non-zero
778 void seq_pad(struct seq_file *m, char c)
780 int size = m->pad_until - m->count;
781 if (size > 0)
782 seq_printf(m, "%*s", size, "");
783 if (c)
784 seq_putc(m, c);
786 EXPORT_SYMBOL(seq_pad);
788 /* A complete analogue of print_hex_dump() */
789 void seq_hex_dump(struct seq_file *m, const char *prefix_str, int prefix_type,
790 int rowsize, int groupsize, const void *buf, size_t len,
791 bool ascii)
793 const u8 *ptr = buf;
794 int i, linelen, remaining = len;
795 char *buffer;
796 size_t size;
797 int ret;
799 if (rowsize != 16 && rowsize != 32)
800 rowsize = 16;
802 for (i = 0; i < len && !seq_has_overflowed(m); i += rowsize) {
803 linelen = min(remaining, rowsize);
804 remaining -= rowsize;
806 switch (prefix_type) {
807 case DUMP_PREFIX_ADDRESS:
808 seq_printf(m, "%s%p: ", prefix_str, ptr + i);
809 break;
810 case DUMP_PREFIX_OFFSET:
811 seq_printf(m, "%s%.8x: ", prefix_str, i);
812 break;
813 default:
814 seq_printf(m, "%s", prefix_str);
815 break;
818 size = seq_get_buf(m, &buffer);
819 ret = hex_dump_to_buffer(ptr + i, linelen, rowsize, groupsize,
820 buffer, size, ascii);
821 seq_commit(m, ret < size ? ret : -1);
823 seq_putc(m, '\n');
826 EXPORT_SYMBOL(seq_hex_dump);
828 struct list_head *seq_list_start(struct list_head *head, loff_t pos)
830 struct list_head *lh;
832 list_for_each(lh, head)
833 if (pos-- == 0)
834 return lh;
836 return NULL;
838 EXPORT_SYMBOL(seq_list_start);
840 struct list_head *seq_list_start_head(struct list_head *head, loff_t pos)
842 if (!pos)
843 return head;
845 return seq_list_start(head, pos - 1);
847 EXPORT_SYMBOL(seq_list_start_head);
849 struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos)
851 struct list_head *lh;
853 lh = ((struct list_head *)v)->next;
854 ++*ppos;
855 return lh == head ? NULL : lh;
857 EXPORT_SYMBOL(seq_list_next);
860 * seq_hlist_start - start an iteration of a hlist
861 * @head: the head of the hlist
862 * @pos: the start position of the sequence
864 * Called at seq_file->op->start().
866 struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos)
868 struct hlist_node *node;
870 hlist_for_each(node, head)
871 if (pos-- == 0)
872 return node;
873 return NULL;
875 EXPORT_SYMBOL(seq_hlist_start);
878 * seq_hlist_start_head - start an iteration of a hlist
879 * @head: the head of the hlist
880 * @pos: the start position of the sequence
882 * Called at seq_file->op->start(). Call this function if you want to
883 * print a header at the top of the output.
885 struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos)
887 if (!pos)
888 return SEQ_START_TOKEN;
890 return seq_hlist_start(head, pos - 1);
892 EXPORT_SYMBOL(seq_hlist_start_head);
895 * seq_hlist_next - move to the next position of the hlist
896 * @v: the current iterator
897 * @head: the head of the hlist
898 * @ppos: the current position
900 * Called at seq_file->op->next().
902 struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head,
903 loff_t *ppos)
905 struct hlist_node *node = v;
907 ++*ppos;
908 if (v == SEQ_START_TOKEN)
909 return head->first;
910 else
911 return node->next;
913 EXPORT_SYMBOL(seq_hlist_next);
916 * seq_hlist_start_rcu - start an iteration of a hlist protected by RCU
917 * @head: the head of the hlist
918 * @pos: the start position of the sequence
920 * Called at seq_file->op->start().
922 * This list-traversal primitive may safely run concurrently with
923 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
924 * as long as the traversal is guarded by rcu_read_lock().
926 struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head,
927 loff_t pos)
929 struct hlist_node *node;
931 __hlist_for_each_rcu(node, head)
932 if (pos-- == 0)
933 return node;
934 return NULL;
936 EXPORT_SYMBOL(seq_hlist_start_rcu);
939 * seq_hlist_start_head_rcu - start an iteration of a hlist protected by RCU
940 * @head: the head of the hlist
941 * @pos: the start position of the sequence
943 * Called at seq_file->op->start(). Call this function if you want to
944 * print a header at the top of the output.
946 * This list-traversal primitive may safely run concurrently with
947 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
948 * as long as the traversal is guarded by rcu_read_lock().
950 struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head,
951 loff_t pos)
953 if (!pos)
954 return SEQ_START_TOKEN;
956 return seq_hlist_start_rcu(head, pos - 1);
958 EXPORT_SYMBOL(seq_hlist_start_head_rcu);
961 * seq_hlist_next_rcu - move to the next position of the hlist protected by RCU
962 * @v: the current iterator
963 * @head: the head of the hlist
964 * @ppos: the current position
966 * Called at seq_file->op->next().
968 * This list-traversal primitive may safely run concurrently with
969 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
970 * as long as the traversal is guarded by rcu_read_lock().
972 struct hlist_node *seq_hlist_next_rcu(void *v,
973 struct hlist_head *head,
974 loff_t *ppos)
976 struct hlist_node *node = v;
978 ++*ppos;
979 if (v == SEQ_START_TOKEN)
980 return rcu_dereference(head->first);
981 else
982 return rcu_dereference(node->next);
984 EXPORT_SYMBOL(seq_hlist_next_rcu);
987 * seq_hlist_start_precpu - start an iteration of a percpu hlist array
988 * @head: pointer to percpu array of struct hlist_heads
989 * @cpu: pointer to cpu "cursor"
990 * @pos: start position of sequence
992 * Called at seq_file->op->start().
994 struct hlist_node *
995 seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos)
997 struct hlist_node *node;
999 for_each_possible_cpu(*cpu) {
1000 hlist_for_each(node, per_cpu_ptr(head, *cpu)) {
1001 if (pos-- == 0)
1002 return node;
1005 return NULL;
1007 EXPORT_SYMBOL(seq_hlist_start_percpu);
1010 * seq_hlist_next_percpu - move to the next position of the percpu hlist array
1011 * @v: pointer to current hlist_node
1012 * @head: pointer to percpu array of struct hlist_heads
1013 * @cpu: pointer to cpu "cursor"
1014 * @pos: start position of sequence
1016 * Called at seq_file->op->next().
1018 struct hlist_node *
1019 seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head,
1020 int *cpu, loff_t *pos)
1022 struct hlist_node *node = v;
1024 ++*pos;
1026 if (node->next)
1027 return node->next;
1029 for (*cpu = cpumask_next(*cpu, cpu_possible_mask); *cpu < nr_cpu_ids;
1030 *cpu = cpumask_next(*cpu, cpu_possible_mask)) {
1031 struct hlist_head *bucket = per_cpu_ptr(head, *cpu);
1033 if (!hlist_empty(bucket))
1034 return bucket->first;
1036 return NULL;
1038 EXPORT_SYMBOL(seq_hlist_next_percpu);