search for: smb_dir_inode_operations

Displaying 2 results from an estimated 2 matches for "smb_dir_inode_operations".

1999 May 14
1
Linux-2.3.1 fs/smbfs/inode.c
...inode.c seemed to have a parse error, missing a semi-colon. Here is the patch for it. You were listed as the maintainer for smbfs. Adam --- linux/fs/smbfs/inode.c Fri May 14 13:19:23 1999 +++ linux-2.3.1/fs/smbfs/inode.c Fri May 14 13:23:43 1999 @@ -88,7 +88,7 @@ result->i_op = &smb_dir_inode_operations; else result->i_op = NULL; - insert_inode_hash(result) + insert_inode_hash(result); return result; }
1998 Sep 04
0
Linux SMB Mount utils patch
...efine SMB_FIX_DIRATTR 0x0004 /* Use find_first for getattr */ + +/* linux/fs/smbfs/mmap.c */ +int smb_mmap(struct file *, struct vm_area_struct *); + +/* linux/fs/smbfs/file.c */ +extern struct inode_operations smb_file_inode_operations; + +/* linux/fs/smbfs/dir.c */ +extern struct inode_operations smb_dir_inode_operations; +void smb_renew_times(struct dentry *); + +/* linux/fs/smbfs/ioctl.c */ +int smb_ioctl (struct inode *, struct file *, unsigned int, unsigned long); + +/* linux/fs/smbfs/inode.c */ +struct super_block *smb_read_super(struct super_block *, void *, int); +void smb_get_inode_attr(struct inode *, stru...