resolved: Re: nfs (client) directory cacheing bug

Andrew Atrens atrens at nortel.com
Fri Dec 15 12:32:50 PST 2006


The (recent?) MFC to linux_machdep.c of the sys_exit_group() return code init
fix resolves this problem for me!

Thanks!

Andrew


int
sys_linux_exit_group(struct linux_exit_group_args *args)
{
        struct exit_args newargs;
        int error;

        newargs.sysmsg_result = 0;
+        newargs.rval = args->rval;
        error = sys_exit(&newargs);
        args->sysmsg_result = newargs.sysmsg_result;
        return (error);
}



Matthew Dillon wrote:
>     If this is running over NFS you should be able to use tcpdump to trace
>     out the NFS operations.  Use a UDP mount to make the tracing work more
>     easily. 
> 
>     tcpdump -i <interface> -s 4096 -v port 2049
> 
>     And see if you can localize the operations related to the problem.
> 
> 						-Matt






More information about the Bugs mailing list