summaryrefslogtreecommitdiffstats
path: root/sys/fs/coda/coda_vnops.c
diff options
context:
space:
mode:
authorrwatson <rwatson@FreeBSD.org>2008-02-08 23:15:36 +0000
committerrwatson <rwatson@FreeBSD.org>2008-02-08 23:15:36 +0000
commit409c34ce7db65ef18e27486ee8aed6014b788431 (patch)
tree9a6abebe8d72eed5d22a53baaba0e55cd62c59ee /sys/fs/coda/coda_vnops.c
parent56c7e4a9b48b59ff8e320e5e4aac935d9b2dfcd7 (diff)
downloadFreeBSD-src-409c34ce7db65ef18e27486ee8aed6014b788431.zip
FreeBSD-src-409c34ce7db65ef18e27486ee8aed6014b788431.tar.gz
The Coda module was originally ported to NetBSD from Mach by rvb, and
then later to FreeBSD. Update various NetBSD-related comments: in some cases delete them because they don't appply, in others update to say FreeBSD as they still apply but in FreeBSD (and might for that matter no longer apply on NetBSD), and flag one case where I'm not sure whether it applies. MFC after: 1 month
Diffstat (limited to 'sys/fs/coda/coda_vnops.c')
-rw-r--r--sys/fs/coda/coda_vnops.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/sys/fs/coda/coda_vnops.c b/sys/fs/coda/coda_vnops.c
index 8e1e49d..6cb184d 100644
--- a/sys/fs/coda/coda_vnops.c
+++ b/sys/fs/coda/coda_vnops.c
@@ -95,10 +95,9 @@ int coda_vnop_print_entry = 0;
static int coda_lockdebug = 0;
/*
- * Some NetBSD details:
+ * Some FreeBSD details:
*
- * coda_start is called at the end of the mount syscall.
- * coda_init is called at boot time.
+ * codadev_modevent is called at boot time or module load time.
*/
#define ENTRY if(coda_vnop_print_entry) myprintf(("Entered %s\n",__func__))
@@ -184,7 +183,7 @@ int
coda_open(struct vop_open_args *ap)
{
/*
- * NetBSD can pass the O_EXCL flag in mode, even though the check
+ * FreeBSD can pass the O_EXCL flag in mode, even though the check
* has already happened. Venus defensively assumes that if open
* is passed the EXCL, it must be a bug. We strip the flag here.
*/
@@ -682,7 +681,11 @@ coda_fsync(struct vop_fsync_args *ap)
MARK_ENTRY(CODA_FSYNC_STATS);
/* Check for fsync on an unmounting object */
- /* The NetBSD kernel, in it's infinite wisdom, can try to fsync
+ /*
+ * XXX: Is this comment true on FreeBSD? It seems likely, since
+ * unmounting is fairly non-atomic.
+ *
+ * The NetBSD kernel, in it's infinite wisdom, can try to fsync
* after an unmount has been initiated. This is a Bad Thing,
* which we have to avoid. Not a legitimate failure for stats.
*/
@@ -797,7 +800,7 @@ coda_inactive(struct vop_inactive_args *ap)
*/
/*
- * It appears that in NetBSD, lookup is supposed to return the vnode locked
+ * In FreeBSD, lookup returns the vnode locked.
*/
int
coda_lookup(struct vop_lookup_args *ap)
@@ -884,7 +887,7 @@ coda_lookup(struct vop_lookup_args *ap)
* If we are creating, and this was the last name to be looked up,
* and the error was ENOENT, then there really shouldn't be an
* error and we can make the leaf NULL and return success. Since
- * this is supposed to work under Mach as well as NetBSD, we're
+ * this is supposed to work under Mach as well as FreeBSD, we're
* leaving this fn wrapped. We also must tell lookup/namei that
* we need to save the last component of the name. (Create will
* have to free the name buffer later...lucky us...)
OpenPOWER on IntegriCloud