From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 48B46C2D0CF for ; Tue, 24 Dec 2019 09:45:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9C38D206CB for ; Tue, 24 Dec 2019 09:45:51 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=lunn.ch header.i=@lunn.ch header.b="N36NasjL" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726269AbfLXJpu (ORCPT ); Tue, 24 Dec 2019 04:45:50 -0500 Received: from vps0.lunn.ch ([185.16.172.187]:39056 "EHLO vps0.lunn.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726084AbfLXJpu (ORCPT ); Tue, 24 Dec 2019 04:45:50 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lunn.ch; s=20171124; h=In-Reply-To:Content-Type:MIME-Version:References:Message-ID: Subject:Cc:To:From:Date:Sender:Reply-To:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=CmZQpfF2KKqCrQSDgtE1O/PMKGP2vPbKUhGPW2McPRs=; b=N36NasjLedBvnaJrK5WjjpVduR sERBFVPgJ7/8ItPkYl3JJe8Zrd6M7jyV9D3fmGWzlhKKbaxMRwLhoRc02ynKqmNM5AHubm5VqGe6Q AQ9FT4jxWgMaWmnfGapj06acX7jRhB44QhJyAAVdwT1QYF5Kcrcs2UeySA00vBa5Jazc=; Received: from andrew by vps0.lunn.ch with local (Exim 4.93) (envelope-from ) id 1ijgku-00015i-Gl; Tue, 24 Dec 2019 10:45:32 +0100 Date: Tue, 24 Dec 2019 10:45:32 +0100 From: Andrew Lunn To: Michal Kubecek Cc: David Miller , netdev@vger.kernel.org, Jakub Kicinski , Jiri Pirko , Florian Fainelli , John Linville , Stephen Hemminger , Johannes Berg , linux-kernel@vger.kernel.org Subject: Re: [PATCH net-next v8 01/14] ethtool: introduce ethtool netlink interface Message-ID: <20191224094532.GA3395@lunn.ch> References: <580d57d8cef89dd2a84d63f1a78a0d9a9b3d458f.1577052887.git.mkubecek@suse.cz> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <580d57d8cef89dd2a84d63f1a78a0d9a9b3d458f.1577052887.git.mkubecek@suse.cz> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Dec 23, 2019 at 12:45:19AM +0100, Michal Kubecek wrote: > Basic genetlink and init infrastructure for the netlink interface, register > genetlink family "ethtool". Add CONFIG_ETHTOOL_NETLINK Kconfig option to > make the build optional. Add initial overall interface description into > Documentation/networking/ethtool-netlink.rst, further patches will add more > detailed information. > > Signed-off-by: Michal Kubecek Reviewed-by: Andrew Lunn Andrew