Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'fsnotify_for_v6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs

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

+2 -2
+2 -2
fs/notify/fanotify/fanotify.h
··· 275 275 276 276 #define FANOTIFY_INLINE_FH(name, size) \ 277 277 struct { \ 278 - struct fanotify_fh (name); \ 278 + struct fanotify_fh name; \ 279 279 /* Space for object_fh.buf[] - access with fanotify_fh_buf() */ \ 280 - unsigned char _inline_fh_buf[(size)]; \ 280 + unsigned char _inline_fh_buf[size]; \ 281 281 } 282 282 283 283 struct fanotify_fid_event {