From owner-svn-src-head@freebsd.org Fri May 18 22:29:19 2018 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 23190EDE81F; Fri, 18 May 2018 22:29:19 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from smtp.freebsd.org (unknown [IPv6:2610:1c1:1:606c::24b:4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "smtp.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C34E96CD60; Fri, 18 May 2018 22:29:18 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from ralph.baldwin.cx (ralph.baldwin.cx [66.234.199.215]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) (Authenticated sender: jhb) by smtp.freebsd.org (Postfix) with ESMTPSA id 859441E54F; Fri, 18 May 2018 22:29:18 +0000 (UTC) (envelope-from jhb@freebsd.org) From: John Baldwin To: Matt Macy Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r333757 - head/sys/sys Date: Fri, 18 May 2018 15:28:53 -0700 Message-ID: <61142337.Kuh28PEzu2@ralph.baldwin.cx> User-Agent: KMail/4.14.10 (FreeBSD/11.1-STABLE; KDE/4.14.30; amd64; ; ) In-Reply-To: <201805171930.w4HJUvPm018431@repo.freebsd.org> References: <201805171930.w4HJUvPm018431@repo.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.26 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: Fri, 18 May 2018 22:29:19 -0000 On Thursday, May 17, 2018 07:30:57 PM Matt Macy wrote: > Author: mmacy > Date: Thu May 17 19:30:57 2018 > New Revision: 333757 > URL: https://svnweb.freebsd.org/changeset/base/333757 > > Log: > epoch(9): missed add from r333755 > > Reported by: flo > Approved by: sbruno > > Modified: > head/sys/sys/proc.h > > Modified: head/sys/sys/proc.h > ============================================================================== > --- head/sys/sys/proc.h Thu May 17 19:10:13 2018 (r333756) > +++ head/sys/sys/proc.h Thu May 17 19:30:57 2018 (r333757) > @@ -322,6 +322,7 @@ struct thread { > u_char td_pri_class; /* (t) Scheduling class. */ > u_char td_user_pri; /* (t) User pri from estcpu and nice. */ > u_char td_base_user_pri; /* (t) Base user pri */ > + u_char td_pre_epoch_prio; > uintptr_t td_rb_list; /* (k) Robust list head. */ > uintptr_t td_rbp_list; /* (k) Robust priv list head. */ > uintptr_t td_rb_inact; /* (k) Current in-action mutex loc. */ Can you annotate the locking for this field for future readers? -- John Baldwin