Module Name: src
Committed By: ozaki-r
Date: Sat Jun 14 09:13:30 UTC 2014
Modified Files:
src/sys/arch/arm/arm: arm_machdep.c
Log Message:
Fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/sys/arch/arm/arm/arm_machdep.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/arm/arm/arm_machdep.c
diff -u src/sys/arch/arm/arm/arm_machdep.c:1.41 src/sys/arch/arm/arm/arm_machdep.c:1.42
--- src/sys/arch/arm/arm/arm_machdep.c:1.41 Wed Apr 16 22:33:07 2014
+++ src/sys/arch/arm/arm/arm_machdep.c Sat Jun 14 09:13:30 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: arm_machdep.c,v 1.41 2014/04/16 22:33:07 matt Exp $ */
+/* $NetBSD: arm_machdep.c,v 1.42 2014/06/14 09:13:30 ozaki-r Exp $ */
/*
* Copyright (c) 2001 Wasabi Systems, Inc.
@@ -78,7 +78,7 @@
#include <sys/param.h>
-__KERNEL_RCSID(0, "$NetBSD: arm_machdep.c,v 1.41 2014/04/16 22:33:07 matt Exp $");
+__KERNEL_RCSID(0, "$NetBSD: arm_machdep.c,v 1.42 2014/06/14 09:13:30 ozaki-r Exp $");
#include <sys/exec.h>
#include <sys/proc.h>
@@ -262,7 +262,7 @@ cpu_need_resched(struct cpu_info *ci, in
#endif
if (flags & RESCHED_KPREEMPT) {
#ifdef __HAVE_PREEMPTION
- atomic_or_uint(&l->l_dopreempt, DOPREEMPT_ACITBE);
+ atomic_or_uint(&l->l_dopreempt, DOPREEMPT_ACTIVE);
if (ci == cur_ci) {
softint_trigger(SOFTINT_KPREEMPT);
} else {