Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / afs / proc.c
blob9c81b8f7eef07dfd5e976768f55edf18ea383329
1 /* proc.c: /proc interface for AFS
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/sched.h>
13 #include <linux/slab.h>
14 #include <linux/module.h>
15 #include <linux/proc_fs.h>
16 #include <linux/seq_file.h>
17 #include "cell.h"
18 #include "volume.h"
19 #include <asm/uaccess.h>
20 #include "internal.h"
22 static struct proc_dir_entry *proc_afs;
25 static int afs_proc_cells_open(struct inode *inode, struct file *file);
26 static void *afs_proc_cells_start(struct seq_file *p, loff_t *pos);
27 static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos);
28 static void afs_proc_cells_stop(struct seq_file *p, void *v);
29 static int afs_proc_cells_show(struct seq_file *m, void *v);
30 static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,
31 size_t size, loff_t *_pos);
33 static struct seq_operations afs_proc_cells_ops = {
34 .start = afs_proc_cells_start,
35 .next = afs_proc_cells_next,
36 .stop = afs_proc_cells_stop,
37 .show = afs_proc_cells_show,
40 static struct file_operations afs_proc_cells_fops = {
41 .open = afs_proc_cells_open,
42 .read = seq_read,
43 .write = afs_proc_cells_write,
44 .llseek = seq_lseek,
45 .release = seq_release,
48 static int afs_proc_rootcell_open(struct inode *inode, struct file *file);
49 static int afs_proc_rootcell_release(struct inode *inode, struct file *file);
50 static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
51 size_t size, loff_t *_pos);
52 static ssize_t afs_proc_rootcell_write(struct file *file,
53 const char __user *buf,
54 size_t size, loff_t *_pos);
56 static struct file_operations afs_proc_rootcell_fops = {
57 .open = afs_proc_rootcell_open,
58 .read = afs_proc_rootcell_read,
59 .write = afs_proc_rootcell_write,
60 .llseek = no_llseek,
61 .release = afs_proc_rootcell_release
64 static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file);
65 static int afs_proc_cell_volumes_release(struct inode *inode,
66 struct file *file);
67 static void *afs_proc_cell_volumes_start(struct seq_file *p, loff_t *pos);
68 static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,
69 loff_t *pos);
70 static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v);
71 static int afs_proc_cell_volumes_show(struct seq_file *m, void *v);
73 static struct seq_operations afs_proc_cell_volumes_ops = {
74 .start = afs_proc_cell_volumes_start,
75 .next = afs_proc_cell_volumes_next,
76 .stop = afs_proc_cell_volumes_stop,
77 .show = afs_proc_cell_volumes_show,
80 static struct file_operations afs_proc_cell_volumes_fops = {
81 .open = afs_proc_cell_volumes_open,
82 .read = seq_read,
83 .llseek = seq_lseek,
84 .release = afs_proc_cell_volumes_release,
87 static int afs_proc_cell_vlservers_open(struct inode *inode,
88 struct file *file);
89 static int afs_proc_cell_vlservers_release(struct inode *inode,
90 struct file *file);
91 static void *afs_proc_cell_vlservers_start(struct seq_file *p, loff_t *pos);
92 static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,
93 loff_t *pos);
94 static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v);
95 static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v);
97 static struct seq_operations afs_proc_cell_vlservers_ops = {
98 .start = afs_proc_cell_vlservers_start,
99 .next = afs_proc_cell_vlservers_next,
100 .stop = afs_proc_cell_vlservers_stop,
101 .show = afs_proc_cell_vlservers_show,
104 static struct file_operations afs_proc_cell_vlservers_fops = {
105 .open = afs_proc_cell_vlservers_open,
106 .read = seq_read,
107 .llseek = seq_lseek,
108 .release = afs_proc_cell_vlservers_release,
111 static int afs_proc_cell_servers_open(struct inode *inode, struct file *file);
112 static int afs_proc_cell_servers_release(struct inode *inode,
113 struct file *file);
114 static void *afs_proc_cell_servers_start(struct seq_file *p, loff_t *pos);
115 static void *afs_proc_cell_servers_next(struct seq_file *p, void *v,
116 loff_t *pos);
117 static void afs_proc_cell_servers_stop(struct seq_file *p, void *v);
118 static int afs_proc_cell_servers_show(struct seq_file *m, void *v);
120 static struct seq_operations afs_proc_cell_servers_ops = {
121 .start = afs_proc_cell_servers_start,
122 .next = afs_proc_cell_servers_next,
123 .stop = afs_proc_cell_servers_stop,
124 .show = afs_proc_cell_servers_show,
127 static struct file_operations afs_proc_cell_servers_fops = {
128 .open = afs_proc_cell_servers_open,
129 .read = seq_read,
130 .llseek = seq_lseek,
131 .release = afs_proc_cell_servers_release,
134 /*****************************************************************************/
136 * initialise the /proc/fs/afs/ directory
138 int afs_proc_init(void)
140 struct proc_dir_entry *p;
142 _enter("");
144 proc_afs = proc_mkdir("fs/afs", NULL);
145 if (!proc_afs)
146 goto error;
147 proc_afs->owner = THIS_MODULE;
149 p = create_proc_entry("cells", 0, proc_afs);
150 if (!p)
151 goto error_proc;
152 p->proc_fops = &afs_proc_cells_fops;
153 p->owner = THIS_MODULE;
155 p = create_proc_entry("rootcell", 0, proc_afs);
156 if (!p)
157 goto error_cells;
158 p->proc_fops = &afs_proc_rootcell_fops;
159 p->owner = THIS_MODULE;
161 _leave(" = 0");
162 return 0;
164 error_cells:
165 remove_proc_entry("cells", proc_afs);
166 error_proc:
167 remove_proc_entry("fs/afs", NULL);
168 error:
169 _leave(" = -ENOMEM");
170 return -ENOMEM;
172 } /* end afs_proc_init() */
174 /*****************************************************************************/
176 * clean up the /proc/fs/afs/ directory
178 void afs_proc_cleanup(void)
180 remove_proc_entry("cells", proc_afs);
182 remove_proc_entry("fs/afs", NULL);
184 } /* end afs_proc_cleanup() */
186 /*****************************************************************************/
188 * open "/proc/fs/afs/cells" which provides a summary of extant cells
190 static int afs_proc_cells_open(struct inode *inode, struct file *file)
192 struct seq_file *m;
193 int ret;
195 ret = seq_open(file, &afs_proc_cells_ops);
196 if (ret < 0)
197 return ret;
199 m = file->private_data;
200 m->private = PDE(inode)->data;
202 return 0;
203 } /* end afs_proc_cells_open() */
205 /*****************************************************************************/
207 * set up the iterator to start reading from the cells list and return the
208 * first item
210 static void *afs_proc_cells_start(struct seq_file *m, loff_t *_pos)
212 struct list_head *_p;
213 loff_t pos = *_pos;
215 /* lock the list against modification */
216 down_read(&afs_proc_cells_sem);
218 /* allow for the header line */
219 if (!pos)
220 return (void *) 1;
221 pos--;
223 /* find the n'th element in the list */
224 list_for_each(_p, &afs_proc_cells)
225 if (!pos--)
226 break;
228 return _p != &afs_proc_cells ? _p : NULL;
229 } /* end afs_proc_cells_start() */
231 /*****************************************************************************/
233 * move to next cell in cells list
235 static void *afs_proc_cells_next(struct seq_file *p, void *v, loff_t *pos)
237 struct list_head *_p;
239 (*pos)++;
241 _p = v;
242 _p = v == (void *) 1 ? afs_proc_cells.next : _p->next;
244 return _p != &afs_proc_cells ? _p : NULL;
245 } /* end afs_proc_cells_next() */
247 /*****************************************************************************/
249 * clean up after reading from the cells list
251 static void afs_proc_cells_stop(struct seq_file *p, void *v)
253 up_read(&afs_proc_cells_sem);
255 } /* end afs_proc_cells_stop() */
257 /*****************************************************************************/
259 * display a header line followed by a load of cell lines
261 static int afs_proc_cells_show(struct seq_file *m, void *v)
263 struct afs_cell *cell = list_entry(v, struct afs_cell, proc_link);
265 /* display header on line 1 */
266 if (v == (void *) 1) {
267 seq_puts(m, "USE NAME\n");
268 return 0;
271 /* display one cell per line on subsequent lines */
272 seq_printf(m, "%3d %s\n", atomic_read(&cell->usage), cell->name);
274 return 0;
275 } /* end afs_proc_cells_show() */
277 /*****************************************************************************/
279 * handle writes to /proc/fs/afs/cells
280 * - to add cells: echo "add <cellname> <IP>[:<IP>][:<IP>]"
282 static ssize_t afs_proc_cells_write(struct file *file, const char __user *buf,
283 size_t size, loff_t *_pos)
285 char *kbuf, *name, *args;
286 int ret;
288 /* start by dragging the command into memory */
289 if (size <= 1 || size >= PAGE_SIZE)
290 return -EINVAL;
292 kbuf = kmalloc(size + 1, GFP_KERNEL);
293 if (!kbuf)
294 return -ENOMEM;
296 ret = -EFAULT;
297 if (copy_from_user(kbuf, buf, size) != 0)
298 goto done;
299 kbuf[size] = 0;
301 /* trim to first NL */
302 name = memchr(kbuf, '\n', size);
303 if (name)
304 *name = 0;
306 /* split into command, name and argslist */
307 name = strchr(kbuf, ' ');
308 if (!name)
309 goto inval;
310 do {
311 *name++ = 0;
312 } while(*name == ' ');
313 if (!*name)
314 goto inval;
316 args = strchr(name, ' ');
317 if (!args)
318 goto inval;
319 do {
320 *args++ = 0;
321 } while(*args == ' ');
322 if (!*args)
323 goto inval;
325 /* determine command to perform */
326 _debug("cmd=%s name=%s args=%s", kbuf, name, args);
328 if (strcmp(kbuf, "add") == 0) {
329 struct afs_cell *cell;
330 ret = afs_cell_create(name, args, &cell);
331 if (ret < 0)
332 goto done;
334 printk("kAFS: Added new cell '%s'\n", name);
336 else {
337 goto inval;
340 ret = size;
342 done:
343 kfree(kbuf);
344 _leave(" = %d", ret);
345 return ret;
347 inval:
348 ret = -EINVAL;
349 printk("kAFS: Invalid Command on /proc/fs/afs/cells file\n");
350 goto done;
351 } /* end afs_proc_cells_write() */
353 /*****************************************************************************/
355 * Stubs for /proc/fs/afs/rootcell
357 static int afs_proc_rootcell_open(struct inode *inode, struct file *file)
359 return 0;
362 static int afs_proc_rootcell_release(struct inode *inode, struct file *file)
364 return 0;
367 static ssize_t afs_proc_rootcell_read(struct file *file, char __user *buf,
368 size_t size, loff_t *_pos)
370 return 0;
373 /*****************************************************************************/
375 * handle writes to /proc/fs/afs/rootcell
376 * - to initialize rootcell: echo "cell.name:192.168.231.14"
378 static ssize_t afs_proc_rootcell_write(struct file *file,
379 const char __user *buf,
380 size_t size, loff_t *_pos)
382 char *kbuf, *s;
383 int ret;
385 /* start by dragging the command into memory */
386 if (size <= 1 || size >= PAGE_SIZE)
387 return -EINVAL;
389 ret = -ENOMEM;
390 kbuf = kmalloc(size + 1, GFP_KERNEL);
391 if (!kbuf)
392 goto nomem;
394 ret = -EFAULT;
395 if (copy_from_user(kbuf, buf, size) != 0)
396 goto infault;
397 kbuf[size] = 0;
399 /* trim to first NL */
400 s = memchr(kbuf, '\n', size);
401 if (s)
402 *s = 0;
404 /* determine command to perform */
405 _debug("rootcell=%s", kbuf);
407 ret = afs_cell_init(kbuf);
408 if (ret >= 0)
409 ret = size; /* consume everything, always */
411 infault:
412 kfree(kbuf);
413 nomem:
414 _leave(" = %d", ret);
415 return ret;
416 } /* end afs_proc_rootcell_write() */
418 /*****************************************************************************/
420 * initialise /proc/fs/afs/<cell>/
422 int afs_proc_cell_setup(struct afs_cell *cell)
424 struct proc_dir_entry *p;
426 _enter("%p{%s}", cell, cell->name);
428 cell->proc_dir = proc_mkdir(cell->name, proc_afs);
429 if (!cell->proc_dir)
430 return -ENOMEM;
432 p = create_proc_entry("servers", 0, cell->proc_dir);
433 if (!p)
434 goto error_proc;
435 p->proc_fops = &afs_proc_cell_servers_fops;
436 p->owner = THIS_MODULE;
437 p->data = cell;
439 p = create_proc_entry("vlservers", 0, cell->proc_dir);
440 if (!p)
441 goto error_servers;
442 p->proc_fops = &afs_proc_cell_vlservers_fops;
443 p->owner = THIS_MODULE;
444 p->data = cell;
446 p = create_proc_entry("volumes", 0, cell->proc_dir);
447 if (!p)
448 goto error_vlservers;
449 p->proc_fops = &afs_proc_cell_volumes_fops;
450 p->owner = THIS_MODULE;
451 p->data = cell;
453 _leave(" = 0");
454 return 0;
456 error_vlservers:
457 remove_proc_entry("vlservers", cell->proc_dir);
458 error_servers:
459 remove_proc_entry("servers", cell->proc_dir);
460 error_proc:
461 remove_proc_entry(cell->name, proc_afs);
462 _leave(" = -ENOMEM");
463 return -ENOMEM;
464 } /* end afs_proc_cell_setup() */
466 /*****************************************************************************/
468 * remove /proc/fs/afs/<cell>/
470 void afs_proc_cell_remove(struct afs_cell *cell)
472 _enter("");
474 remove_proc_entry("volumes", cell->proc_dir);
475 remove_proc_entry("vlservers", cell->proc_dir);
476 remove_proc_entry("servers", cell->proc_dir);
477 remove_proc_entry(cell->name, proc_afs);
479 _leave("");
480 } /* end afs_proc_cell_remove() */
482 /*****************************************************************************/
484 * open "/proc/fs/afs/<cell>/volumes" which provides a summary of extant cells
486 static int afs_proc_cell_volumes_open(struct inode *inode, struct file *file)
488 struct afs_cell *cell;
489 struct seq_file *m;
490 int ret;
492 cell = afs_get_cell_maybe((struct afs_cell **) &PDE(inode)->data);
493 if (!cell)
494 return -ENOENT;
496 ret = seq_open(file, &afs_proc_cell_volumes_ops);
497 if (ret < 0)
498 return ret;
500 m = file->private_data;
501 m->private = cell;
503 return 0;
504 } /* end afs_proc_cell_volumes_open() */
506 /*****************************************************************************/
508 * close the file and release the ref to the cell
510 static int afs_proc_cell_volumes_release(struct inode *inode, struct file *file)
512 struct afs_cell *cell = PDE(inode)->data;
513 int ret;
515 ret = seq_release(inode,file);
517 afs_put_cell(cell);
519 return ret;
520 } /* end afs_proc_cell_volumes_release() */
522 /*****************************************************************************/
524 * set up the iterator to start reading from the cells list and return the
525 * first item
527 static void *afs_proc_cell_volumes_start(struct seq_file *m, loff_t *_pos)
529 struct list_head *_p;
530 struct afs_cell *cell = m->private;
531 loff_t pos = *_pos;
533 _enter("cell=%p pos=%Ld", cell, *_pos);
535 /* lock the list against modification */
536 down_read(&cell->vl_sem);
538 /* allow for the header line */
539 if (!pos)
540 return (void *) 1;
541 pos--;
543 /* find the n'th element in the list */
544 list_for_each(_p, &cell->vl_list)
545 if (!pos--)
546 break;
548 return _p != &cell->vl_list ? _p : NULL;
549 } /* end afs_proc_cell_volumes_start() */
551 /*****************************************************************************/
553 * move to next cell in cells list
555 static void *afs_proc_cell_volumes_next(struct seq_file *p, void *v,
556 loff_t *_pos)
558 struct list_head *_p;
559 struct afs_cell *cell = p->private;
561 _enter("cell=%p pos=%Ld", cell, *_pos);
563 (*_pos)++;
565 _p = v;
566 _p = v == (void *) 1 ? cell->vl_list.next : _p->next;
568 return _p != &cell->vl_list ? _p : NULL;
569 } /* end afs_proc_cell_volumes_next() */
571 /*****************************************************************************/
573 * clean up after reading from the cells list
575 static void afs_proc_cell_volumes_stop(struct seq_file *p, void *v)
577 struct afs_cell *cell = p->private;
579 up_read(&cell->vl_sem);
581 } /* end afs_proc_cell_volumes_stop() */
583 /*****************************************************************************/
585 * display a header line followed by a load of volume lines
587 static int afs_proc_cell_volumes_show(struct seq_file *m, void *v)
589 struct afs_vlocation *vlocation =
590 list_entry(v, struct afs_vlocation, link);
592 /* display header on line 1 */
593 if (v == (void *) 1) {
594 seq_puts(m, "USE VLID[0] VLID[1] VLID[2] NAME\n");
595 return 0;
598 /* display one cell per line on subsequent lines */
599 seq_printf(m, "%3d %08x %08x %08x %s\n",
600 atomic_read(&vlocation->usage),
601 vlocation->vldb.vid[0],
602 vlocation->vldb.vid[1],
603 vlocation->vldb.vid[2],
604 vlocation->vldb.name
607 return 0;
608 } /* end afs_proc_cell_volumes_show() */
610 /*****************************************************************************/
612 * open "/proc/fs/afs/<cell>/vlservers" which provides a list of volume
613 * location server
615 static int afs_proc_cell_vlservers_open(struct inode *inode, struct file *file)
617 struct afs_cell *cell;
618 struct seq_file *m;
619 int ret;
621 cell = afs_get_cell_maybe((struct afs_cell**)&PDE(inode)->data);
622 if (!cell)
623 return -ENOENT;
625 ret = seq_open(file,&afs_proc_cell_vlservers_ops);
626 if (ret<0)
627 return ret;
629 m = file->private_data;
630 m->private = cell;
632 return 0;
633 } /* end afs_proc_cell_vlservers_open() */
635 /*****************************************************************************/
637 * close the file and release the ref to the cell
639 static int afs_proc_cell_vlservers_release(struct inode *inode,
640 struct file *file)
642 struct afs_cell *cell = PDE(inode)->data;
643 int ret;
645 ret = seq_release(inode,file);
647 afs_put_cell(cell);
649 return ret;
650 } /* end afs_proc_cell_vlservers_release() */
652 /*****************************************************************************/
654 * set up the iterator to start reading from the cells list and return the
655 * first item
657 static void *afs_proc_cell_vlservers_start(struct seq_file *m, loff_t *_pos)
659 struct afs_cell *cell = m->private;
660 loff_t pos = *_pos;
662 _enter("cell=%p pos=%Ld", cell, *_pos);
664 /* lock the list against modification */
665 down_read(&cell->vl_sem);
667 /* allow for the header line */
668 if (!pos)
669 return (void *) 1;
670 pos--;
672 if (pos >= cell->vl_naddrs)
673 return NULL;
675 return &cell->vl_addrs[pos];
676 } /* end afs_proc_cell_vlservers_start() */
678 /*****************************************************************************/
680 * move to next cell in cells list
682 static void *afs_proc_cell_vlservers_next(struct seq_file *p, void *v,
683 loff_t *_pos)
685 struct afs_cell *cell = p->private;
686 loff_t pos;
688 _enter("cell=%p{nad=%u} pos=%Ld", cell, cell->vl_naddrs, *_pos);
690 pos = *_pos;
691 (*_pos)++;
692 if (pos >= cell->vl_naddrs)
693 return NULL;
695 return &cell->vl_addrs[pos];
696 } /* end afs_proc_cell_vlservers_next() */
698 /*****************************************************************************/
700 * clean up after reading from the cells list
702 static void afs_proc_cell_vlservers_stop(struct seq_file *p, void *v)
704 struct afs_cell *cell = p->private;
706 up_read(&cell->vl_sem);
708 } /* end afs_proc_cell_vlservers_stop() */
710 /*****************************************************************************/
712 * display a header line followed by a load of volume lines
714 static int afs_proc_cell_vlservers_show(struct seq_file *m, void *v)
716 struct in_addr *addr = v;
718 /* display header on line 1 */
719 if (v == (struct in_addr *) 1) {
720 seq_puts(m, "ADDRESS\n");
721 return 0;
724 /* display one cell per line on subsequent lines */
725 seq_printf(m, "%u.%u.%u.%u\n", NIPQUAD(addr->s_addr));
727 return 0;
728 } /* end afs_proc_cell_vlservers_show() */
730 /*****************************************************************************/
732 * open "/proc/fs/afs/<cell>/servers" which provides a summary of active
733 * servers
735 static int afs_proc_cell_servers_open(struct inode *inode, struct file *file)
737 struct afs_cell *cell;
738 struct seq_file *m;
739 int ret;
741 cell = afs_get_cell_maybe((struct afs_cell **) &PDE(inode)->data);
742 if (!cell)
743 return -ENOENT;
745 ret = seq_open(file, &afs_proc_cell_servers_ops);
746 if (ret < 0)
747 return ret;
749 m = file->private_data;
750 m->private = cell;
752 return 0;
753 } /* end afs_proc_cell_servers_open() */
755 /*****************************************************************************/
757 * close the file and release the ref to the cell
759 static int afs_proc_cell_servers_release(struct inode *inode,
760 struct file *file)
762 struct afs_cell *cell = PDE(inode)->data;
763 int ret;
765 ret = seq_release(inode, file);
767 afs_put_cell(cell);
769 return ret;
770 } /* end afs_proc_cell_servers_release() */
772 /*****************************************************************************/
774 * set up the iterator to start reading from the cells list and return the
775 * first item
777 static void *afs_proc_cell_servers_start(struct seq_file *m, loff_t *_pos)
779 struct list_head *_p;
780 struct afs_cell *cell = m->private;
781 loff_t pos = *_pos;
783 _enter("cell=%p pos=%Ld", cell, *_pos);
785 /* lock the list against modification */
786 read_lock(&cell->sv_lock);
788 /* allow for the header line */
789 if (!pos)
790 return (void *) 1;
791 pos--;
793 /* find the n'th element in the list */
794 list_for_each(_p, &cell->sv_list)
795 if (!pos--)
796 break;
798 return _p != &cell->sv_list ? _p : NULL;
799 } /* end afs_proc_cell_servers_start() */
801 /*****************************************************************************/
803 * move to next cell in cells list
805 static void *afs_proc_cell_servers_next(struct seq_file *p, void *v,
806 loff_t *_pos)
808 struct list_head *_p;
809 struct afs_cell *cell = p->private;
811 _enter("cell=%p pos=%Ld", cell, *_pos);
813 (*_pos)++;
815 _p = v;
816 _p = v == (void *) 1 ? cell->sv_list.next : _p->next;
818 return _p != &cell->sv_list ? _p : NULL;
819 } /* end afs_proc_cell_servers_next() */
821 /*****************************************************************************/
823 * clean up after reading from the cells list
825 static void afs_proc_cell_servers_stop(struct seq_file *p, void *v)
827 struct afs_cell *cell = p->private;
829 read_unlock(&cell->sv_lock);
831 } /* end afs_proc_cell_servers_stop() */
833 /*****************************************************************************/
835 * display a header line followed by a load of volume lines
837 static int afs_proc_cell_servers_show(struct seq_file *m, void *v)
839 struct afs_server *server = list_entry(v, struct afs_server, link);
840 char ipaddr[20];
842 /* display header on line 1 */
843 if (v == (void *) 1) {
844 seq_puts(m, "USE ADDR STATE\n");
845 return 0;
848 /* display one cell per line on subsequent lines */
849 sprintf(ipaddr, "%u.%u.%u.%u", NIPQUAD(server->addr));
850 seq_printf(m, "%3d %-15.15s %5d\n",
851 atomic_read(&server->usage),
852 ipaddr,
853 server->fs_state
856 return 0;
857 } /* end afs_proc_cell_servers_show() */