@@ -1126,18 +1126,24 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
1126
1126
1127
1127
.. versionadded :: 3.7
1128
1128
1129
- .. data :: RWF_DSYNC (since Linux 4.7)
1129
+ .. data :: RWF_DSYNC
1130
+
1130
1131
Provide a per-write equivalent of the O_DSYNC open(2) flag. This flag
1131
1132
is meaningful only for pwritev2(), and its effect applies only to the
1132
1133
data range written by the system call.
1133
1134
1135
+ Availability: Linux (version 4.7).
1136
+
1134
1137
.. versionadded :: 3.7
1135
1138
1136
- .. data :: RWF_SYNC (since Linux 4.7)
1139
+ .. data :: RWF_SYNC
1140
+
1137
1141
Provide a per-write equivalent of the O_SYNC open(2) flag. This flag is
1138
1142
meaningful only for pwritev2(), and its effect applies only to the data
1139
1143
range written by the system call.
1140
1144
1145
+ Availability: Linux (version 4.7).
1146
+
1141
1147
.. versionadded :: 3.7
1142
1148
1143
1149
@@ -1260,23 +1266,29 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
1260
1266
.. versionadded :: 3.7
1261
1267
1262
1268
1263
- .. data :: RWF_HIPRI (since Linux 4.6)
1269
+ .. data :: RWF_HIPRI
1270
+
1264
1271
High priority read/write. Allows block-based filesystems to use polling
1265
1272
of the device, which provides lower latency, but may use additional
1266
1273
resources. (Currently, this feature is usable only on a file descriptor
1267
1274
opened using the O_DIRECT flag.)
1268
1275
1276
+ Availability: Linux (version 4.6).
1277
+
1269
1278
.. versionadded :: 3.7
1270
1279
1271
1280
1272
- .. data :: RWF_NOWAIT (since Linux 4.14)
1281
+ .. data :: RWF_NOWAIT
1282
+
1273
1283
Do not wait for data which is not immediately available. If this flag
1274
1284
is specified, the preadv2() system call will return instantly
1275
1285
if it would have to read data from the backing storage or wait for a lock.
1276
1286
If some data was successfully read, it will return the number of bytes
1277
1287
read. If no bytes were read, it will return -1 and set errno to EAGAIN.
1278
1288
Currently, this flag is meaningful only for preadv2().
1279
1289
1290
+ Availability: Linux (version 4.14).
1291
+
1280
1292
.. versionadded :: 3.7
1281
1293
1282
1294
0 commit comments