Lines Matching refs:handle_bytes
23 int handle_dwords, handle_bytes; in do_sys_name_to_handle() local
40 if (f_handle.handle_bytes > MAX_HANDLE_SZ) in do_sys_name_to_handle()
43 handle = kmalloc(sizeof(struct file_handle) + f_handle.handle_bytes, in do_sys_name_to_handle()
49 handle_dwords = f_handle.handle_bytes >> 2; in do_sys_name_to_handle()
57 handle_bytes = handle_dwords * sizeof(u32); in do_sys_name_to_handle()
58 handle->handle_bytes = handle_bytes; in do_sys_name_to_handle()
59 if ((handle->handle_bytes > f_handle.handle_bytes) || in do_sys_name_to_handle()
72 handle_bytes = 0; in do_sys_name_to_handle()
78 sizeof(struct file_handle) + handle_bytes)) in do_sys_name_to_handle()
158 handle_dwords = handle->handle_bytes >> 2; in do_handle_to_path()
194 if ((f_handle.handle_bytes > MAX_HANDLE_SZ) || in handle_to_path()
195 (f_handle.handle_bytes == 0)) { in handle_to_path()
199 handle = kmalloc(sizeof(struct file_handle) + f_handle.handle_bytes, in handle_to_path()
209 f_handle.handle_bytes)) { in handle_to_path()