]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - net/tipc/dbg.h
[PATCH] fs/dcache.c: update comment of d_validate()
[linux-2.6-omap-h63xx.git] / net / tipc / dbg.h
index 6b00062bf04099657b70c34cd8b69f3bb9a21b33..5ef1bc8f64ef186b5db3dfedbe839fe25ef4c52e 100644 (file)
  * @buf: pointer to character array containing print buffer contents
  * @size: size of character array
  * @crs: pointer to first unused space in character array (i.e. final NUL)
- * @next: used to link print buffers when printing to more than one at a time
+ * @echo: echo output to system console if non-zero
  */
 
 struct print_buf {
        char *buf;
        u32 size;
        char *crs;
-       struct print_buf *next;
+       int echo;
 };
 
 #define TIPC_PB_MIN_SIZE 64    /* minimum size for a print buffer's array */