Lines Matching refs:write
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.
111 .write = write_f,
188 // XXX for simplicity require no .{read/write}_iter and no .splice_{read/write} for now.
202 // read & write
214 .write = writestream,
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
322 // write, but not read
329 .write = writestream,
347 …"WARNING: %s: .write() has stream semantic; safe to change nonseekable_open -> stream_open." % (fo…
355 + nonseekable_open /* write only */
370 // no read, no write - don't change anything