From owner-svn-src-all@freebsd.org Sat Feb 20 00:49:36 2016 Return-Path: Delivered-To: svn-src-all@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 5FC37AAEB66; Sat, 20 Feb 2016 00:49:36 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-yw0-x235.google.com (mail-yw0-x235.google.com [IPv6:2607:f8b0:4002:c05::235]) (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 1ED3A199C; Sat, 20 Feb 2016 00:49:36 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-yw0-x235.google.com with SMTP id h129so80621599ywb.1; Fri, 19 Feb 2016 16:49:36 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=Xj2tHl5EAdyUx/YeBLo//Ark3N4weU0A0VResVEYPDM=; b=xGbEcvo3XyNu3v9eFND+Sziz29h4quVkoavN8zPPtVNISrv42LZX1pIUiL9PZ931sg F495UekwtSdcxVNe/KbNnx+FTMsCa8ZanDI+Y7ShGVAi9shK33RJP8BCR00d+Am78WeE hKq8SxkJ6U4VkeV19rOIpV3OWjiXZ49XovYXd7WiLNBd5fHlP1rlNFIj3f1NUvEEDtkK nO+6BHKw6m5/ZaPhL6Kijy7S/B+VINJafhQKeh0nom4/eulWz9dHKQT+LLxgWgaD54Ik PqD9WcQEtN/0TcshzpadM+y2w7dN+bjtMbLu4Cq2GmKLspFDgVySx32OLog9Iv8ih/F4 Ek0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=Xj2tHl5EAdyUx/YeBLo//Ark3N4weU0A0VResVEYPDM=; b=EGPvsN3pg+rsUBkNG3fNUj0BtHP+OFxYODiWciXrP5soVQuKShidNMCn3GXC9Z0SBd yVb2EZW9A9Ok+byUMV1+17hlk5Y7m4ehSTPOhzIdIGZIolhAAvWAePjvQg39rc1/YJmj H7jvzMJZn2+qt5+d1kL2KCtUd/adUB3osqQ5saGP4VuYK2RX1oKQhFpYlKx3v2MK66tk Uld9jDGGKvdx2lEyuqJGj22X4swS+79fhkHYI6UY3mck6N7iVpOKP7M4dg4jwFXD5AVl 7mcF7WvUyh8ZDEdpz0qAoQFTF7WeyS6kF0Eml6RyiWaLZWEWnH3D7OxZq/2KU1X+ha/g NBZA== X-Gm-Message-State: AG10YOSu2OBnp5I091Fx6ahAiyzjl4TJQHGcGJKwSAIAtPNRDxzkJRqzL7Ah/lSrt7KkDjn3xIbwXrZK+McVZA== MIME-Version: 1.0 X-Received: by 10.129.40.78 with SMTP id o75mr9452613ywo.9.1455929375292; Fri, 19 Feb 2016 16:49:35 -0800 (PST) Received: by 10.37.210.9 with HTTP; Fri, 19 Feb 2016 16:49:35 -0800 (PST) In-Reply-To: <20160219230612.GR1945@FreeBSD.org> References: <201602182008.u1IK81vg092127@repo.freebsd.org> <20160219230612.GR1945@FreeBSD.org> Date: Fri, 19 Feb 2016 16:49:35 -0800 Message-ID: Subject: Re: svn commit: r295768 - head/usr.sbin/iostat From: Conrad Meyer To: Gleb Smirnoff Cc: Alan Somers , Sergey Kandaurov , "svn-src-head@freebsd.org" , "svn-src-all@freebsd.org" , "src-committers@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 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: Sat, 20 Feb 2016 00:49:36 -0000 On Fri, Feb 19, 2016 at 3:06 PM, Gleb Smirnoff wrote: > Isn't zero filling part of the standard? I don't see why lack of > explicit zeroing is a warning? Looks a false warning to me. Yep. This is Clang being too whiney, IMO. I think a good workaround is to add -Wno-missing-field-initializers to warn flags (but otherwise keep high WARNS). Best, Conrad