On Mon, Sep 22, 2025 at 11:33:23AM +0200, Marco Elver wrote: > I gave this a try, and with the below patch and the Clang fix [1], > fs/xfs compiles cleanly. I think the fundamental limitation are the > conditional locking wrappers. I suspect it's possible to do better than > disabling the analysis here, by overapproximating the lock set taken > (like you did elsewhere), so that at least the callers are checked, but > when I tried it showed lots of callers need annotating as well, so I > gave up at that point. Still, it might be better than no checking at > all.
I guess this at least allows us to work with the analysis, even if it drops coverage for one of the most important locks. I guess you also have CONFIG_XFS_QUOTA disabled as that would lead to similar warnings, and also currently has the lock the object on return if it's not a NULL return case? I now have a local series to remove that instance, but I've seen that pattern elsewhere in the kernel code. Besides the conditional locking these two also do another thing that is nasty to the analysis, the locked state can be attached to a transaction and unlocked at transaction commit. Not sure how to best model that. > [1] https://github.com/llvm/llvm-project/pull/159921 Thanks for all the work!