Fix EFF_IMMUTABLE to include EFF_SENTINEL
ef_open() and ef_close() clear EFF_SENTINEL because of that. Broken
since commit 1492845c
(v4.3.17) added EFF_SENTINEL. Harmless, as no
file-backed table has a sentinel.
This commit is contained in:
parent
5703bdd61c
commit
84cdd89060
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ struct emptypedstr {
|
|||
#define EFF_SENTINEL bit(5)
|
||||
/* All the immutable flags */
|
||||
#define EFF_IMMUTABLE \
|
||||
(EFF_TYPED | EFF_XY | EFF_OWNER | EFF_GROUP | EFF_STATIC)
|
||||
(EFF_TYPED | EFF_XY | EFF_OWNER | EFF_GROUP | EFF_STATIC | EFF_SENTINEL)
|
||||
/* Flags set when table contents is mapped */
|
||||
/* Table is entirely in memory */
|
||||
#define EFF_MEM bit(8)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue