From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x102d.google.com (mail-pj1-x102d.google.com [IPv6:2607:f8b0:4864:20::102d]) by sourceware.org (Postfix) with ESMTPS id 6FE233858D28 for ; Sat, 4 Dec 2021 07:50:53 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 6FE233858D28 Received: by mail-pj1-x102d.google.com with SMTP id y14-20020a17090a2b4e00b001a5824f4918so6932427pjc.4 for ; Fri, 03 Dec 2021 23:50:53 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=lMSEsiVt/omvHzuuOQ/FMaKxs61MGGvZ3IenzuwgFw4=; b=5hTBYQsneKAVS/Fz3WGcPdI63uwx39439nGGGUOzanSVvIjlnl4BzvkOwMHHvNZgPL hndXcKkbdl6jRBjhNy4cld47r5mkXBl3/PlPUoY0Ur8UTnWPtomy0zuy7rxmahHpEatx 5NnEVZuQ6oe84UHpZKKrIONXo3KXRzRH3i4G81w6e+UDvqrhmhvZuTN+8D6uyvQar80c EP4YDRxOHYj8QGnd+KwSgC/O/cAd5ICZNpLG0y5vviBAj4vUhn2bdeznN9aALv1JOdvj 7t+WktOEb7ZYTHqvmPGsKnN7otTGuM6xh+840L2Q9dZXnKEVmggoEzCcn7QFQZ2k/XU/ Rapw== X-Gm-Message-State: AOAM53046wOTMa7Q/seOVu0kvrLOMAhUkaaPGesaqiOQ1q+0SWGzS94c AK05ZzBQvd0WGRtaRvyGji0= X-Google-Smtp-Source: ABdhPJwpiAr76QlXTk6QovGWCYBqwaNcKLxo2KDdfnr2n77xglHw8rjFGcEua2md1xnPOH0YFMyn0Q== X-Received: by 2002:a17:902:dac7:b0:141:e931:3aff with SMTP id q7-20020a170902dac700b00141e9313affmr28940024plx.50.1638604252568; Fri, 03 Dec 2021 23:50:52 -0800 (PST) Received: from localhost ([2409:10:24a0:4700:e8ad:216a:2a9d:6d0c]) by smtp.gmail.com with ESMTPSA id q18sm5202326pfn.83.2021.12.03.23.50.51 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 03 Dec 2021 23:50:51 -0800 (PST) Date: Sat, 4 Dec 2021 16:50:50 +0900 From: Stafford Horne To: Adhemerval Zanella Cc: libc-alpha@sourceware.org Subject: Re: [PATCH 6/6] linux: Add generic ioctl implementation Message-ID: References: <20211122185437.1934590-1-adhemerval.zanella@linaro.org> <20211122185437.1934590-7-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20211122185437.1934590-7-adhemerval.zanella@linaro.org> X-Spam-Status: No, score=-4.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Dec 2021 07:50:55 -0000 On Mon, Nov 22, 2021 at 03:54:37PM -0300, Adhemerval Zanella wrote: > The powerpc is refactor to use the default implementation. > --- > sysdeps/unix/sysv/linux/internal-ioctl.h | 25 +++++++ > sysdeps/unix/sysv/linux/ioctl.c | 49 +++++++++++++ > .../unix/sysv/linux/powerpc/internal-ioctl.h | 46 +++++++++++++ > sysdeps/unix/sysv/linux/powerpc/ioctl.c | 68 ------------------- > 4 files changed, 120 insertions(+), 68 deletions(-) > create mode 100644 sysdeps/unix/sysv/linux/internal-ioctl.h > create mode 100644 sysdeps/unix/sysv/linux/ioctl.c > create mode 100644 sysdeps/unix/sysv/linux/powerpc/internal-ioctl.h > delete mode 100644 sysdeps/unix/sysv/linux/powerpc/ioctl.c I don't see this pushed upstream yet. Just in case you forgot. -Stafford