diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2019-06-20 10:12:53 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-06-20 10:12:53 -0700 |
commit | d72558b2b33128363e5af7f57c59766a256e8434 (patch) | |
tree | c73b4ef6ea45e3ad271f8a02291c803c0940a139 /include | |
parent | 6331d118ac61454ee52d5f9be098e9ddab6d6572 (diff) | |
parent | c285a2f01d692ef48d7243cf1072897bbd237407 (diff) | |
download | lwn-d72558b2b33128363e5af7f57c59766a256e8434.tar.gz lwn-d72558b2b33128363e5af7f57c59766a256e8434.zip |
Merge tag 'for_v5.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs
Pull two misc vfs fixes from Jan Kara:
"One small quota fix fixing spurious EDQUOT errors and one fanotify fix
fixing a bug in the new fanotify FID reporting code"
* tag 'for_v5.2-rc6' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
fanotify: update connector fsid cache on add mark
quota: fix a problem about transfer quota
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fsnotify_backend.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/fsnotify_backend.h b/include/linux/fsnotify_backend.h index a9f9dcc1e515..d4844cad2c2b 100644 --- a/include/linux/fsnotify_backend.h +++ b/include/linux/fsnotify_backend.h @@ -292,7 +292,9 @@ typedef struct fsnotify_mark_connector __rcu *fsnotify_connp_t; */ struct fsnotify_mark_connector { spinlock_t lock; - unsigned int type; /* Type of object [lock] */ + unsigned short type; /* Type of object [lock] */ +#define FSNOTIFY_CONN_FLAG_HAS_FSID 0x01 + unsigned short flags; /* flags [lock] */ __kernel_fsid_t fsid; /* fsid of filesystem containing object */ union { /* Object pointer [lock] */ |