Lines Matching refs:read
6 // its read and write. Rationale for the conversion is to avoid deadlock in
7 // between read and write.
80 // file_operations + whether they have _any_ .read, .write, .llseek ... at all.
95 .read = read_f,
188 // XXX for simplicity require no .{read/write}_iter and no .splice_{read/write} for now.
202 // read & write
213 .read = readstream,
232 …"ERROR: %s: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix." % (fops…
239 …"WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream…
248 + nonseekable_open /* read & write (was deadlock) */
259 + nonseekable_open /* read & write (no direct deadlock) */
274 // read, but not write
281 .read = readstream,
299 …"WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fop…
307 + nonseekable_open /* read only */
322 // write, but not read
370 // no read, no write - don't change anything