Unionfs: Remove superfluous check for NULL pointer
authorErez_Zadok <ezk@cs.sunysb.edu>
Fri, 29 Jun 2007 04:45:47 +0000 (00:45 -0400)
committerErez Zadok <ezk@cs.sunysb.edu>
Sun, 6 Mar 2011 08:42:32 +0000 (03:42 -0500)
Since we use containers and the struct inode is _inside_ the
unionfs_inode_info structure, UNIONFS_I will always (given a non-NULL inode
pointer), return a valid non-NULL pointer.

Signed-off-by: Josef 'Jeff' Sipek <jsipek@cs.sunysb.edu>
Conflicts:

fs/unionfs/super.c

fs/unionfs/fanout.h
fs/unionfs/super.c

index 4d1a620f75da8a87e1324f86ed1ad42e332ec778..4db15311977790837e5b37a28d06ecba14e13c3f 100644 (file)
 #ifndef _FANOUT_H_
 #define _FANOUT_H_
 
-/* Inode to private data */
+/*
+ * Inode to private data
+ *
+ * Since we use containers and the struct inode is _inside_ the
+ * unionfs_inode_info structure, UNIONFS_I will always (given a non-NULL
+ * inode pointer), return a valid non-NULL pointer.
+ */
 static inline struct unionfs_inode_info *UNIONFS_I(const struct inode *inode)
 {
        return container_of(inode, struct unionfs_inode_info, vfs_inode);
index 79487c730e5a370e9dadc402a03cc045a2f546cc..b1504121e6cbd55807b7ae2dc32ea1e86c6b34a4 100644 (file)
@@ -30,11 +30,7 @@ static void unionfs_read_inode(struct inode *inode)
        int size;
        struct unionfs_inode_info *info = UNIONFS_I(inode);
 
-       if (!info) {
-               printk(KERN_ERR "unionfs: no kernel memory when allocating "
-                      "inode private data!\n");
-               BUG();
-       }
+       unionfs_read_lock(inode->i_sb);
 
        memset(info, 0, offsetof(struct unionfs_inode_info, vfs_inode));
        info->bstart = -1;
@@ -59,6 +55,8 @@ static void unionfs_read_inode(struct inode *inode)
        inode->i_fop = &unionfs_main_fops;
 
        inode->i_mapping->a_ops = &unionfs_aops;
+
+       unionfs_read_unlock(inode->i_sb);
 }
 
 /*