Module Name:    src
Committed By:   ad
Date:           Sun Nov 24 15:37:39 UTC 2019

Modified Files:
        src/sys/arch/mips/mips: cpu_subr.c

Log Message:
Typo.


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/sys/arch/mips/mips/cpu_subr.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/mips/mips/cpu_subr.c
diff -u src/sys/arch/mips/mips/cpu_subr.c:1.36 src/sys/arch/mips/mips/cpu_subr.c:1.37
--- src/sys/arch/mips/mips/cpu_subr.c:1.36	Sat Nov 23 19:40:35 2019
+++ src/sys/arch/mips/mips/cpu_subr.c	Sun Nov 24 15:37:39 2019
@@ -1,4 +1,4 @@
-/*	$NetBSD: cpu_subr.c,v 1.36 2019/11/23 19:40:35 ad Exp $	*/
+/*	$NetBSD: cpu_subr.c,v 1.37 2019/11/24 15:37:39 ad Exp $	*/
 
 /*-
  * Copyright (c) 2010, 2019 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.36 2019/11/23 19:40:35 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: cpu_subr.c,v 1.37 2019/11/24 15:37:39 ad Exp $");
 
 #include "opt_cputype.h"
 #include "opt_ddb.h"
@@ -495,7 +495,7 @@ cpu_need_resched(struct cpu_info *ci, st
 #endif
 		return;
 	}
-	if ((flags & RESSCHED_REMOTE) != 0) {
+	if ((flags & RESCHED_REMOTE) != 0) {
 #ifdef MULTIPROCESSOR
 		cpu_send_ipi(ci, IPI_AST);
 #endif

Reply via email to