Commit 71fb7b32 authored by Linus Torvalds's avatar Linus Torvalds
Browse files
Pull fsnotify update from Jan Kara:
 "This time just one tiny cleanup for fsnotify"

* tag 'fsnotify_for_v6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs:
  fanotify: delete useless parenthesis in FANOTIFY_INLINE_FH macro
parents 5efad0a7 1758cd2e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -275,9 +275,9 @@ static inline void fanotify_init_event(struct fanotify_event *event,

#define FANOTIFY_INLINE_FH(name, size)					\
struct {								\
	struct fanotify_fh (name);					\
	struct fanotify_fh name;					\
	/* Space for object_fh.buf[] - access with fanotify_fh_buf() */	\
	unsigned char _inline_fh_buf[(size)];				\
	unsigned char _inline_fh_buf[size];				\
}

struct fanotify_fid_event {