Home
last modified time | relevance | path

Searched refs:vbuf (Results 1 – 1 of 1) sorted by relevance

/fs/f2fs/
Dfile.c3410 char *vbuf; in f2fs_ioc_getfslabel() local
3414 vbuf = f2fs_kzalloc(sbi, MAX_VOLUME_NAME, GFP_KERNEL); in f2fs_ioc_getfslabel()
3415 if (!vbuf) in f2fs_ioc_getfslabel()
3421 UTF16_LITTLE_ENDIAN, vbuf, MAX_VOLUME_NAME); in f2fs_ioc_getfslabel()
3424 if (copy_to_user((char __user *)arg, vbuf, in f2fs_ioc_getfslabel()
3428 kfree(vbuf); in f2fs_ioc_getfslabel()
3436 char *vbuf; in f2fs_ioc_setfslabel() local
3442 vbuf = strndup_user((const char __user *)arg, FSLABEL_MAX); in f2fs_ioc_setfslabel()
3443 if (IS_ERR(vbuf)) in f2fs_ioc_setfslabel()
3444 return PTR_ERR(vbuf); in f2fs_ioc_setfslabel()
[all …]