Use `CLAIM_FH` for NFS:OPEN instead of inefficient `CLAIM_NULL`
Closed this issue · 1 comments
Peter-JanGootzen commented
Currently when opening a file CLAIM_NULL
is used in conjunction with CURRENT_FH=parent->fh
and the filename of the file to be opened. This requires tracking the parents of files plus the filenames of files inside of virtionfs.
In NFS 4.1 there is a CLAIM_FH
flag that allows you to open the file that the CURRENT_FH
points to. Removing this extra bookkeeping overhead from the client.
Peter-JanGootzen commented
Implemented in #15