Lines Matching refs:gfi
30 struct hmdfs_file_info *gfi = kzalloc(sizeof(*gfi), GFP_KERNEL); in hmdfs_file_open_local() local
32 if (!gfi) { in hmdfs_file_open_local()
42 kfree(gfi); in hmdfs_file_open_local()
44 gfi->lower_file = lower_file; in hmdfs_file_open_local()
45 file->private_data = gfi; in hmdfs_file_open_local()
53 struct hmdfs_file_info *gfi = hmdfs_f(file); in hmdfs_file_release_local() local
56 fput(gfi->lower_file); in hmdfs_file_release_local()
57 kfree(gfi); in hmdfs_file_release_local()
241 struct hmdfs_file_info *gfi = kzalloc(sizeof(*gfi), GFP_KERNEL); in hmdfs_dir_open_local() local
243 if (!gfi) in hmdfs_dir_open_local()
257 gfi->lower_file = lower_file; in hmdfs_dir_open_local()
258 file->private_data = gfi; in hmdfs_dir_open_local()
263 kfree(gfi); in hmdfs_dir_open_local()
269 struct hmdfs_file_info *gfi = hmdfs_f(file); in hmdfs_dir_release_local() local
272 fput(gfi->lower_file); in hmdfs_dir_release_local()
273 kfree(gfi); in hmdfs_dir_release_local()