diff options
Diffstat (limited to 'include/linux/umsdos_fs_i.h')
-rw-r--r-- | include/linux/umsdos_fs_i.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/include/linux/umsdos_fs_i.h b/include/linux/umsdos_fs_i.h index e3af5e921..96135ec0f 100644 --- a/include/linux/umsdos_fs_i.h +++ b/include/linux/umsdos_fs_i.h @@ -28,9 +28,8 @@ * * For directory, we also have a reference to the inode of its * own EMD file. Also, we have dir_locking_info to help synchronise - * file creation and file lookup. This data is sharing space with - * the pipe_inode_info not used by directory. See also msdos_fs_i.h - * for more information about pipe_inode_info and msdos_inode_info. + * file creation and file lookup. See also msdos_fs_i.h for more + * information about msdos_inode_info. * * Special file and fifo do have an inode which correspond to an * empty MSDOS file. @@ -38,11 +37,6 @@ * symlink are processed mostly like regular file. The content is the * link. * - * fifos add there own extension to the inode. I have reserved some - * space for fifos side by side with msdos_inode_info. This is just - * to for the show, because msdos_inode_info already include the - * pipe_inode_info. - * * The UMSDOS specific extension is placed after the union. */ @@ -60,7 +54,6 @@ struct dir_locking_info { struct umsdos_inode_info { union { struct msdos_inode_info msdos_info; - struct pipe_inode_info pipe_info; struct dir_locking_info dir_info; } u; int i_patched; /* Inode has been patched */ |