svn commit: r307640 - stable/11/lib/libc/db/btree
Pedro F. Giffuni
pfg at FreeBSD.org
Wed Oct 19 16:33:44 UTC 2016
Author: pfg
Date: Wed Oct 19 16:33:43 2016
New Revision: 307640
URL: https://svnweb.freebsd.org/changeset/base/307640
Log:
MFC r306332:
btree(3): don't shortcut closing if the metadata is dirty.
Obtained from: NetBSD (from krb5 tree)
Modified:
stable/11/lib/libc/db/btree/bt_close.c
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libc/db/btree/bt_close.c
==============================================================================
--- stable/11/lib/libc/db/btree/bt_close.c Wed Oct 19 15:13:08 2016 (r307639)
+++ stable/11/lib/libc/db/btree/bt_close.c Wed Oct 19 16:33:43 2016 (r307640)
@@ -134,7 +134,8 @@ __bt_sync(const DB *dbp, u_int flags)
return (RET_ERROR);
}
- if (F_ISSET(t, B_INMEM | B_RDONLY) || !F_ISSET(t, B_MODIFIED))
+ if (F_ISSET(t, B_INMEM | B_RDONLY) ||
+ !F_ISSET(t, B_MODIFIED | B_METADIRTY))
return (RET_SUCCESS);
if (F_ISSET(t, B_METADIRTY) && bt_meta(t) == RET_ERROR)
More information about the svn-src-stable-11
mailing list