From patchwork Wed Aug 21 08:46:44 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 13771075 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B3F1B1BA29E for ; Wed, 21 Aug 2024 08:46:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230016; cv=none; b=gBqJ+1QA7RvztF6HKy1gW2Ardx6YQd5eI/MoP/oL61zx8AikpMtZh1Yrw72hAdtUrRrukZbnCR7r9gcan/K1tLEa+DBMwfolSJmJkcL5B3rVq980axtSPNj4fihaDT4q27OOfXGfSN2ZowePybGDhiqtdHvG+x/y4gkZqJQeLRQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230016; c=relaxed/simple; bh=nRyQyVL5Ag79jXdEfkESG2e+d8YyMtNRLsS6JqdBYBk=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=dSKJKYXCExKXkgZPsNk4Mvsp+DeEjSSHgfJT6a5KRENq3H9vi3LcFVAXUMDeIdzuwHXkvKFYaQjrH5ipPf2tqgzcMp6qNM2ono3YG57ihFvEQliL+dhO9BIJ349ac9nHTWaEms/lwlYjznoPZ1Bl3ItpCGDh+WF0CYTtoiqqhWY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=ZB31mL6V; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="ZB31mL6V" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EF00DC4AF09; Wed, 21 Aug 2024 08:46:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1724230016; bh=nRyQyVL5Ag79jXdEfkESG2e+d8YyMtNRLsS6JqdBYBk=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=ZB31mL6VffT6J8fut081iPLwodonxU9+BmyoZL3re2/VC8yTd2BCl7ljK73CmZp5D vOa/ISDVlXMeuIVoUKI6m68/7Xka3TFGEV+adW45QrxoA21goh9UerEKWiOX1nMYOS 3MIoC+bziYGwSnxDt9ADTnbTsUmdTY+FL07yYqLjHU41hM9E2sfOKK+3AxvWoEmokf 2cpLpvPBlcg78aUgPMIpNcbOGq4mIwOZ6dxAh2Ne0pRPmwPilPraqH/4ZQ7TCzneIA QdSnEzxFE6g5BPS54kPDKAt+YgztW81SZNsJNOpo5YkhhPt79FrY4I5gn1QyV4WWOL C3dbxKCw8jLnA== From: Simon Horman Date: Wed, 21 Aug 2024 09:46:44 +0100 Subject: [PATCH net v2 1/5] MAINTAINERS: Add sonet.h to ATM section of MAINTAINERS Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240821-net-mnt-v2-1-59a5af38e69d@kernel.org> References: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> In-Reply-To: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Breno Leitao , Chas Williams <3chas3@gmail.com>, Guo-Fu Tseng , Moon Yeounsu , Richard Cochran , Willem de Bruijn , linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org X-Mailer: b4 0.14.0 X-Patchwork-Delegate: kuba@kernel.org This is part of an effort to assign a section in MAINTAINERS to header files that relate to Networking. In this case the files with "net" in their name. It seems that sonet.h is included in ATM related source files, and thus that ATM is the most relevant section for these files. Cc: Chas Williams <3chas3@gmail.com> Signed-off-by: Simon Horman --- MAINTAINERS | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index a964a34651f5..c682203915a2 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -3504,7 +3504,9 @@ S: Maintained W: http://linux-atm.sourceforge.net F: drivers/atm/ F: include/linux/atm* +F: include/linux/sonet.h F: include/uapi/linux/atm* +F: include/uapi/linux/sonet.h ATMEL MACB ETHERNET DRIVER M: Nicolas Ferre From patchwork Wed Aug 21 08:46:45 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 13771076 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 2ADF41A4ABA for ; Wed, 21 Aug 2024 08:46:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230019; cv=none; b=g7Q2GOT069noZJWTlWGxWr1iPu92sdVw6SFDg4cvYdcDz/D2rfm6GIH+9lKOTp65A9kWb1X7gelfYJyMiqZWiUp7nquz//JHFuhgheILMFYsih7+YKwwV5BWCQyDptRp1gRuMKP2N7LOI7lDPT3whRTrPrzj+fwhIqtXTGQiHuA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230019; c=relaxed/simple; bh=hflxzg9wTZcvaLmFqc3rwQHLsNSr7cJAgJZVaNI8H48=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=agiV0JYbsrh9VCBiHyR+P7AYkaXQlbmEyV3zL9N5BzWPKlCJmhAkgoO+CL69W+SYJBd1HFbNPMyiZvV3E/p1rCgmNl8YDpC7h0fZCJJdcnqpz9y7yq6v+QedlPtFWRyivlPJExMREnVJ6IR2591ZAvOaFdB5xTm1oyeymfnsric= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=fVXW2Bmg; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="fVXW2Bmg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 8D6D8C4AF0E; Wed, 21 Aug 2024 08:46:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1724230018; bh=hflxzg9wTZcvaLmFqc3rwQHLsNSr7cJAgJZVaNI8H48=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=fVXW2BmgDXFAZ6TqLmryoXJeGZSnGgFd4p4uAd081AKNVYvyFOevaRm8K3lvCtMOA nOkxNz9ZnrkLm5JX9RqC+4fH6KzDbocAUa7JLnBs/6gEcBFxGh+aART0f8l8+D1aP0 +2VxpXptBRMurj2kN6dHT7NBpkpB6SS67baWAMicVLowkLXuG1KDeJygq7idtki4HU fyxH6AySI04WSDumE7+CcDznCOEz9a9lcZj2KeNEPnTYC/PxdHV39NYc3aKVqjgwWD NHPLcJwCLBJuK1P8OtFFtYrvLMqrKKbojIuNBJLthebUs3UG9AQ7SXrPa+XR0g9V6J N28uAskF0/wog== From: Simon Horman Date: Wed, 21 Aug 2024 09:46:45 +0100 Subject: [PATCH net v2 2/5] MAINTAINERS: Add net_tstamp.h to SOCKET TIMESTAMPING section Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240821-net-mnt-v2-2-59a5af38e69d@kernel.org> References: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> In-Reply-To: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Breno Leitao , Chas Williams <3chas3@gmail.com>, Guo-Fu Tseng , Moon Yeounsu , Richard Cochran , Willem de Bruijn , linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org X-Mailer: b4 0.14.0 X-Patchwork-Delegate: kuba@kernel.org This is part of an effort to assign a section in MAINTAINERS to header files that relate to Networking. In this case the files with "net" in their name. Cc: Richard Cochran Cc: Willem de Bruijn Signed-off-by: Simon Horman Acked-by: Willem de Bruijn --- v2: Add to SOCKET TIMESTAMPING rather than PTP HARDWARE CLOCK SUPPORT section. This seems more appropriate given that include/uapi/linux/net_tstamp.h is already in the SOCKET TIMESTAMPING section. --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index c682203915a2..e5b9a4d9bc21 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -21057,6 +21057,7 @@ SOCKET TIMESTAMPING M: Willem de Bruijn S: Maintained F: Documentation/networking/timestamping.rst +F: include/linux/net_tstamp.h F: include/uapi/linux/net_tstamp.h F: tools/testing/selftests/net/so_txtime.c From patchwork Wed Aug 21 08:46:46 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 13771077 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7F6301531F3 for ; Wed, 21 Aug 2024 08:47:01 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230021; cv=none; b=S9sUB/yBxOnU66WPepmELGimMLBE/SKEfvIV3qKtsawMgqjZ/RSnemK6OtW6MB8Tiu1/1YmZCHwWqZvBZc1oMzq2fo2Jd1qxX587B5LnN4T7wuj5Y8Kwj12ZYOw0mGrdyapqkxQZoNK+kzdxY3MN/L2/fyOp2VeXXlKmquiSvlA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230021; c=relaxed/simple; bh=H2TDaiqZYzOyYCq0VSiQLOb/ZMsbpZg32lxy9IBwK9o=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=QsKGf63LUCR/t1utjF7HQjk+De6qUyuCQC4lQXaYYiap/p/ghR+NEiJDoc0wfGE2Qaj1EI18Lj0kQGo12RjLLSc2H7vw+gIruMVcjCKfJg/RduT7P2TsV1xyh4XoNFBqn7KxU49raJjdyUBFKpCLbn2ARnmNGt4RIPg0Nm1L768= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=TibkXgn8; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="TibkXgn8" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2BE8EC32782; Wed, 21 Aug 2024 08:46:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1724230021; bh=H2TDaiqZYzOyYCq0VSiQLOb/ZMsbpZg32lxy9IBwK9o=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=TibkXgn8h2L9eP3eB/cMA4f5VumZU282OG5YCYzo1oLC17c66DjMKU+qKJT9gBA0k XdHdYwrFWsQry7qRgBQCp+j2aUURpUcu7t9LwHf4HF5QEaHAAMm5b5b172MwipJ6Vj ovayQry6NRWi7wkhFjSjuE2aFoEkbm/r7rMKehpkLLnrubDtysaB95xMZPmwclWrzg +rioVmMsp2F1lwVCe35CWivL0yZOTE79O8uobuA0DWSU9pE7EVLadC5y0s2GlvzBYX Wz98XoJSDwuS3CwH6AmwQ02B6+7uP/XaUmwttv2Lj649NvTNuf0KDEYHrrXKQhtOoI UKDYEPHvEkGqg== From: Simon Horman Date: Wed, 21 Aug 2024 09:46:46 +0100 Subject: [PATCH net v2 3/5] MAINTAINERS: Add limited globs for Networking headers Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240821-net-mnt-v2-3-59a5af38e69d@kernel.org> References: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> In-Reply-To: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Breno Leitao , Chas Williams <3chas3@gmail.com>, Guo-Fu Tseng , Moon Yeounsu , Richard Cochran , Willem de Bruijn , linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org X-Mailer: b4 0.14.0 X-Patchwork-Delegate: kuba@kernel.org This aims to add limited globs to improve the coverage of header files in the NETWORKING DRIVERS and NETWORKING [GENERAL] sections. It is done so in a minimal way to exclude overlap with other sections. And so as not to require "X" entries to exclude files otherwise matched by these new globs. While imperfect, due to it's limited nature, this does extend coverage of header files by these sections. And aims to automatically cover new files that seem very likely belong to these sections. The include/linux/netdev* glob (both sections) + Subsumes the entries for: - include/linux/netdevice.h + Extends the sections to cover - include/linux/netdevice_xmit.h - include/linux/netdev_features.h The include/uapi/linux/netdev* globs: (both sections) + Subsumes the entries for: - include/linux/netdevice.h + Extends the sections to cover - include/linux/netdev.h The include/linux/skbuff* glob (NETWORKING [GENERAL] section only): + Subsumes the entry for: - include/linux/skbuff.h + Extends the section to cover - include/linux/skbuff_ref.h A include/uapi/linux/net_* glob was not added to the NETWORKING [GENERAL] section. Although it would subsume the entry for include/uapi/linux/net_namespace.h, which is fine, it would also extend coverage to: - include/uapi/linux/net_dropmon.h, which belongs to the NETWORK DROP MONITOR section - include/uapi/linux/net_tstamp.h which, as per an earlier patch in this series, belongs to the SOCKET TIMESTAMPING section Signed-off-by: Simon Horman --- v2: * New patch --- MAINTAINERS | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index e5b9a4d9bc21..03d571b131eb 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -15884,10 +15884,10 @@ F: include/linux/fddidevice.h F: include/linux/hippidevice.h F: include/linux/if_* F: include/linux/inetdevice.h -F: include/linux/netdevice.h +F: include/linux/netdev* F: include/uapi/linux/cn_proc.h F: include/uapi/linux/if_* -F: include/uapi/linux/netdevice.h +F: include/uapi/linux/netdev* F: tools/testing/selftests/drivers/net/ X: drivers/net/wireless/ @@ -15940,13 +15940,13 @@ F: include/linux/framer/framer.h F: include/linux/in.h F: include/linux/indirect_call_wrapper.h F: include/linux/net.h -F: include/linux/netdevice.h -F: include/linux/skbuff.h +F: include/linux/netdev* +F: include/linux/skbuff* F: include/net/ F: include/uapi/linux/in.h F: include/uapi/linux/net.h F: include/uapi/linux/net_namespace.h -F: include/uapi/linux/netdevice.h +F: include/uapi/linux/netdev* F: lib/net_utils.c F: lib/random32.c F: net/ From patchwork Wed Aug 21 08:46:47 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 13771078 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 5EADF1531F3 for ; Wed, 21 Aug 2024 08:47:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230024; cv=none; b=E+l1T/ZNYhlFqYWtTncd2HYXGnM/K8WBKiXXOcjBHBd8pe1ukWQ22PVB0QvEIfSTXN0nEQGSzCK0zy81E2ua8UJ9YBy0K7v5duin6AeNsxWh4ssh3O28XTLsTvcDpKvdJC1gGDI63kX5fxGB8uetJiWJUdX0Zauk+33PzuoVfjA= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230024; c=relaxed/simple; bh=+Zs1kYfYdpQXPl2PEO/eNnYnLBHTmoV6WrNatc++9cE=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=hbTpytEiVLkbqSCn4nhPfF6IksuBO/bkZ63R9T7nse19/dIcZfek1SQ0NpNS90+brP/LUgBY9MtsB/v4HjnLppzt8UYTF45o2J0nNT3EzpRic77dmNKHlEhxQhMnxLq5zAvcCWOLrTXGg4AzmuEr8kEp8A4O8vXYBBY1D+qEDXI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LKlHYQKX; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LKlHYQKX" Received: by smtp.kernel.org (Postfix) with ESMTPSA id BD5F4C4AF0C; Wed, 21 Aug 2024 08:47:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1724230023; bh=+Zs1kYfYdpQXPl2PEO/eNnYnLBHTmoV6WrNatc++9cE=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=LKlHYQKXj0XddMb1ALJ3gq5fCZTDKsK05GJfwaKZ0+cO78HauHV5v804VjjnqZ422 UqemVmVDWgVkYFLK9l/4BxILl3HKIx61gQwNhnP0hdjSQaMwhzES8kJhYiYKQBvklI E9YeRyHGFnFQT5qHEcypUzZP48qbxODe+4SZcur7dPv34Ct2QGonwF3pioTVKvrKPU tF2+lmqrlR0pl/QheJa0OI84L58jEnCgkX1HkfjiDHm3FwHccII74Yxul2lFog3rzN eBaajdl0LZFGYY4yn/FixxQpZLIuQu75QNxbRy/EoLxs2OSEcQK+pUcnZ1FxJjeMxo sQS0ArVPz5dFw== From: Simon Horman Date: Wed, 21 Aug 2024 09:46:47 +0100 Subject: [PATCH net v2 4/5] MAINTAINERS: Add header files to NETWORKING sections Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240821-net-mnt-v2-4-59a5af38e69d@kernel.org> References: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> In-Reply-To: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Breno Leitao , Chas Williams <3chas3@gmail.com>, Guo-Fu Tseng , Moon Yeounsu , Richard Cochran , Willem de Bruijn , linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org X-Mailer: b4 0.14.0 X-Patchwork-Delegate: kuba@kernel.org This is part of an effort to assign a section in MAINTAINERS to header files that relate to Networking. In this case the files with "net" or "skbuff" in their name. This patch adds a number of such files to the NETWORKING DRIVERS and NETWORKING [GENERAL] sections. Signed-off-by: Simon Horman --- v2: * Do not add net_shaper.h, it is not present upstream (hopefully soon :) * Update for new, earlier, patch in series which adds more globs --- MAINTAINERS | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 03d571b131eb..798f1ffcbbaa 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -15879,13 +15879,16 @@ F: drivers/net/ F: include/dt-bindings/net/ F: include/linux/cn_proc.h F: include/linux/etherdevice.h +F: include/linux/ethtool_netlink.h F: include/linux/fcdevice.h F: include/linux/fddidevice.h F: include/linux/hippidevice.h F: include/linux/if_* F: include/linux/inetdevice.h F: include/linux/netdev* +F: include/linux/platform_data/wiznet.h F: include/uapi/linux/cn_proc.h +F: include/uapi/linux/ethtool_netlink.h F: include/uapi/linux/if_* F: include/uapi/linux/netdev* F: tools/testing/selftests/drivers/net/ @@ -15939,14 +15942,28 @@ F: include/linux/framer/framer-provider.h F: include/linux/framer/framer.h F: include/linux/in.h F: include/linux/indirect_call_wrapper.h +F: include/linux/inet.h +F: include/linux/inet_diag.h F: include/linux/net.h F: include/linux/netdev* +F: include/linux/netlink.h +F: include/linux/netpoll.h +F: include/linux/rtnetlink.h +F: include/linux/seq_file_net.h F: include/linux/skbuff* F: include/net/ +F: include/uapi/linux/genetlink.h +F: include/uapi/linux/hsr_netlink.h F: include/uapi/linux/in.h +F: include/uapi/linux/inet_diag.h +F: include/uapi/linux/nbd-netlink.h F: include/uapi/linux/net.h F: include/uapi/linux/net_namespace.h +F: include/uapi/linux/netconf.h F: include/uapi/linux/netdev* +F: include/uapi/linux/netlink.h +F: include/uapi/linux/netlink_diag.h +F: include/uapi/linux/rtnetlink.h F: lib/net_utils.c F: lib/random32.c F: net/ From patchwork Wed Aug 21 08:46:48 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Horman X-Patchwork-Id: 13771079 X-Patchwork-Delegate: kuba@kernel.org Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id F2CB81531F3 for ; Wed, 21 Aug 2024 08:47:06 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230027; cv=none; b=FpA49ZOHvHQIvyvKva5tR30oQFDZBOmttMFRZPATqY4KqHyOvXt0WWCY+ydGPNZTkHbUeGabfGBp42WWmqhTb/pqooobmVdSC3D+aJGsTeol6+nbQhRPcVN8AydcqqYe8BY15BQO7356AXKycKhEsqk8s8rTpBNAttIwOpWf6O4= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1724230027; c=relaxed/simple; bh=EF6rcjnbAyuOIcoXhtB5ZpzrVxZ3f6YX3ls6ndmRpBM=; h=From:Date:Subject:MIME-Version:Content-Type:Message-Id:References: In-Reply-To:To:Cc; b=fSHs0TM/Tp75B3E3osiHO2/QwirkpmdpJ2PphfAtXqjZwAmghNerFl6DuXZdduxXTom6Ucy1B+BiCAY50X1mpxZAbgMVJIRJc8tERkWY2EZaCAmDfV2D0Rw4nP7qKYhL22OPxxJnS0OFs3sNSS1Als2niMbdkGzYbOlfvFlGqig= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=QW8bENAL; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="QW8bENAL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 58E6EC32782; Wed, 21 Aug 2024 08:47:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1724230026; bh=EF6rcjnbAyuOIcoXhtB5ZpzrVxZ3f6YX3ls6ndmRpBM=; h=From:Date:Subject:References:In-Reply-To:To:Cc:From; b=QW8bENALJmAUPXGAmc5jjPa5WolZAutvkm2iD0nvnYUZeAWi+RsaaIHhoxb/weCjS 40oaNFX20a/QALmoMsZRvMEFA0gEFdlfZuWpr4xcVLgI7/x1sf+u97COkCTizEoVXS VgC69U54Pm3KSuhzieyW56dZSb0eESthyMeB1V71LRuAVz/fclY6w3yp5DgMHp9Epj L4+rJg2u1QScQzm7+4jzAH5Ir7HXkQHq2tLtqaoN6qMlGeCkhykBFX21S1oK6mGuuQ UnMSJ47UxW37UFxh43uZqfjVwpZlLwUV4B81jZS4Hb7J45T6yTUCb1IgB7Wr8zjeoX pmmy1r+V8mTTw== From: Simon Horman Date: Wed, 21 Aug 2024 09:46:48 +0100 Subject: [PATCH net v2 5/5] MAINTAINERS: Mark JME Network Driver as Odd Fixes Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240821-net-mnt-v2-5-59a5af38e69d@kernel.org> References: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> In-Reply-To: <20240821-net-mnt-v2-0-59a5af38e69d@kernel.org> To: "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni Cc: Breno Leitao , Chas Williams <3chas3@gmail.com>, Guo-Fu Tseng , Moon Yeounsu , Richard Cochran , Willem de Bruijn , linux-atm-general@lists.sourceforge.net, netdev@vger.kernel.org X-Mailer: b4 0.14.0 X-Patchwork-Delegate: kuba@kernel.org This driver only appears to have received sporadic clean-ups, typically part of some tree-wide activity, and fixes for quite some time. And according to the maintainer, Guo-Fu Tseng, the device has been EOLed for a long time (see Link). Accordingly, it seems appropriate to mark this driver as odd fixes. Cc: Moon Yeounsu Cc: Guo-Fu Tseng Link: https://lore.kernel.org/netdev/20240805003139.M94125@cooldavid.org/ Signed-off-by: Simon Horman --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 798f1ffcbbaa..0c94ec0ca478 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -11995,7 +11995,7 @@ F: fs/jfs/ JME NETWORK DRIVER M: Guo-Fu Tseng L: netdev@vger.kernel.org -S: Maintained +S: Odd Fixes F: drivers/net/ethernet/jme.* JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)