summaryrefslogtreecommitdiff
path: root/nfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-08-17 18:15:18 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-08-17 18:15:18 +0000
commitf003bf8cc8c3551f3fb0e6b79a47431c89e8b36b (patch)
tree163406b44e412d7c2720a37a789363acd3df74fa /nfs
parent27ba3912c75934110d3cb786f2779265a2905723 (diff)
Initial revision
Diffstat (limited to 'nfs')
-rw-r--r--nfs/ops.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/nfs/ops.c b/nfs/ops.c
new file mode 100644
index 00000000..4347ae0f
--- /dev/null
+++ b/nfs/ops.c
@@ -0,0 +1,37 @@
+/*
+ Copyright (C) 1994 Free Software Foundation
+
+ This program is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2, or (at
+ your option) any later version.
+
+ This program is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+
+/* Implement the netfs_validate_stat callback as described in
+ <hurd/netfs.h>. */
+error_t
+netfs_validate_stat (struct node *np, struct protid *cred)
+{
+ struct vfsv2_fattr *fattr;
+ size_t hsize;
+ char *rpc;
+
+ /* The only arg is the file handle. */
+
+ hsize = rpc_compute_header_size (cred->nc.auth);
+ rpc = alloca (hsize + sizeof (nfsv2_fhandle_t));
+
+ /* Fill in request arg */
+ bcopy (&np->nn.handle, rpc + hsize, NFSV2_FHSIZE);
+
+ /* Transmit */
+ rpc_send (