Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/ufs/ufs the speed limit is 80
details: https://anonhg.NetBSD.org/src/rev/f45573cd7687
branches: trunk
changeset: 787297:f45573cd7687
user: christos <christos%NetBSD.org@localhost>
date: Sun Jun 09 18:54:05 2013 +0000
description:
the speed limit is 80
diffstat:
sys/ufs/ufs/ufs_vnops.c | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diffs (28 lines):
diff -r 8ca9e60351dc -r f45573cd7687 sys/ufs/ufs/ufs_vnops.c
--- a/sys/ufs/ufs/ufs_vnops.c Sun Jun 09 18:40:50 2013 +0000
+++ b/sys/ufs/ufs/ufs_vnops.c Sun Jun 09 18:54:05 2013 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ufs_vnops.c,v 1.214 2013/06/09 17:57:09 dholland Exp $ */
+/* $NetBSD: ufs_vnops.c,v 1.215 2013/06/09 18:54:05 christos Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@@ -66,7 +66,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: ufs_vnops.c,v 1.214 2013/06/09 17:57:09 dholland Exp $");
+__KERNEL_RCSID(0, "$NetBSD: ufs_vnops.c,v 1.215 2013/06/09 18:54:05 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_ffs.h"
@@ -503,7 +503,8 @@
action |= KAUTH_VNODE_HAS_SYSFLAGS;
}
- if ((vap->va_flags & SF_SETTABLE) != (ip->i_flags & SF_SETTABLE)) {
+ if ((vap->va_flags & SF_SETTABLE) !=
+ (ip->i_flags & SF_SETTABLE)) {
action |= KAUTH_VNODE_WRITE_SYSFLAGS;
changing_sysflags = true;
}
Home |
Main Index |
Thread Index |
Old Index