From owner-svn-src-head@FreeBSD.ORG Sun Oct 19 03:51:55 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 65112EDE; Sun, 19 Oct 2014 03:51:55 +0000 (UTC) Received: from mail-wi0-x233.google.com (mail-wi0-x233.google.com [IPv6:2a00:1450:400c:c05::233]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A685E100; Sun, 19 Oct 2014 03:51:54 +0000 (UTC) Received: by mail-wi0-f179.google.com with SMTP id d1so3863715wiv.6 for ; Sat, 18 Oct 2014 20:51:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=wdV0UVTWZ/32p2aWPJpaedb3lW8yOVOw5S1+8TuN2Rc=; b=p/jxTd3iy3udHfUcJOin0lfgBjUhg2cfJSc1hjwBPzd3s62XPztPf3JAqt4a35gS6L qc1/a96PH/h1SNaRduX3RlM7cQlD4+FDhZbjnm11VPEj/9WP+T6Ur0oY2P1gmyjJPXff nrGow8SB9fus3JX7HbJrSnuG/QUOCv8+9oK8BOEaQHnL5TS+kD6kszbvY6QI7pOrPDMf ozIwFqg90eTet5g3bptS5ZYa6eBcO1QyS3vcW9hcj72J7l2OZeE8WhmsObU1Nm2YmqyQ A0xz9Uq3l00V31XuGqMIguQmGGjicdmlFxe/9GeSboo8CthcKlcnRHX+wDKeWTpqnuca 7GEQ== MIME-Version: 1.0 X-Received: by 10.180.85.201 with SMTP id j9mr10014964wiz.26.1413690712893; Sat, 18 Oct 2014 20:51:52 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.216.106.136 with HTTP; Sat, 18 Oct 2014 20:51:52 -0700 (PDT) In-Reply-To: References: <201410181936.s9IJaCwu018930@svn.freebsd.org> <20141019032038.GA41067@onelab2.iet.unipi.it> Date: Sat, 18 Oct 2014 20:51:52 -0700 X-Google-Sender-Auth: hQzyHvxEdOEgfE9vZLhhw9B2jf4 Message-ID: Subject: Re: svn commit: r273266 - in head: lib/libkvm sys/compat/freebsd32 sys/kern sys/sys From: Adrian Chadd To: Luigi Rizzo Content-Type: text/plain; charset=UTF-8 Cc: "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Oct 2014 03:51:55 -0000 .. actually, try this: adrian@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