From owner-svn-src-all@freebsd.org Sun Apr 15 01:31:18 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 ABDC1F84DD5; Sun, 15 Apr 2018 01:31:18 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: from mail-io0-x22a.google.com (mail-io0-x22a.google.com [IPv6:2607:f8b0:4001:c06::22a]) (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)) by mx1.freebsd.org (Postfix) with ESMTPS id 416EB70C9D; Sun, 15 Apr 2018 01:31:18 +0000 (UTC) (envelope-from carpeddiem@gmail.com) Received: by mail-io0-x22a.google.com with SMTP id h9so630598iob.5; Sat, 14 Apr 2018 18:31:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=efd/wZu624ts3wSUjJ1tvDijWmJk1wXDx8O7YNzenmo=; b=LpkP+Iv9LhLgydlP7w9rdoLLkANJuea6HCaMAqzm6Xqb045M7yJf+xJu4RiB4pd6WW f0ZJ1sNLuJJWI6+nKo47N/LfZcoN9bG+72dnugZpEK3k/bDcCBcXZxwbCfkYJeXEeAkF SXYxhCTVaHzXvVrYw5nx/4K64/19z66uq5GW5oG/G5D/nh6lpAnSvWiFzjdF6VTrWgGk jUuv/aMxQUi6bpjKbLGH5crDiz/7hegtFw4JLwiCBYrleztyHLmzUnm7fsGnNjZuG1XZ qsskuSNu54edt9KaFiLUGQIuRDXE1mjUUarLpAna/M6pbKG66ff4IWNs36vDmQAbh/Fo B0XA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=efd/wZu624ts3wSUjJ1tvDijWmJk1wXDx8O7YNzenmo=; b=EycLuJAwLnvLlwYj6eq5Abm93lOYQVGH9APfnEmp2HojPuxs/a3PG4WbqvB/2ZdAmP JZaa827nCbbrRkoPvO1VS8iaq7FLKRXNUIBBe3dE90olrLLw+XSBw216DfvjE01V+RoP YF2ibCjckVfEMemfZpMmI0j4SnGlMQQSC/xN+qnvB/Go62FLMLsXrS+6nqOJZjbwiwAn VDEpyx2AoiToaugPD3Z/Psp4Ss1myQv6CNiwMCMpdvllt0hPa6tQYTPx9MuSeFete7uz jYmw9XHlZt5R8tWHUOMs43rFTTb/LXME9B5qDXirRaL9crz18iHGOuRbedpruYh6/jDL h5ew== X-Gm-Message-State: ALQs6tA+4p+0t7XBP2UZJDIEgkPi635qgyd6ZNh+7o/ZeIRKtEXwWl2X OHyqoeqBgw9ClPWhH+o5Skxl/7l/thBBSX5yR87OMQ== X-Google-Smtp-Source: AIpwx48p5uS7zhGkFnr93az2WQm7+UFhAI68Ap+DTvm9fbC6Z+LHodncZLOgKoUuCk1icRuPA0I0ELGilbyD33HUy0I= X-Received: by 10.107.134.85 with SMTP id i82mr18027091iod.210.1523755877579; Sat, 14 Apr 2018 18:31:17 -0700 (PDT) MIME-Version: 1.0 Sender: carpeddiem@gmail.com Received: by 10.107.130.197 with HTTP; Sat, 14 Apr 2018 18:30:57 -0700 (PDT) In-Reply-To: <201804142214.w3EMEIRu028631@repo.freebsd.org> References: <201804142214.w3EMEIRu028631@repo.freebsd.org> From: Ed Maste Date: Sat, 14 Apr 2018 21:30:57 -0400 X-Google-Sender-Auth: pP-AvvYIEgZQzWnLVGSVp0-9I1c Message-ID: Subject: Re: svn commit: r332509 - head/sys/i386/i386 To: Warner Losh Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 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: Sun, 15 Apr 2018 01:31:18 -0000 On 14 April 2018 at 18:14, Warner Losh wrote: > Author: imp > Date: Sat Apr 14 22:14:18 2018 > New Revision: 332509 > URL: https://svnweb.freebsd.org/changeset/base/332509 > > ... > even though we should eventually migrate to bool > and true/false (though the tables they are in are nicely packed with > short and wouldn't be so nicely packed with bool, another reason > to leave it alone for now). In practice it should be a no-op, replacing the 2-byte short i_has_modrm with the bool followed by a pad byte.