Lines Matching refs:handle_bytes
24 int handle_dwords, handle_bytes; in do_sys_name_to_handle() local
45 if (f_handle.handle_bytes > MAX_HANDLE_SZ) in do_sys_name_to_handle()
48 handle = kzalloc(struct_size(handle, f_handle, f_handle.handle_bytes), in do_sys_name_to_handle()
54 handle_dwords = f_handle.handle_bytes >> 2; in do_sys_name_to_handle()
62 handle_bytes = handle_dwords * sizeof(u32); in do_sys_name_to_handle()
63 handle->handle_bytes = handle_bytes; in do_sys_name_to_handle()
64 if ((handle->handle_bytes > f_handle.handle_bytes) || in do_sys_name_to_handle()
77 handle_bytes = 0; in do_sys_name_to_handle()
108 struct_size(handle, f_handle, handle_bytes))) in do_sys_name_to_handle()
261 handle_dwords = handle->handle_bytes >> 2; in do_handle_to_path()
338 if ((f_handle.handle_bytes > MAX_HANDLE_SZ) || in handle_to_path()
339 (f_handle.handle_bytes == 0)) in handle_to_path()
358 handle = kmalloc(struct_size(handle, f_handle, f_handle.handle_bytes), in handle_to_path()
368 f_handle.handle_bytes)) { in handle_to_path()