On Tue, Oct 19, 2021 at 01:54:59PM -0300, Gabriel Krisman Bertazi wrote: > > > > E.g. here you pass the 'error' to fsnotify. This will be just standard > > 'errno' number, not ext4 error code as described in the documentation. Also > > note that frequently 'error' will be 0 which gets magically transformed to > > EFSCORRUPTED in save_error_info() in the ext4 error handling below. So > > there's clearly some more work to do... > > The many 0 returns were discussed before, around v3. You can notice one > of my LTP tests is designed to catch that. We agreed ext4 shouldn't be > returning 0, and that we would write a patch to fix it, but I didn't > think it belonged as part of this series. The fact that ext4 passes 0 into __ext4_error() to mean EFSCORRUPTED is an internal implementation detail, and as currently implemented it is *not* a bug. It was just a convenience to minimize the number of call sites that needed to be modified when we added the feature of storing the error code to be stored in the superblock. So I think this is something that should be addressed in this patchset, and it's pretty simple to do so. It's just a matter of doing something like this: fsnotify_sb_error(sb, NULL, error ? error : EFSCORRUPTED); > You are also right about the EXT4_ vs. errno. the documentation is > buggy, since it was brought from the fs-specific descriptor days, which > no longer exists. Nevertheless, I think there is a case for always > returning file system specific errors here, since they are more > descriptive. So the history is that ext4 specific errors were used because we were storing them in the superblock --- and so we need an architecture independent way of storing the error codes. (Errno codes are not stable across architectures; and consider what might happen if we had error codes written on an say, an ARM platform, and then that disk is attached to an Alpha, S390, or Power system?) > Should we agree to follow the documentation and return FS specific > errors instead of errno, then? I disagree. We should use errno's, for a couple of reasons. First of all, users of fsnotify shouldn't need to know which file system to interpret the error codes. Secondly, the reason why ext4 has file system specific error cdoes is because those codes are written into the superblock, and errno's are not stable across different architectures. So for ext4, we needed to worry what might happen if the error code was written while the file system was mounted on say, an ARM-64 system, and then storage device might get attached to a S390, Alpha, or PA-RISC system. This is not a problem that the fsnotify API needs to worry about. Finally, the error codes that we used for the ext4 superblock are *not* more descriptive than errno's --- we only have 16 ext4-specific error codes, and there are far more errno values. Cheers, - Ted