Re: [PATCH v5 04/10] fstests: verify fanotify isolation on cloned filesystems
Anand Jain <[email protected]>
| Newsgroups | org.kernel.vger.fstests,net.sourceforge.lists.linux-f2fs-devel,org.kernel.vger.linux-btrfs,org.kernel.vger.linux-ext4,org.kernel.vger.linux-xfs |
|---|---|
| Message-ID | <[email protected]> |
On 25/5/26 15:11, Christoph Hellwig wrote: >> +export FSNOTIFYWAIT_PROG="$(type -P fsnotifywait)" > > Same comment about adding new common bits outside of test cases applies, Got it. > but why use both inotify and fsnotify? > The SYSCALL and stuffs until fsnotify_..() are different, so I decided to keep them both. >> +[[ "$fsid1" == "$fsid2" ]] && \ >> + _notrun "Require clone filesystem with unique f_fsid" > > Please add a comment why this happens. I also have to say I find > the if syntax easier to follow then && with a line continuation. Got it. If statements are better for readability. Also, I'll add comments.