Displaying 5 results from an estimated 5 matches for "umount_v2".
Did you mean:
umount_v3
2009 Aug 11
1
nfs MNT include cleanup
...eclared identifier is reported only once
usr/kinit/nfsmount/mount.c:179: error: for each function it appears in.)
usr/kinit/nfsmount/mount.c: In function ?mount_v2?:
usr/kinit/nfsmount/mount.c:211: error: ?MNTPROC_MNT? undeclared (first use in this function)
usr/kinit/nfsmount/mount.c: In function ?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/k...
2012 Jun 28
0
[klibc:master] nfsmount: Fix wrong NFS umount path
...4..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
...4..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.
...> usr/kinit/nfsmount/mount.c:179: error: for each function it appears in.)
> usr/kinit/nfsmount/mount.c: In function 'mount_v2':
> usr/kinit/nfsmount/mount.c:211: error: 'MNTPROC_MNT' undeclared (first use in this function)
> usr/kinit/nfsmount/mount.c: In function '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/...
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