Re: [PATCH] kernfs: Replace strncpy with memcpy

2018-07-02 Thread Tejun Heo
On Sun, Jul 01, 2018 at 01:57:13PM -0700, Guenter Roeck wrote: > gcc 8.1.0 complains: > > fs/kernfs/symlink.c:91:3: warning: > 'strncpy' output truncated before terminating nul copying > as many bytes from a string as its length > fs/kernfs/symlink.c: In function

Re: [PATCH] kernfs: Replace strncpy with memcpy

2018-07-02 Thread Tejun Heo
On Sun, Jul 01, 2018 at 01:57:13PM -0700, Guenter Roeck wrote: > gcc 8.1.0 complains: > > fs/kernfs/symlink.c:91:3: warning: > 'strncpy' output truncated before terminating nul copying > as many bytes from a string as its length > fs/kernfs/symlink.c: In function

[PATCH] kernfs: Replace strncpy with memcpy

2018-07-01 Thread Guenter Roeck
gcc 8.1.0 complains: fs/kernfs/symlink.c:91:3: warning: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length fs/kernfs/symlink.c: In function 'kernfs_iop_get_link': fs/kernfs/symlink.c:88:14: note: length computed here Using

[PATCH] kernfs: Replace strncpy with memcpy

2018-07-01 Thread Guenter Roeck
gcc 8.1.0 complains: fs/kernfs/symlink.c:91:3: warning: 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length fs/kernfs/symlink.c: In function 'kernfs_iop_get_link': fs/kernfs/symlink.c:88:14: note: length computed here Using