From f341d5abcfce5b064a5a8877dc4ecec5e46c18ad Mon Sep 17 00:00:00 2001 From: patacongo Date: Wed, 6 Jun 2012 21:51:03 +0000 Subject: NFS update git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4808 7fd9a85b-ad96-42d3-883c-3090e2eb8679 --- nuttx/fs/nfs/nfs_socket.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'nuttx/fs/nfs/nfs_socket.c') diff --git a/nuttx/fs/nfs/nfs_socket.c b/nuttx/fs/nfs/nfs_socket.c index b023c9212..6770f7836 100644 --- a/nuttx/fs/nfs/nfs_socket.c +++ b/nuttx/fs/nfs/nfs_socket.c @@ -124,13 +124,13 @@ int nfs_connect(struct nfsmount *nmp) rpc = (struct rpcclnt *)kzalloc(sizeof(struct rpcclnt)); if (!rpc) { - ndbg("Failed to allocate rpc structure\n"); + fdbg("Failed to allocate rpc structure\n"); return -ENOMEM; } rpc->rc_prog = &nfs3_program; - nvdbg("nfs connect!\n"); + fvdbg("nfs connect!\n"); /* translate nfsmnt flags -> rpcclnt flags */ @@ -224,12 +224,12 @@ tryagain: if (error == ESTALE) { - ndbg("%s: ESTALE on mount from server \n", + fdbg("%s: ESTALE on mount from server \n", nmp->nm_rpcclnt->rc_prog->prog_name); } else { - ndbg("%s: unknown error %d from server \n", + fdbg("%s: unknown error %d from server \n", nmp->nm_rpcclnt->rc_prog->prog_name, error); } @@ -251,4 +251,4 @@ int nfs_nmcancelreqs(struct nfsmount *nmp) { return 0; //rpcclnt_cancelreqs(nmp->nm_rpcclnt); } -#endif \ No newline at end of file +#endif -- cgit v1.2.3