Home
last modified time | relevance | path

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

/fs/f2fs/
Dfile.c3390 char *vbuf; in f2fs_get_volume_name() local
3394 vbuf = f2fs_kzalloc(sbi, MAX_VOLUME_NAME, GFP_KERNEL); in f2fs_get_volume_name()
3395 if (!vbuf) in f2fs_get_volume_name()
3401 UTF16_LITTLE_ENDIAN, vbuf, MAX_VOLUME_NAME); in f2fs_get_volume_name()
3404 if (copy_to_user((char __user *)arg, vbuf, in f2fs_get_volume_name()
3408 kvfree(vbuf); in f2fs_get_volume_name()
3416 char *vbuf; in f2fs_set_volume_name() local
3422 vbuf = strndup_user((const char __user *)arg, FSLABEL_MAX); in f2fs_set_volume_name()
3423 if (IS_ERR(vbuf)) in f2fs_set_volume_name()
3424 return PTR_ERR(vbuf); in f2fs_set_volume_name()
[all …]