]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
qnx4fs: Use kmemdup rather than duplicating its implementation
authorThomas Meyer <thomas@m3y3r.de>
Sun, 20 Nov 2011 12:35:57 +0000 (13:35 +0100)
committerJiri Kosina <jkosina@suse.cz>
Sun, 20 Nov 2011 19:32:28 +0000 (20:32 +0100)
The semantic patch that makes this change is available
in scripts/coccinelle/api/memdup.cocci.

Signed-off-by: Thomas Meyer <thomas@m3y3r.de>
Signed-off-by: Anders Larsen <al@alarsen.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
fs/qnx4/inode.c

index 3bdd214184321b73b1636b1e987fb3f22c1c44f6..f9e9568810fba97ec0099bc9726b83c75228163e 100644 (file)
@@ -199,12 +199,13 @@ static const char *qnx4_checkroot(struct super_block *sb)
                                        if (!strcmp(rootdir->di_fname,
                                                    QNX4_BMNAME)) {
                                                found = 1;
-                                               qnx4_sb(sb)->BitMap = kmalloc( sizeof( struct qnx4_inode_entry ), GFP_KERNEL );
+                                               qnx4_sb(sb)->BitMap = kmemdup(rootdir,
+                                                                             sizeof(struct qnx4_inode_entry),
+                                                                             GFP_KERNEL);
                                                if (!qnx4_sb(sb)->BitMap) {
                                                        brelse (bh);
                                                        return "not enough memory for bitmap inode";
-                                               }
-                                               memcpy( qnx4_sb(sb)->BitMap, rootdir, sizeof( struct qnx4_inode_entry ) );      /* keep bitmap inode known */
+                                               }/* keep bitmap inode known */
                                                break;
                                        }
                                }