search for: umount_v3

Displaying 5 results from an estimated 5 matches for "umount_v3".

Did you mean: umount_v2
2009 Aug 11
1
nfs MNT include cleanup
...nction ?umount_v2?: usr/kinit/nfsmount/mount.c:226: error: ?MNTPROC_UMNT? undeclared (first use in this function) usr/kinit/nfsmount/mount.c: In function ?mount_v3?: usr/kinit/nfsmount/mount.c:232: error: ?MNTPROC_MNT? undeclared (first use in this function) usr/kinit/nfsmount/mount.c: In function ?umount_v3?: usr/kinit/nfsmount/mount.c:251: error: ?MNTPROC_UMNT? undeclared (first use in this function) make[4]: *** [usr/kinit/nfsmount/mount.o] Error 1 make[3]: *** [usr/kinit/nfsmount] Error 2 make[2]: *** [all] Error 2 make[1]: *** [klibc] Error 2 make[1]: Leaving directory `/home/maks/src/klibc-latest...
2012 Jun 28
0
[klibc:master] nfsmount: Fix wrong NFS umount path
...r/kinit/nfsmount/mount.c b/usr/kinit/nfsmount/mount.c index e3838f4..e0687a6 100644 --- a/usr/kinit/nfsmount/mount.c +++ b/usr/kinit/nfsmount/mount.c @@ -329,9 +329,9 @@ int nfs_mount(const char *pathname, const char *hostname, bail: if (mounted) { if (data->flags & NFS_MOUNT_VER3) - umount_v3(path, clnt); + umount_v3(rem_path, clnt); else - umount_v2(path, clnt); + umount_v2(rem_path, clnt); } ret = -1;
2012 Jun 22
1
[PATCH] Fix wrong NFS umount path
...r/kinit/nfsmount/mount.c b/usr/kinit/nfsmount/mount.c index e3838f4..e0687a6 100644 --- a/usr/kinit/nfsmount/mount.c +++ b/usr/kinit/nfsmount/mount.c @@ -329,9 +329,9 @@ int nfs_mount(const char *pathname, const char *hostname, bail: if (mounted) { if (data->flags & NFS_MOUNT_VER3) - umount_v3(path, clnt); + umount_v3(rem_path, clnt); else - umount_v2(path, clnt); + umount_v2(rem_path, clnt); } ret = -1; -- Benjamin Cama <benjamin.cama at telecom-bretagne.eu>
2010 Feb 23
0
[PATCH 1/3] nfsmount.h: Add missing definitions.
...t.c:226: error: 'MNTPROC_UMNT' undeclared (first use in this function) > usr/kinit/nfsmount/mount.c: In function 'mount_v3': > usr/kinit/nfsmount/mount.c:232: error: 'MNTPROC_MNT' undeclared (first use in this function) > usr/kinit/nfsmount/mount.c: In function 'umount_v3': > usr/kinit/nfsmount/mount.c:251: error: 'MNTPROC_UMNT' undeclared (first use in this function) > make[4]: *** [usr/kinit/nfsmount/mount.o] Error 1 Signed-off-by: maximilian attems <max at stro.at> --- usr/kinit/nfsmount/nfsmount.h | 3 +++ 1 files changed, 3 insertio...
2011 Jul 08
4
[PATCH 0/4] usr/kinit checkpatch
Various coding style fixes checkpatch warns about. The goal is not to be 100% checkpatch compliant, but to have more consistent coding style. As this is a trivial patch serie, will land in 24 hours in klibc git, unless of course ml review hits a bugger. Checked with size(3) that the generated kinit, fstype, ipconfig and nfsmount are the same. maximilian attems (4): [klibc] ipconfig: reduce