On Wed, 16 Apr 2025 at 12:10, Bernd Schubert <bernd@xxxxxxxxxxx> wrote: > This is the part that might be confusing - it is in another > file than DT_MAX / S_DT_MASK - it might be hard to know about > FILLDIR_FLAG_NOINTR and possible other future flags? > But then it is certainly not a file type, having it in fs.h > makes sense from that point of view. Added " BUILD_BUG_ON(FILLDIR_FLAG_NOINTR & S_DT_MASK)" above "d_type &= S_DT_MASK" in filldir functions to verify that FILLDIR_FLAG_NOINTR doesn't conflict with d_type. Thanks, Miklos