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,
187 // XXX for simplicity require no .{read/write}_iter and no .splice_{read/write} for now.
201 // read & write
212 .read = readstream,
231 …"ERROR: %s: .read() can deadlock .write(); change nonseekable_open -> stream_open to fix." % (fops…
238 …"WARNING: %s: .read() and .write() have stream semantic; safe to change nonseekable_open -> stream…
247 + nonseekable_open /* read & write (was deadlock) */
258 + nonseekable_open /* read & write (no direct deadlock) */
273 // read, but not write
280 .read = readstream,
298 …"WARNING: %s: .read() has stream semantic; safe to change nonseekable_open -> stream_open." % (fop…
306 + nonseekable_open /* read only */
321 // write, but not read
369 // no read, no write - don't change anything