Re: [PATCH] shmem and simple const super_operations

2007-03-01 Thread Josef Sipek
On Thu, Mar 01, 2007 at 07:22:32PM +, Hugh Dickins wrote:
> shmem's super_operations were missed from the recent const-ification;
> and simple_fill_super()'s, which can share with get_sb_pseudo()'s.
> 
> Signed-off-by: Hugh Dickins <[EMAIL PROTECTED]>

Acked-by: Josef 'Jeff' Sipek <[EMAIL PROTECTED]>

-- 
Hegh QaQ law'
quvHa'ghach QaQ puS
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] shmem and simple const super_operations

2007-03-01 Thread Hugh Dickins
shmem's super_operations were missed from the recent const-ification;
and simple_fill_super()'s, which can share with get_sb_pseudo()'s.

Signed-off-by: Hugh Dickins <[EMAIL PROTECTED]>
---

 fs/libfs.c |   10 ++
 mm/shmem.c |4 ++--
 2 files changed, 8 insertions(+), 6 deletions(-)

--- 2.6.21-rc2/fs/libfs.c   2007-02-28 08:30:26.0 +
+++ linux/fs/libfs.c2007-02-28 13:12:07.0 +
@@ -190,6 +190,10 @@ const struct inode_operations simple_dir
.lookup = simple_lookup,
 };
 
