diff options
author | maxim <maxim@FreeBSD.org> | 2006-01-09 18:07:06 +0000 |
---|---|---|
committer | maxim <maxim@FreeBSD.org> | 2006-01-09 18:07:06 +0000 |
commit | 93d7e294fcdb0d064bd15e9208026d662d5c43ce (patch) | |
tree | 93a5572c134ff04eeb4f968560fd2835f981fd43 /sys | |
parent | a1f91b8354682372f4351fde74ab455b5819248c (diff) | |
download | FreeBSD-src-93d7e294fcdb0d064bd15e9208026d662d5c43ce.zip FreeBSD-src-93d7e294fcdb0d064bd15e9208026d662d5c43ce.tar.gz |
o Fix typo in the define: s/MRAK_INT_GEN/MARK_INT_GEN/. The typo
was harmless because the define is not used in coda_vfsops.c.
Submitted by: Hugo Meiland
Diffstat (limited to 'sys')
-rw-r--r-- | sys/coda/coda_vfsops.c | 2 | ||||
-rw-r--r-- | sys/fs/coda/coda_vfsops.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index 6effea7..28994c7 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -75,7 +75,7 @@ struct coda_op_stats coda_vfsopstats[CODA_VFSOPS_SIZE]; #define MARK_ENTRY(op) (coda_vfsopstats[op].entries++) #define MARK_INT_SAT(op) (coda_vfsopstats[op].sat_intrn++) #define MARK_INT_FAIL(op) (coda_vfsopstats[op].unsat_intrn++) -#define MRAK_INT_GEN(op) (coda_vfsopstats[op].gen_intrn++) +#define MARK_INT_GEN(op) (coda_vfsopstats[op].gen_intrn++) extern int coda_nc_initialized; /* Set if cache has been initialized */ extern int vc_nb_open(struct cdev *, int, int, struct thread *); diff --git a/sys/fs/coda/coda_vfsops.c b/sys/fs/coda/coda_vfsops.c index 6effea7..28994c7 100644 --- a/sys/fs/coda/coda_vfsops.c +++ b/sys/fs/coda/coda_vfsops.c @@ -75,7 +75,7 @@ struct coda_op_stats coda_vfsopstats[CODA_VFSOPS_SIZE]; #define MARK_ENTRY(op) (coda_vfsopstats[op].entries++) #define MARK_INT_SAT(op) (coda_vfsopstats[op].sat_intrn++) #define MARK_INT_FAIL(op) (coda_vfsopstats[op].unsat_intrn++) -#define MRAK_INT_GEN(op) (coda_vfsopstats[op].gen_intrn++) +#define MARK_INT_GEN(op) (coda_vfsopstats[op].gen_intrn++) extern int coda_nc_initialized; /* Set if cache has been initialized */ extern int vc_nb_open(struct cdev *, int, int, struct thread *); |