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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 51D32C25B07 for ; Wed, 10 Aug 2022 16:42:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231854AbiHJQmV (ORCPT ); Wed, 10 Aug 2022 12:42:21 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:44168 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233174AbiHJQmM (ORCPT ); Wed, 10 Aug 2022 12:42:12 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 3000E654D; Wed, 10 Aug 2022 09:42:10 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id 74B0FB81DDF; Wed, 10 Aug 2022 16:42:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C202DC433D6; Wed, 10 Aug 2022 16:42:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1660149728; bh=eCOtvMscSi4cHBDSAd7FmKCM1cDGiJfNa83trMk9xPg=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=HO5gRSiR9oyMHBFFyBJisSTxtRl9PkkT7XTYfJc5vaIFny6mZTmWUdv3D/VOSvia2 uMguoROvvzpORs9RJ3ASfZAgrwJxBINgDHGbviaKuwvaA93DcqEKambJwSLZKthqEp FTV4Fj4s2KPQF2k5RWf7L+oFwdd4uPKa+5QNbFRRo8nBvy9k84BbFGWkE+NmfOB2v+ jvAW35WcizxguKWMXZ9TS9FjqwBaSTxL0tYiUVwp5o17U/nML081OYXmGPU/Z4j9a0 il4srWfkVDyDpQzpLSijse1etDO1u9GZclKN78OCiqkQzMyCbM0UZARvtAlm2yc56y crnQpNo70LmcQ== Date: Wed, 10 Aug 2022 09:42:06 -0700 From: Jakub Kicinski To: Arnd Bergmann Cc: Jiri Slaby , davem@davemloft.net, pabeni@redhat.com, netdev@vger.kernel.org, Chas Williams <3chas3@gmail.com>, linux-atm-general@lists.sourceforge.net, Thomas Bogendoerfer , linux-mips@vger.kernel.org Subject: Re: [PATCH net-next 3/6] net: atm: remove support for ZeitNet ZN122x ATM devices Message-ID: <20220810094206.36dcfca8@kernel.org> In-Reply-To: References: <20220426175436.417283-1-kuba@kernel.org> <20220426175436.417283-4-kuba@kernel.org> <8576aef3-37e4-8bae-bab5-08f82a78efd3@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Wed, 10 Aug 2022 11:11:32 +0200 Arnd Bergmann wrote: > > This unfortunately breaks linux-atm: > > zntune.c:18:10: fatal error: linux/atm_zatm.h: No such file or directory > > > > The source does also: > > ioctl(s,ZATM_SETPOOL,&sioc) > > ioctl(s,zero ? ZATM_GETPOOLZ : ZATM_GETPOOL,&sioc) > > etc. > > > > So we should likely revert the below: > > I suppose there is no chance of also getting the linux-atm package updated > to not include those source files, right? The last release I found on > sourceforge > is 12 years old, but maybe I was looking in the wrong place. Is linux-atm used for something remotely modern? PPPoA? Maybe it's time to ditch it completely? I'll send the revert in any case.