Lines Matching defs:last_io
18 static struct last_io_info last_io;
22 if (!last_io.len)
26 last_io.major, last_io.minor,
27 last_io.pid, "----------------",
28 last_io.type,
29 last_io.fio.op, last_io.fio.op_flags,
30 last_io.fio.new_blkaddr,
31 last_io.len);
32 memset(&last_io, 0, sizeof(last_io));
104 if (last_io.major == major && last_io.minor == minor &&
105 last_io.pid == pid &&
106 last_io.type == __file_type(inode, pid) &&
107 last_io.fio.op == fio->op &&
108 last_io.fio.op_flags == fio->op_flags &&
109 last_io.fio.new_blkaddr + last_io.len ==
111 last_io.len++;
117 last_io.major = major;
118 last_io.minor = minor;
119 last_io.pid = pid;
120 last_io.type = __file_type(inode, pid);
121 last_io.fio = *fio;
122 last_io.len = 1;