Merge tag 'for-linus-5.2' of git://github.com/cminyard/linux-ipmi
[sfrench/cifs-2.6.git] / fs / open.c
index a00350018a4792e758d5749e6294902cf32f2174..9c7d724a6f6775d35ded4565d915d6fd5e945ea7 100644 (file)
--- a/fs/open.c
+++ b/fs/open.c
@@ -1219,8 +1219,9 @@ EXPORT_SYMBOL(nonseekable_open);
 /*
  * stream_open is used by subsystems that want stream-like file descriptors.
  * Such file descriptors are not seekable and don't have notion of position
- * (file.f_pos is always 0). Contrary to file descriptors of other regular
- * files, .read() and .write() can run simultaneously.
+ * (file.f_pos is always 0 and ppos passed to .read()/.write() is always NULL).
+ * Contrary to file descriptors of other regular files, .read() and .write()
+ * can run simultaneously.
  *
  * stream_open never fails and is marked to return int so that it could be
  * directly used as file_operations.open .