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