diff options
author | Steve French <sfrench@us.ibm.com> | 2005-07-21 18:20:28 -0400 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2005-07-21 18:20:28 -0400 |
commit | eda3c029899cbf435d76fea43b7e1404439ccec9 (patch) | |
tree | 334ad2504575c4c22247e62c4add3bb2cb54f502 /fs/cifs/readdir.c | |
parent | 076fb01e8238b7e5d68ba0d729c0ff7716d1d8ec (diff) |
[CIFS] Add compat with SFU (part 2)
Creating FIFOs to non-Unix servers (with cifs mounts for which sfu option
was specified) now works.
Signed-off-by: Steve French (sfrench@us.ibm.com)
Thanks to Martin Koeppe for his assistance
Diffstat (limited to 'fs/cifs/readdir.c')
-rw-r--r-- | fs/cifs/readdir.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fs/cifs/readdir.c b/fs/cifs/readdir.c index 42310281871c..dec3c9dd04d7 100644 --- a/fs/cifs/readdir.c +++ b/fs/cifs/readdir.c | |||
@@ -148,6 +148,13 @@ static void fill_in_inode(struct inode *tmp_inode, | |||
148 | tmp_inode->i_mode = cifs_sb->mnt_dir_mode; | 148 | tmp_inode->i_mode = cifs_sb->mnt_dir_mode; |
149 | } | 149 | } |
150 | tmp_inode->i_mode |= S_IFDIR; | 150 | tmp_inode->i_mode |= S_IFDIR; |
151 | } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && | ||
152 | (attr & ATTR_SYSTEM) && (end_of_file == 0)) { | ||
153 | *pobject_type = DT_FIFO; | ||
154 | tmp_inode->i_mode |= S_IFIFO; | ||
155 | /* BB Finish for SFU style symlinks and devies */ | ||
156 | /* } else if ((cifs_sb->mnt_cifs_flags & CIFS_MOUNT_UNX_EMUL) && | ||
157 | (attr & ATTR_SYSTEM) && ) { */ | ||
151 | /* we no longer mark these because we could not follow them */ | 158 | /* we no longer mark these because we could not follow them */ |
152 | /* } else if (attr & ATTR_REPARSE) { | 159 | /* } else if (attr & ATTR_REPARSE) { |
153 | *pobject_type = DT_LNK; | 160 | *pobject_type = DT_LNK; |