Re: [PATCH] fs: omfs: Use kmemdup rather than duplicating its implementation in omfs_get_imap

2019-09-03 Thread zhong jiang
On 2019/9/3 21:25, Bob Copeland wrote: > On Tue, Sep 03, 2019 at 02:39:44PM +0800, zhong jiang wrote: >> kmemdup contains the kmalloc + memcpy. hence it is better to use kmemdup >> directly. Just replace it. >> >> Signed-off-by: zhong jiang > This same patch was already sent to me by someone else

Re: [PATCH] fs: omfs: Use kmemdup rather than duplicating its implementation in omfs_get_imap

2019-09-03 Thread Bob Copeland
On Tue, Sep 03, 2019 at 02:39:44PM +0800, zhong jiang wrote: > kmemdup contains the kmalloc + memcpy. hence it is better to use kmemdup > directly. Just replace it. > > Signed-off-by: zhong jiang This same patch was already sent to me by someone else and I acked it:

[PATCH] fs: omfs: Use kmemdup rather than duplicating its implementation in omfs_get_imap

2019-09-03 Thread zhong jiang
kmemdup contains the kmalloc + memcpy. hence it is better to use kmemdup directly. Just replace it. Signed-off-by: zhong jiang --- fs/omfs/inode.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fs/omfs/inode.c b/fs/omfs/inode.c index b76ec6b..8867cef 100644 ---