summaryrefslogtreecommitdiff
path: root/RELNOTES
diff options
context:
space:
mode:
authorRick Macklem <rmacklem@FreeBSD.org>2019-08-22 01:29:59 +0000
committerRick Macklem <rmacklem@FreeBSD.org>2019-08-22 01:29:59 +0000
commitb4c64c61f21dd9fad27a2f82b9e130c0171e94a4 (patch)
treede2b945c23c050ae576364178f59db7bbf9829eb /RELNOTES
parent1689dc666cc88dead070666fa00b8a4fda09c5c0 (diff)
downloadsrc-test-b4c64c61f21dd9fad27a2f82b9e130c0171e94a4.tar.gz
src-test-b4c64c61f21dd9fad27a2f82b9e130c0171e94a4.zip
Add a couple of lines noting that r351372 maps ENOTTY->EINVAL for other cases.
Notes
Notes: svn path=/head/; revision=351374
Diffstat (limited to 'RELNOTES')
-rw-r--r--RELNOTES4
1 files changed, 3 insertions, 1 deletions
diff --git a/RELNOTES b/RELNOTES
index 6102b903f004c..ced97e2a0e449 100644
--- a/RELNOTES
+++ b/RELNOTES
@@ -15,7 +15,7 @@ r351361:
corresponding lockstat(1) events, and document the new probes in
dtrace_lockstat.4.
-r351201:
+r351201, r351372:
Add a vop_stdioctl() call, so that file systems that do not support
holes will have a trivial implementation of lseek(SEEK_DATA/SEEK_HOLE).
The algorithm appears to be compatible with the POSIX draft and
@@ -23,6 +23,8 @@ r351201:
does not support holes. Prior to this patch, lseek(2) would reply
-1 with errno set to ENOTTY for SEEK_DATA/SEEK_HOLE on files in
file systems that do not support holes.
+ r351372 maps ENOTTY to EINVAL for lseek(SEEK_DATA/SEEK_HOLE) for
+ any other cases, such as a ENOTTY return from vn_bmap_seekhole().
r350665:
The fuse driver has been renamed to fusefs(5) and been substantially