DragonFly bugs List (threaded) for 2006-12
DragonFly BSD
DragonFly bugs List (threaded) for 2006-12
[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]

resolved: Re: nfs (client) directory cacheing bug


From: Andrew Atrens <atrens@xxxxxxxxxx>
Date: Fri, 15 Dec 2006 15:32:50 -0500

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




[Date Prev][Date Next]  [Thread Prev][Thread Next]  [Date Index][Thread Index]