Hi Bruce, (combining all three of your mails into one response for easier tracking) "J. Bruce Fields" <bfields@xxxxxxxxxxxx> wrote on 04/23/2009 01:35:53 AM: > How do you know fh_auth[3] is sufficient to identify the file reliably? > This looks very fragile to me. > > If the goal is to bypass rqst_exp_find(), exportfs_decode_fh() and > friends--that makes me nervous. We should figure out how to make those > lookups faster instead. Or at the very least, make sure we're keying on > the entire filehandle instead of just part of it. To understand how filehandles works, I was looking at nfsd_set_fh_dentry, here fid is fh->auth[2] (since type is FSID_DEV). However, the unique FH value is stored in fh->auth[3], while auth[0]/[1] contains the maj/min and ino. fh->auth[3] is unique for different files and across file systems, but it is not actually used to find the file (only the exp) - the stored dev/ino (auth[0] and auth[1]) are used to find the dentry by calling the underlying filesystem (exportfs_decode_fh). Keying on the entire filehandle seems reasonable, but I don't think it is required as auth[3] seems to be allocated memory which is unique in a system, just that we don't use it for locating the file currently and I was proposing that we do. Please correct me if this is wrong, or whether a better way is possible. > This patch doesn't change anything--it only adds new lines. If you're > trying to make minimal changes, that's admirable, but break up the > patches in such a way that each patch shows that minimal change. To make each revision compile cleanly, I had to add the infrastructure and then delete the old one. So it looks like new code. The entire function and data structures are re-written so it is difficult to break into individual components where each will compile clean. > By "noisy" I just mean that they look like there's a lot of randomness. > So, yes, I'm fine with a subset, but I'm curious what the variance is on > repeated runs of each test. Sure, I will try to do this over the weekend and submit. thanks, - KK -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html