lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sun, 21 Aug 2022 05:07:00 +0000
From:   "Elliott, Robert (Servers)" <elliott@....com>
To:     "<Vishal Badole>" <badolevishal1116@...il.com>
CC:     Stephen Boyd <sboyd@...nel.org>,
        "mturquette@...libre.com" <mturquette@...libre.com>,
        "inux-clk@...r.kernel.org" <inux-clk@...r.kernel.org>,
        "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
        "chinmoyghosh2001@...il.com" <chinmoyghosh2001@...il.com>,
        "mintupatel89@...il.com" <mintupatel89@...il.com>,
        "vimal.kumar32@...il.com" <vimal.kumar32@...il.com>
Subject: RE: [PATCH] Common clock: ​​To list active consumers of clocks



> -----Original Message-----
> From: <Vishal Badole> <badolevishal1116@...il.com>
> Sent: Monday, August 8, 2022 12:00 PM
> To: Elliott, Robert (Servers) <elliott@....com>
> Cc: Stephen Boyd <sboyd@...nel.org>; mturquette@...libre.com; inux-
> clk@...r.kernel.org; linux-kernel@...r.kernel.org; chinmoyghosh2001@...il.com;
> mintupatel89@...il.com; vimal.kumar32@...il.com
> Subject: Re: [PATCH] Common clock: ​​To list active consumers of clocks
> 
> On Tue, Aug 02, 2022 at 10:49:17PM +0000, Elliott, Robert (Servers) wrote:
> >
> >
> > > -----Original Message-----
> > > From: <Vishal Badole> <badolevishal1116@...il.com>
> > > Sent: Sunday, June 26, 2022 1:25 PM
> > > To: Stephen Boyd <sboyd@...nel.org>; mturquette@...libre.com; inux-
> > > clk@...r.kernel.org; linux-kernel@...r.kernel.org
> > > Cc: chinmoyghosh2001@...il.com; mintupatel89@...il.com;
> > > vimal.kumar32@...il.com
> > > Subject: Re: [PATCH] Common clock: ​​To list active consumers of clocks
> > >
> > ...
> > > We will remove above prints in the revised patch. We are facing
> > > indentation issue whle printing consumer in summary
> > > as given below
> > >                                  enable  prepare  protect
> duty  hardware            per-user
> > >   clock                          count    count    count
> rateccuracy phase  cycle    enable  consumer   count
> > >   clk_mcasp0_fixed                   0        0        0
> 24576000     0  50000         Y
> > >   deviceless        0
> >
> > Consider making the kernel output simple, greppable, and parseable (e.g.,
> > comma-separated fields, one entry per line, no multi-line column headers)
> > and let a userspace tool do the fancy formatting.
> >
> Hi Robert,
> We have raised another patch for the same. Please find the below link
> for reference:
> 
> https://www.spinics.net/lists/kernel/msg4459705.html

That output is still not parsable.

I suggest making the kernel output more like:
  clock,enable count,prepare count,protect count,rate,accuracy,phase,duty cycle,hardware enable,consumer,per-user count
  clk_mcasp0_fixed,0,0,0,24576000,0,0,50000,Y,deviceless,0
  clk_mcasp0,0,0,0,24576000,0,0,50000,N,simple-audio-card;cpu,0

and make a userspace program like lsmod, lscpu, lsblk, lspci, 
or lsusb to print the data with fancy columns or apply
other filters.

That allows adding or removing column headers, assuming the
userspace program doesn't hardcode assumptions about them.

Powered by blists - more mailing lists