From owner-svn-src-all@freebsd.org Fri May 18 22:36:50 2018 Return-Path: Delivered-To: svn-src-all@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 D7447EDEC1A; Fri, 18 May 2018 22:36:49 +0000 (UTC) (envelope-from mmacy@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 753156D2E7; Fri, 18 May 2018 22:36:49 +0000 (UTC) (envelope-from mmacy@freebsd.org) Received: from mail-it0-f53.google.com (mail-it0-f53.google.com [209.85.214.53]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) (Authenticated sender: mmacy) by smtp.freebsd.org (Postfix) with ESMTPSA id 2EF711E649; Fri, 18 May 2018 22:36:49 +0000 (UTC) (envelope-from mmacy@freebsd.org) Received: by mail-it0-f53.google.com with SMTP id j186-v6so15005450ita.5; Fri, 18 May 2018 15:36:49 -0700 (PDT) X-Gm-Message-State: ALKqPwdPYlCstw6nLnDSs5GGsnGe2wJPq1RxhxeQqwhlJwttXbFMk567 PAO11906KtmXifwB1dqFHpO2Qz8dQH0BPDpt6UU= X-Google-Smtp-Source: AB8JxZpTZREluQwLAV/Q00rrQgy9aqMeSnIVmiRCFEF52jliLEJH1lwKyHgVopwCJwdXYqqYSbhG+r1pBlicNwp4w74= X-Received: by 2002:a24:5a85:: with SMTP id v127-v6mr9217070ita.128.1526683008528; Fri, 18 May 2018 15:36:48 -0700 (PDT) MIME-Version: 1.0 References: <201805171930.w4HJUvPm018431@repo.freebsd.org> <61142337.Kuh28PEzu2@ralph.baldwin.cx> In-Reply-To: <61142337.Kuh28PEzu2@ralph.baldwin.cx> From: Matthew Macy Date: Fri, 18 May 2018 15:36:37 -0700 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r333757 - head/sys/sys To: John Baldwin Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.26 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 May 2018 22:36:50 -0000 Sorry, will do On Fri, May 18, 2018 at 15:29 John Baldwin wrote: > 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 >