Received: by 2002:a25:8b91:0:0:0:0:0 with SMTP id j17csp5847531ybl; Tue, 10 Dec 2019 12:29:09 -0800 (PST) X-Google-Smtp-Source: APXvYqy6hKweWGDH+xhZ0oJ+H7IptF5+4PgBuJxH4SRbqKiJfMQ4Vw1d/TN5KQMewpkELMEA4iyY X-Received: by 2002:a05:6830:12cc:: with SMTP id a12mr752246otq.73.1576009749528; Tue, 10 Dec 2019 12:29:09 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1576009749; cv=none; d=google.com; s=arc-20160816; b=YQEV/znBQweftWQuHtTe3/x7oCM3F5GENBciWnx7YsJ6M0ztJLh9rzKuaQNNaPSkRh jAvI6MRp8wDnaAIwkrl3eOddcxAzejcmLGllsImgtxI2wKITchaLBffCdoCxlMfn0kxj WjoArPxBJ+/GNSLlLuCbCtzWPToKN7+ZX5edag5lLwis0fULGSrLNMwDY4fUTDc+Du0a fZi+FjyHKsU9kkARwpdjzb7wPY8FoBgv8EJgNjHb3oELu6VFJ6N7Oijf/KxKG3Ou4O6G PtOuukMrc39FULtFNRImE5lWeoloiC4CZqruPQkG/Sqo3WtUMV9K6m/d3d2OqdA7/7WA ox9Q== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:date:cc:to:from:subject :message-id; bh=L5YkaCMqz7gnhByWE6KBH0HvLzmVyVRSzoXKGvwSvBY=; b=Z0V9O363rccKD2RSJp3tw9Xo5/ntrNnGm2kV0QdCenl7Kfg9r312M86twiPllLRksI 9KJOzQT+dHwWH7F7gowG2b7YvGvxEBiK2DNTVHSQqXsHxqQ5ORngirWrf4wO6PLb7vtK ijAXhJuFS9nD45710hO4Ne7Tm5W+7e56sYT82lXVzIe6x9hnHL9sXHL378A8F1Su2vjw dmyfS/gdm28qzTdaODAbPmOBMcO/6wmDUhKULaMdqgZGcd2PZKqr422Po0ILucrcFsD+ XYKJdfk8PpOw/xqwoyifUeIXxO5QW+DaH1dK8JqcrF9T1aQyvwH3KrdYGW3HT2AgDTRz kLig== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id w4si2682625oia.56.2019.12.10.12.28.57; Tue, 10 Dec 2019 12:29:09 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726879AbfLJU2L (ORCPT + 99 others); Tue, 10 Dec 2019 15:28:11 -0500 Received: from s3.sipsolutions.net ([144.76.43.62]:53542 "EHLO sipsolutions.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725999AbfLJU2K (ORCPT ); Tue, 10 Dec 2019 15:28:10 -0500 Received: by sipsolutions.net with esmtpsa (TLS1.3:ECDHE_SECP256R1__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.92.3) (envelope-from ) id 1iem6v-00205E-I2; Tue, 10 Dec 2019 21:27:57 +0100 Message-ID: Subject: Re: [PATCH net-next v2 4/5] ethtool: move string arrays into common file From: Johannes Berg To: Michal Kubecek , David Miller , netdev@vger.kernel.org Cc: Jakub Kicinski , Jiri Pirko , Andrew Lunn , Florian Fainelli , John Linville , Stephen Hemminger , linux-kernel@vger.kernel.org Date: Tue, 10 Dec 2019 21:27:54 +0100 In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 (3.34.2-1.fc31) MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > +++ b/net/ethtool/common.c > @@ -0,0 +1,85 @@ > +// SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note Is the Linux-syscall-note relevant here? This isn't really used for syscalls directly? The exception says it's "to mark user space API (uapi) header files so they can be included into non GPL compliant user space application code". > +++ b/net/ethtool/common.h > @@ -0,0 +1,17 @@ > +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ Same here. johannes