diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-07-28 22:48:58 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-07-28 22:48:58 +0000 |
commit | 409c6f37f9f7c0fabc95f6b1b9c0a811095d664d (patch) | |
tree | 314f00f62be262fa9dea33ee16f1279a48ec4fac /lib/libc | |
parent | 5d01982f6bd6469ff68e159388af8f5dce257b1d (diff) | |
download | FreeBSD-src-409c6f37f9f7c0fabc95f6b1b9c0a811095d664d.zip FreeBSD-src-409c6f37f9f7c0fabc95f6b1b9c0a811095d664d.tar.gz |
unlink(2): Note the possibility for ENOSPC to be returned on ZFS.
PR: 154930
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/sys/unlink.2 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/libc/sys/unlink.2 b/lib/libc/sys/unlink.2 index 406c77c..e59ecf8 100644 --- a/lib/libc/sys/unlink.2 +++ b/lib/libc/sys/unlink.2 @@ -28,7 +28,7 @@ .\" @(#)unlink.2 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd April 25, 2010 +.Dd July 28, 2015 .Dt UNLINK 2 .Os .Sh NAME @@ -151,6 +151,9 @@ The .Fa path argument points outside the process's allocated address space. +.It Bq Er ENOSPC +On file systems supporting copy-on-write or snapshots, there was not enough +free space to record metadata for the delete operation of the file. .El .Pp In addition to the errors returned by the |