Lines Matching defs:handle_bytes
23 int handle_dwords, handle_bytes;
37 if (f_handle.handle_bytes > MAX_HANDLE_SZ)
40 handle = kzalloc(sizeof(struct file_handle) + f_handle.handle_bytes,
46 handle_dwords = f_handle.handle_bytes >> 2;
54 handle_bytes = handle_dwords * sizeof(u32);
55 handle->handle_bytes = handle_bytes;
56 if ((handle->handle_bytes > f_handle.handle_bytes) ||
67 handle_bytes = 0;
74 sizeof(struct file_handle) + handle_bytes))
151 handle_dwords = handle->handle_bytes >> 2;
187 if ((f_handle.handle_bytes > MAX_HANDLE_SZ) ||
188 (f_handle.handle_bytes == 0)) {
192 handle = kmalloc(sizeof(struct file_handle) + f_handle.handle_bytes,
202 f_handle.handle_bytes)) {