@@ -40,6 +40,7 @@
#define CIFS_MOUNT_FSCACHE 0x8000 /* local caching enabled */
#define CIFS_MOUNT_MF_SYMLINKS 0x10000 /* Minshall+French Symlinks enabled */
#define CIFS_MOUNT_MULTIUSER 0x20000 /* multiuser mount */
+#define CIFS_MOUNT_32BIT_INODES 0x40000 /* squash to 32-bits */
struct cifs_sb_info {
struct rb_root tlink_tree;
@@ -473,6 +473,10 @@ cifs_show_options(struct seq_file *s, struct vfsmount *m)
seq_printf(s, ",mfsymlinks");
if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_FSCACHE)
seq_printf(s, ",fsc");
+ if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_32BIT_INODES)
+ seq_printf(s, ",noinode64");
+ else
+ seq_printf(s, ",inode64");
seq_printf(s, ",rsize=%d", cifs_sb->rsize);
seq_printf(s, ",wsize=%d", cifs_sb->wsize);
@@ -22,6 +22,8 @@
#ifndef _CIFSFS_H
#define _CIFSFS_H
+#include <linux/compat.h>
+
#define ROOT_I 2
/*
@@ -37,6 +39,20 @@ cifs_uniqueid_to_ino_t(u64 fileid)
return ino;
}
+static inline u64
+cifs_compat_user_ino64(u64 fileid)
+{
+#ifdef CONFIG_COMPAT
+ compat_ulong_t ino;
+#else
+ unsigned long ino;
+#endif
+ ino = fileid;
+ if (sizeof(ino) < sizeof(u64))
+ ino ^= fileid >> (sizeof(u64)-sizeof(ino)) * 8;
+ return ino;
+}
+
extern struct file_system_type cifs_fs_type;
extern const struct address_space_operations cifs_addr_ops;
extern const struct address_space_operations cifs_addr_ops_smallbuf;
@@ -101,6 +101,7 @@ struct smb_vol {
bool fsc:1; /* enable fscache */
bool mfsymlinks:1; /* use Minshall+French Symlinks */
bool multiuser:1;
+ bool inode64:1;
unsigned int rsize;
unsigned int wsize;
bool sockopt_tcp_nodelay:1;
@@ -836,6 +837,8 @@ cifs_parse_mount_options(char *options, const char *devname,
vol->posix_paths = 1;
/* default to using server inode numbers where available */
vol->server_ino = 1;
+ /* default to support 64-bit inode numbers */
+ vol->inode64 = 1;
vol->actimeo = CIFS_DEF_ACTIMEO;
@@ -1368,6 +1371,10 @@ cifs_parse_mount_options(char *options, const char *devname,
vol->mfsymlinks = true;
} else if (strnicmp(data, "multiuser", 8) == 0) {
vol->multiuser = true;
+ } else if (strnicmp(data, "inode64", 7) == 0) {
+ vol->inode64 = 1;
+ } else if (strnicmp(data, "noinode64", 9) == 0) {
+ vol->inode64 = 0;
} else
printk(KERN_WARNING "CIFS: Unknown mount option %s\n",
data);
@@ -2578,6 +2585,9 @@ static void setup_cifs_sb(struct smb_vol *pvolume_info,
if (pvolume_info->multiuser)
cifs_sb->mnt_cifs_flags |= (CIFS_MOUNT_MULTIUSER |
CIFS_MOUNT_NO_PERM);
+ if (!pvolume_info->inode64)
+ cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_32BIT_INODES;
+
if (pvolume_info->direct_io) {
cFYI(1, "mounting share using direct i/o");
cifs_sb->mnt_cifs_flags |= CIFS_MOUNT_DIRECT_IO;
@@ -1791,6 +1791,10 @@ int cifs_getattr(struct vfsmount *mnt, struct dentry *dentry,
if (!(cifs_sb->mnt_cifs_flags & CIFS_MOUNT_OVERR_GID))
stat->gid = current_fsgid();
}
+
+ /* squash to 32-bits if 'noinode64' option is enabled */
+ if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_32BIT_INODES)
+ stat->ino = cifs_uniqueid_to_ino_t(stat->ino);
}
return err;
}
@@ -754,7 +754,10 @@ static int cifs_filldir(char *pfindEntry, struct file *file, filldir_t filldir,
*/
fattr.cf_flags |= CIFS_FATTR_NEED_REVAL;
- ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
+ if (cifs_sb->mnt_cifs_flags & CIFS_MOUNT_32BIT_INODES)
+ ino = cifs_compat_user_ino64(fattr.cf_uniqueid);
+ else
+ ino = cifs_uniqueid_to_ino_t(fattr.cf_uniqueid);
tmp_dentry = cifs_readdir_lookup(file->f_dentry, &qstring, &fattr);
rc = filldir(direntry, qstring.name, qstring.len, file->f_pos,