+static const struct super_operations simple_super_operations = {
+   .statfs = simple_statfs,
+};
+
 /*
  * Common helper for pseudo-filesystems (sockfs, pipefs, bdev - stuff that
  * will never be mountable)
@@ -199,7 +203,6 @@ int get_sb_pseudo(struct file_system_typ
struct vfsmount *mnt)
 {
struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
-   static const struct super_operations default_ops = {.statfs = 
simple_statfs};
struct dentry *dentry;
struct inode *root;
struct qstr d_name = {.name = name, .len = strlen(name)};
@@ -212,7 +215,7 @@ int get_sb_pseudo(struct file_system_typ
s->s_blocksize = 1024;
s->s_blocksize_bits = 10;
s->s_magic = magic;
-   s->s_op = ops ? ops : _ops;
+   s->s_op = ops ? ops : _super_operations;
s->s_time_gran = 1;
root = new_inode(s);
if (!root)
@@ -359,7 +362,6 @@ int simple_commit_write(struct file *fil
 
 int simple_fill_super(struct super_block *s, int magic, struct tree_descr 
*files)
 {
-   static struct super_operations s_ops = {.statfs = simple_statfs};
struct inode *inode;
struct dentry *root;
struct dentry *dentry;
@@ -368,7 +370,7 @@ int simple_fill_super(struct super_block
s->s_blocksize = PAGE_CACHE_SIZE;
s->s_blocksize_bits = PAGE_CACHE_SHIFT;
s->s_magic = magic;
-   s->s_op = _ops;
+   s->s_op = _super_operations;
s->s_time_gran = 1;
 
inode = new_inode(s);
--- 2.6.21-rc2/mm/shmem.c   2007-02-28 08:30:33.0 +
+++ linux/mm/shmem.c2007-02-28 13:12:07.0 +
@@ -175,7 +175,7 @@ static inline void shmem_unacct_blocks(u
vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
 }
 
-static struct super_operations shmem_ops;
+static const struct super_operations shmem_ops;
 static const struct address_space_operations shmem_aops;
 static const struct file_operations shmem_file_operations;
 static const struct inode_operations shmem_inode_operations;
@@ -2382,7 +2382,7 @@ static const struct inode_operations shm
 #endif
 };
 
-static struct super_operations shmem_ops = {
+static const struct super_operations shmem_ops = {
.alloc_inode= shmem_alloc_inode,
.destroy_inode  = shmem_destroy_inode,
 #ifdef CONFIG_TMPFS
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


[PATCH] shmem and simple const super_operations

2007-03-01 Thread Hugh Dickins
shmem's super_operations were missed from the recent const-ification;
and simple_fill_super()'s, which can share with get_sb_pseudo()'s.

Signed-off-by: Hugh Dickins [EMAIL PROTECTED]
---

 fs/libfs.c |   10 ++
 mm/shmem.c |4 ++--
 2 files changed, 8 insertions(+), 6 deletions(-)

--- 2.6.21-rc2/fs/libfs.c   2007-02-28 08:30:26.0 +
+++ linux/fs/libfs.c2007-02-28 13:12:07.0 +
@@ -190,6 +190,10 @@ const struct inode_operations simple_dir
.lookup = simple_lookup,
 };
 
+static const struct super_operations simple_super_operations = {
+   .statfs = simple_statfs,
+};
+
 /*
  * Common helper for pseudo-filesystems (sockfs, pipefs, bdev - stuff that
  * will never be mountable)
@@ -199,7 +203,6 @@ int get_sb_pseudo(struct file_system_typ
struct vfsmount *mnt)
 {
struct super_block *s = sget(fs_type, NULL, set_anon_super, NULL);
-   static const struct super_operations default_ops = {.statfs = 
simple_statfs};
struct dentry *dentry;
struct inode *root;
struct qstr d_name = {.name = name, .len = strlen(name)};
@@ -212,7 +215,7 @@ int get_sb_pseudo(struct file_system_typ
s-s_blocksize = 1024;
s-s_blocksize_bits = 10;
s-s_magic = magic;
-   s-s_op = ops ? ops : default_ops;
+   s-s_op = ops ? ops : simple_super_operations;
s-s_time_gran = 1;
root = new_inode(s);
if (!root)
@@ -359,7 +362,6 @@ int simple_commit_write(struct file *fil
 
 int simple_fill_super(struct super_block *s, int magic, struct tree_descr 
*files)
 {
-   static struct super_operations s_ops = {.statfs = simple_statfs};
struct inode *inode;
struct dentry *root;
struct dentry *dentry;
@@ -368,7 +370,7 @@ int simple_fill_super(struct super_block
s-s_blocksize = PAGE_CACHE_SIZE;
s-s_blocksize_bits = PAGE_CACHE_SHIFT;
s-s_magic = magic;
-   s-s_op = s_ops;
+   s-s_op = simple_super_operations;
s-s_time_gran = 1;
 
inode = new_inode(s);
--- 2.6.21-rc2/mm/shmem.c   2007-02-28 08:30:33.0 +
+++ linux/mm/shmem.c2007-02-28 13:12:07.0 +
@@ -175,7 +175,7 @@ static inline void shmem_unacct_blocks(u
vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
 }
 
-static struct super_operations shmem_ops;
+static const struct super_operations shmem_ops;
 static const struct address_space_operations shmem_aops;
 static const struct file_operations shmem_file_operations;
 static const struct inode_operations shmem_inode_operations;
@@ -2382,7 +2382,7 @@ static const struct inode_operations shm
 #endif
 };
 
-static struct super_operations shmem_ops = {
+static const struct super_operations shmem_ops = {
.alloc_inode= shmem_alloc_inode,
.destroy_inode  = shmem_destroy_inode,
 #ifdef CONFIG_TMPFS
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


Re: [PATCH] shmem and simple const super_operations

2007-03-01 Thread Josef Sipek
On Thu, Mar 01, 2007 at 07:22:32PM +, Hugh Dickins wrote:
 shmem's super_operations were missed from the recent const-ification;
 and simple_fill_super()'s, which can share with get_sb_pseudo()'s.
 
 Signed-off-by: Hugh Dickins [EMAIL PROTECTED]

Acked-by: Josef 'Jeff' Sipek [EMAIL PROTECTED]

-- 
Hegh QaQ law'
quvHa'ghach QaQ puS
-
To unsubscribe from this list: send the line unsubscribe linux-kernel in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/