Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 01 Jun 2018 15:45:02 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 223440] world needs review and adjustment for the disabling of fallocate for zfs (-r325320), lld included
Message-ID:  <bug-223440-227-LpfPlGIdIR@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-223440-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-223440-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D223440

Ed Maste <emaste@freebsd.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |emaste@freebsd.org

--- Comment #10 from Ed Maste <emaste@freebsd.org> ---
I believe the sqlite issue is a bug.  For cases where posix_fallocate is
supported by the operating system but returns EINVAL indicating that the
filesystem does not support the operation we should just treat the call as
advisory, and carry on.

-      if( err ) return SQLITE_IOERR_WRITE;
+      if( err!=3DEINVAL ) return SQLITE_IOERR_WRITE;

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-223440-227-LpfPlGIdIR>