So with all the lockref work, we now avoid the dentry d_lock for almost all normal cases. There is one single remaining common case, though: the final dput() when the dentry count goes down to zero, and we need to check if we are supposed to get rid of the dentry (or at least put it on the LRU lists etc). And that's something lockref itself cannot really help us with unless we start adding status bits to it (eg some kind of "enable slow-case" bit in the lock part of the lockref). Which sounds like a clever but very fragile approach. However, I did get myself a i7-4770S exactly because I was forward-thinking, and wanted to try using transactional memory for these kinds of things. Quite frankly, from all I've seen so far, the kernel is not going to have very good luck with things like lock elision, because we're really fine-grained already, and at least the Intel lock-elision (don't know about POWER8) basically requires software to do prediction on whether the transaction will succeed or not, dynamically based on aborts etc. And quite frankly, by the time you have to do things like that, you've already lost. We're better off just using our normal locks. So as far as I'm concerned, transactional memory is going to be useful - *if* it is useful - only for specialized code. Some of that might be architecture-internal lock implementations, other things might be exactly the dput() kind of situation. And the thing is, *normally* dput() doesn't need to do anything at all, except decrement the dentry reference count. However, for that normal case to be true, we need to atomically check: - that the dentry lock isn't held (same as lockref) - that we are already on the LRU list and don't need to add ourselves to it - that we already have the DCACHE_REFERENCED bit set and don't need to set it - that the dentry isn't unhashed and needs to be killed. Additionally, we need to check that it's not a dentry that has a "d_delete()" operation, but that's a static attribute of a dentry, so that's not something that we need to check atomically wrt the other things. ANYWAY. With all that out of the way, the basic point is that this is really simple, and fits very well with even very limited transactional memory. We literally need to do just a single write, and something like three reads from memory. And we already have a trivial fallback, namely the old code using the lockrefs. IOW, it's literally ten straight-line instructions between the xbegin and the xend for me. So here's a patch that works for me. It requires gcc to know "asm goto", and it requires binutils that know about xbegin/xabort. And it requires a CPU that supports the intel RTM extensions. But I'm cc'ing the POWER people, because I don't know the POWER8 interfaces, and I don't want to necessarily call this "xbegin"/"xend" when I actually wrap it in some helper functions. Anyway, profiles with this look beautiful (I'm using "make -j" on a fully built allmodconfig kernel tree as the source of profile data). There's no spinlocks from dput at all, and the dput() profile itself shows basically 1% in anything but the fastpath (probably the _very_ occasional first accesses where we need to add things to the LRU lists). And the patch is small, but is obviously totally lacking any test for CPU support or anything like that. Or portability. But I thought I'd get the ball rolling, because I doubt the intel TSX patches are going to be useful (if they were, Intel would be crowing about performance numbers now that the CPU's are out, and they aren't). I don't know if the people doing HP performance testing have TSX-enabled machines, but hey, maybe. So you guys are cc'd too. I also didn't actually check if performance is affected. I doubt it is measurable on this machine, especially on "make -j" that spends 90% of its time in user space. But the profile comparison really does make it look good.. Comments? Linus
Attachment:
patch.diff
Description: Binary data