From owner-svn-src-head@freebsd.org Wed Sep 14 17:28:00 2016 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0F3BAC49CD; Wed, 14 Sep 2016 17:28:00 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from mail110.syd.optusnet.com.au (mail110.syd.optusnet.com.au [211.29.132.97]) by mx1.freebsd.org (Postfix) with ESMTP id 83D3C1A48; Wed, 14 Sep 2016 17:27:59 +0000 (UTC) (envelope-from brde@optusnet.com.au) Received: from c122-106-149-109.carlnfd1.nsw.optusnet.com.au (c122-106-149-109.carlnfd1.nsw.optusnet.com.au [122.106.149.109]) by mail110.syd.optusnet.com.au (Postfix) with ESMTPS id 667D2783A75; Thu, 15 Sep 2016 03:08:01 +1000 (AEST) Date: Thu, 15 Sep 2016 03:08:00 +1000 (EST) From: Bruce Evans X-X-Sender: bde@besplex.bde.org To: "Bjoern A. Zeeb" cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r305811 - head/sys/amd64/amd64 In-Reply-To: <201609141608.u8EG8O9H001240@repo.freebsd.org> Message-ID: <20160915030636.S2324@besplex.bde.org> References: <201609141608.u8EG8O9H001240@repo.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Optus-CM-Score: 0 X-Optus-CM-Analysis: v=2.1 cv=VIkg5I7X c=1 sm=1 tr=0 a=R/f3m204ZbWUO/0rwPSMPw==:117 a=L9H7d07YOLsA:10 a=9cW_t1CCXrUA:10 a=s5jvgZ67dGcA:10 a=kj9zAlcOel0A:10 a=fyqRzDaQBy3XwA4F9WMA:9 a=CjuIK1q_8ugA:10 X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.23 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: Wed, 14 Sep 2016 17:28:00 -0000 On Wed, 14 Sep 2016, Bjoern A. Zeeb wrote: > Log: > Try to fix LINT builds after r305807. Seems to be a simple s&r error > I missed while reading through the 1st time as well. Thanks. The fix looks right. > Modified: > head/sys/amd64/amd64/trap.c > > Modified: head/sys/amd64/amd64/trap.c > ============================================================================== > --- head/sys/amd64/amd64/trap.c Wed Sep 14 14:48:00 2016 (r305810) > +++ head/sys/amd64/amd64/trap.c Wed Sep 14 16:08:23 2016 (r305811) > @@ -934,7 +934,7 @@ amd64_syscall(struct thread *td, int tra > ksiginfo_t ksi; > > #ifdef DIAGNOSTIC > - if (!TRAPF_USERMODE(frame)) { > + if (!TRAPF_USERMODE(td->td_frame)) { > panic("syscall"); > /* NOT REACHED */ > } Bruce