All of lore.kernel.org
 help / color / mirror / Atom feed
From: Greg KH <gregkh@linuxfoundation.org>
To: deller@kernel.org
Cc: linux-parisc@vger.kernel.org, Helge Deller <deller@gmx.de>,
	stable@vger.kernel.org
Subject: Re: [PATCH 1/3] parisc: led: Reduce CPU overhead for disk & lan LED computation
Date: Sat, 26 Aug 2023 09:34:59 +0200	[thread overview]
Message-ID: <2023082636-refreeze-plot-9f6e@gregkh> (raw)
In-Reply-To: <20230825180928.205499-1-deller@kernel.org>

On Fri, Aug 25, 2023 at 08:09:26PM +0200, deller@kernel.org wrote:
> From: Helge Deller <deller@gmx.de>
> 
> Older PA-RISC machines have LEDs which show the disk- and LAN-activity.
> The computation is done in software and takes quite some time, e.g. on a
> J6500 this may take up to 60% time of one CPU if the machine is loaded
> via network traffic.
> 
> Since most people don't care about the LEDs, start with LEDs disabled and
> just show a CPU heartbeat LED. The disk and LAN LEDs can be turned on
> manually via /proc/pdc/led.
> 
> Signed-off-by: Helge Deller <deller@gmx.de>
> Cc: <stable@vger.kernel.org>
> ---
>  drivers/parisc/led.c | 7 +++++--
>  1 file changed, 5 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/parisc/led.c b/drivers/parisc/led.c
> index 8bdc5e043831..765f19608f60 100644
> --- a/drivers/parisc/led.c
> +++ b/drivers/parisc/led.c
> @@ -56,8 +56,8 @@
>  static int led_type __read_mostly = -1;
>  static unsigned char lastleds;	/* LED state from most recent update */
>  static unsigned int led_heartbeat __read_mostly = 1;
> -static unsigned int led_diskio    __read_mostly = 1;
> -static unsigned int led_lanrxtx   __read_mostly = 1;
> +static unsigned int led_diskio    __read_mostly;
> +static unsigned int led_lanrxtx   __read_mostly;
>  static char lcd_text[32]          __read_mostly;
>  static char lcd_text_default[32]  __read_mostly;
>  static int  lcd_no_led_support    __read_mostly = 0; /* KittyHawk doesn't support LED on its LCD */
> @@ -589,6 +589,9 @@ int __init register_led_driver(int model, unsigned long cmd_reg, unsigned long d
>  		return 1;
>  	}
>  	
> +	pr_info("LED: Enable disk and LAN activity LEDs "
> +		"via /proc/pdc/led\n");

When drivers are working properly, they should be quiet.  Who is going
to see this message?

I don't even understand it, are you saying that you now need to go
enable the led through proc?  And why are leds in proc, I thought they
had a real class for them?  Why not use that instead?

And finally, you shouldn't split strings across lines :)

thanks,

greg k-h

  parent reply	other threads:[~2023-08-26  7:36 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-08-25 18:09 [PATCH 1/3] parisc: led: Reduce CPU overhead for disk & lan LED computation deller
2023-08-25 18:09 ` [PATCH 2/3] parisc: led: Switch LCD/LED driver to use a kthread deller
2023-08-25 18:09 ` [PATCH 3/3] parisc: chassis: Do not overwrite LCD display deller
2023-08-26  7:34 ` Greg KH [this message]
2023-08-26  7:54   ` [PATCH 1/3] parisc: led: Reduce CPU overhead for disk & lan LED computation Helge Deller
2023-08-26  7:58     ` Greg KH
2023-08-26  8:12       ` Helge Deller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2023082636-refreeze-plot-9f6e@gregkh \
    --to=gregkh@linuxfoundation.org \
    --cc=deller@gmx.de \
    --cc=deller@kernel.org \
    --cc=linux-parisc@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.