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=-2.3 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_1 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 0691CC3A5A2 for ; Tue, 3 Sep 2019 14:44:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CA40720882 for ; Tue, 3 Sep 2019 14:44:36 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567521876; bh=IhGXHwl5XrLg8zDbGMUIHlOTwWh1bRkmnfaNfv22OF4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=j0EpWv8DjUpNbBc6a2/m84m4vchiQ/IdA+/w0MfJwQgnnJA9srKyJsOBv/vygCjdq bnqXKmWwQ2iaBIhjrE3lagkQ5dIzKeqmDDAQmN/lRrish83s2L8UOvFkvxjWZ979ru d4kHn1HkbNOIZRqZfHCpBG1e2oUjqyr2pS+KRoGg= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725782AbfICOog (ORCPT ); Tue, 3 Sep 2019 10:44:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:37314 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727005AbfICOog (ORCPT ); Tue, 3 Sep 2019 10:44:36 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 8807E20828; Tue, 3 Sep 2019 14:44:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1567521875; bh=IhGXHwl5XrLg8zDbGMUIHlOTwWh1bRkmnfaNfv22OF4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=F5Ojjj4ki4dxgC/3ESM+Eiluk4MEoUyDkFtvL3vv8M2zu0g6tdgPgTofXAKkVW2W/ OBFmTpZI5UePSu4NJJDX0Xg0EZPVjNRSNm/n6jXbwOQ5uZL3Ew5HifMfQbPE2fHvLu cKJDhWdW0Id7VdVgwaUbv6bRx+efaWDbk4LlrYCs= Date: Tue, 3 Sep 2019 16:44:32 +0200 From: Greg KH To: Akinobu Mita Cc: Jacek Anaszewski , linux-leds@vger.kernel.org, LKML , Pavel Machek , Dan Murphy Subject: Re: [PATCH] leds: remove PAGE_SIZE limit of /sys/class/leds//trigger Message-ID: <20190903144432.GA12889@kroah.com> References: <1567090164-6819-1-git-send-email-akinobu.mita@gmail.com> <6ebeedab-4a7f-14ea-d62e-9184e911047f@gmail.com> <20190902181207.GA18577@kroah.com> <1cd468a3-b6e5-a93b-739a-f30288318356@gmail.com> <20190902190843.GB25019@kroah.com> <20190903140719.GA9506@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.12.1 (2019-06-15) Sender: linux-leds-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-leds@vger.kernel.org On Tue, Sep 03, 2019 at 11:21:59PM +0900, Akinobu Mita wrote: > 2019年9月3日(火) 23:07 Greg KH : > > > > On Tue, Sep 03, 2019 at 10:55:40PM +0900, Akinobu Mita wrote: > > > 2019年9月3日(火) 4:08 Greg KH : > > > > > > > > On Mon, Sep 02, 2019 at 08:47:02PM +0200, Jacek Anaszewski wrote: > > > > > On 9/2/19 8:12 PM, Greg KH wrote: > > > > > > On Sun, Sep 01, 2019 at 06:53:34PM +0200, Jacek Anaszewski wrote: > > > > > >> Hi Akinobu, > > > > > >> > > > > > >> Thank you for the patch. > > > > > >> > > > > > >> I have one nit below but in general it looks good to me. > > > > > >> I've tested it with 2000 mtd triggers (~14kB file size) > > > > > >> and it worked flawlessly. > > > > > >> > > > > > >> Still, I would like to have ack from Greg for it. > > > > > >> > > > > > >> Adding Greg on Cc. > > > > > >> > > > > > >> On 8/29/19 4:49 PM, Akinobu Mita wrote: > > > > > >>> Reading /sys/class/leds//trigger returns all available LED triggers. > > > > > >>> However, the size of this file is limited to PAGE_SIZE because of the > > > > > >>> limitation for sysfs attribute. > > > > > >>> > > > > > >>> Enabling LED CPU trigger on systems with thousands of CPUs easily hits > > > > > >>> PAGE_SIZE limit, and makes it impossible to see all available LED triggers > > > > > >>> and which trigger is currently activated. > > > > > >>> > > > > > >>> This converts /sys/class/leds//trigger to bin attribute and removes > > > > > >>> the PAGE_SIZE limitation. > > > > > > > > > > > > But this is NOT a binary file. A sysfs binary file is used for when the > > > > > > kernel passes data to or from hardware without any parsing of the data > > > > > > by the kernel. > > > > > > > > > > > > You are not doing that here, you are abusing the "one value per file" > > > > > > rule of sysfs so much that you are forced to work around the limitation > > > > > > it put in place on purpose to keep you from doing stuff like this. > > > > > > > > > > > > Please fix this "correctly" by creating a new api that works properly > > > > > > and just live with the fact that this file will never work correctly and > > > > > > move everyone to use the new api instead. > > > > > > > > > > > > Don't keep on abusing the interface by workarounds like this, it is not > > > > > > ok. > > > > > > > > > > In the message [0] you pledged to give us exception for that, provided > > > > > it will be properly documented in the code. I suppose you now object > > > > > because the patch does not meet that condition. > > > > > > > > Well, I honestly don't remember writing that email, but it was 5 months > > > > and many thousands of emails ago :) > > > > > > > > Also, you all didn't document the heck out of this. So no, I really do > > > > not want to see this patch accepted as-is. > > > > > > > > > Provided that will be fixed, can we count on your ack for the > > > > > implementation of the solution you proposed? :-) > > > > > > > > Let's see the patch that actually implements what I suggested first :) > > > > > > I'd propose introducing a new procfs file (/proc/led-triggers) and new > > > /sys/class/leds//current-trigger api. > > > > > > Reading /proc/led-triggers file shows all available triggers. > > > This violates "one value per file", but it's a procfs file. > > > > No, procfs files are ONLY for process-related things. Don't keep the > > insanity of this file format by just moving it out of sysfs and into > > procfs :) > > I see. > > How about creating one file or directory for each led-trigger in > /sys/kernel/led-triggers directory? > > e.g. > > $ ls /sys/kernel/led-triggers > audio-micmute ide-disk phy0assoc > audio-mute kbd-altgrlock phy0radio > ... > hidpp_battery_3-full panic Fine with me if you think that will work.