mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 21:30:43 +00:00
qnx4fs: Use kmemdup rather than duplicating its implementation
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>
This commit is contained in:
parent
6416b9fa43
commit
67c50a7ed5
@ -199,12 +199,13 @@ static const char *qnx4_checkroot(struct super_block *sb)
|
|||||||
if (!strcmp(rootdir->di_fname,
|
if (!strcmp(rootdir->di_fname,
|
||||||
QNX4_BMNAME)) {
|
QNX4_BMNAME)) {
|
||||||
found = 1;
|
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) {
|
if (!qnx4_sb(sb)->BitMap) {
|
||||||
brelse (bh);
|
brelse (bh);
|
||||||
return "not enough memory for bitmap inode";
|
return "not enough memory for bitmap inode";
|
||||||
}
|
}/* keep bitmap inode known */
|
||||||
memcpy( qnx4_sb(sb)->BitMap, rootdir, sizeof( struct qnx4_inode_entry ) ); /* keep bitmap inode known */
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user