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=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,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 2F468C43603 for ; Tue, 10 Dec 2019 20:28:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 0F0882073D for ; Tue, 10 Dec 2019 20:28:14 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726860AbfLJU2L (ORCPT ); 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: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@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