svn commit: r273266 - in head: lib/libkvm sys/compat/freebsd32 sys/kern sys/sys

Adrian Chadd adrian at freebsd.org
Sun Oct 19 03:51:55 UTC 2014


.. actually, try this:

adrian at testbox1:~/work/freebsd/head/src % svn diff sys/kern/
Index: sys/kern/kern_intr.c
===================================================================
--- sys/kern/kern_intr.c        (revision 272839)
+++ sys/kern/kern_intr.c        (working copy)
@@ -362,8 +362,7 @@
 {
        struct intr_event *ie;
        cpuset_t *mask;
-       u_char cpu;
-       int n;
+       int cpu, n;

        mask = m;
        cpu = NOCPU;
@@ -377,7 +376,7 @@
                                continue;
                        if (cpu != NOCPU)
                                return (EINVAL);
-                       cpu = (u_char)n;
+                       cpu = n;
                }
        }
        ie = intr_lookup(irq);




-a


More information about the svn-src-all mailing list