On Thu, Jul 04, 2019 at 12:27:42AM +0800, Fuqian Huang wrote: > kmemdup is introduced to duplicate a region of memory in a neat way. > Rather than kmalloc/kzalloc + memcpy, which the programmer needs to > write the size twice (sometimes lead to mistakes), kmemdup improves > readability, leads to smaller code and also reduce the chances of mistakes. > Suggestion to use kmemdup rather than using kmalloc/kzalloc + memcpy. > > Signed-off-by: Fuqian Huang <huangfq.dax...@gmail.com> > --- > Changes in v2: > - Fix a typo in commit message (memset -> memcpy) > > drivers/infiniband/hw/i40iw/i40iw_cm.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-)
Applied to rdma for-next Thanks, Jason