https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=223440

Ed Maste <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #10 from Ed Maste <[email protected]> ---
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!=EINVAL ) return SQLITE_IOERR_WRITE;

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "[email protected]"

Reply via email to