phdeniel / nfs-ganesha

NFS-Ganesha, a NFSv3/NFSv4.x/9P file server in User Space
http://nfs-ganesha.sf.net
61 stars 49 forks source link

9P: fid check #90

Closed sderr closed 12 years ago

sderr commented 12 years ago

Under some obscure circumstances the Linux client will issue several TCLUNK requests for the same fid. Check for it instead of segfault.

And while we are at it, check the fid on all requests (2nd commit).

phdeniel commented 12 years ago

OK. I care for that in my "under work" commits. I currently change the way fid are managed (I want a Hash Table to be used instead of an array in the _9p_conn_t structure).

sderr commented 12 years ago

On Thu, 9 Aug 2012, Philippe DENIEL wrote:

OK. I care for that in my "under work" commits. I currently change the way fid are managed (I want a Hash Table to be used instead of an array in the _9p_conn_t structure).

Ok, thanks for the information.