From owner-svn-src-head@FreeBSD.ORG Sun Oct 19 04:38:37 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A99EE361; Sun, 19 Oct 2014 04:38:37 +0000 (UTC) Received: from mail-wi0-x235.google.com (mail-wi0-x235.google.com [IPv6:2a00:1450:400c:c05::235]) (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 EB00A5E3; Sun, 19 Oct 2014 04:38:36 +0000 (UTC) Received: by mail-wi0-f181.google.com with SMTP id hi2so3885145wib.8 for ; Sat, 18 Oct 2014 21:38:34 -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=5q1hVFyoU0zYqNjhfLq9xup+wRw1clGnYna6FQ87aQI=; b=xsXP3HmH0jzF4vg6bEfPTzCsS+hRyGWFfPyz9Wdk8KxI69b8rksJ2JVVyxyDI8mKby +pVDhsUm2c87at8eUlHoahboVXdUGILvE5IjtCGXoaX36pZjc+GBUVJV6GkTV7pOQ6iV 1OxvnrRs19khR1blrnRNXKqXzaB7+G7Z1q/Rc/c5GXE+1w0QbK8rhFvoeGZth1H4+Ywr H7fD5IEnj8J22X/7a1WEUrztwF9qqUBxAihbMj2fE18Iqgiwkjb8r97Us18F4/z7dwcX qQSKm5lS/DtgxDNpzT12mkZgrGoZYEb+ikYq7eh8RoNRNy8quYm7wgCbPjPktINRW392 bZlA== MIME-Version: 1.0 X-Received: by 10.180.188.41 with SMTP id fx9mr9936328wic.59.1413693514446; Sat, 18 Oct 2014 21:38:34 -0700 (PDT) Sender: adrian.chadd@gmail.com Received: by 10.216.106.136 with HTTP; Sat, 18 Oct 2014 21:38:34 -0700 (PDT) In-Reply-To: References: <201410181936.s9IJaCwu018930@svn.freebsd.org> <20141019032038.GA41067@onelab2.iet.unipi.it> Date: Sat, 18 Oct 2014 21:38:34 -0700 X-Google-Sender-Auth: fSGx6Ce1UTcL9IodKTin37i2vVU 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 04:38:37 -0000 Rebuilt, tested, committed to -HEAD. Thanks! -a On 18 October 2014 20:51, Adrian Chadd wrote: > .. 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