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:   Wed, 31 Aug 2022 15:53:15 +0200
From:   Linus Walleij <linus.walleij@...aro.org>
To:     Andy Shevchenko <andriy.shevchenko@...el.com>
Cc:     Mark Brown <broonie@...nel.org>, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2 v5] regmap: Support accelerated noinc operations

On Tue, Aug 30, 2022 at 6:36 PM Andy Shevchenko
<andriy.shevchenko@...el.com> wrote:
> On Tue, Aug 16, 2022 at 10:48:31PM +0200, Linus Walleij wrote:

> > +                     ret = regcache_write(map, reg, lastval);
> > +                     if (ret != 0)
>
> if (ret) ?

This was done to follow the style of the rest of the .c file.

Could be patched everywhere though.

> > +             dev_info(map->dev, "%x %s [", reg, write ? "<=" : "=>");
> > +             for (i = 0; i < val_len; i++) {
> > +                     switch (val_bytes) {
> > +                     case 1:
> > +                             pr_cont("%x", u8p[i]);
> > +                             break;
> > +                     case 2:
> > +                             pr_cont("%x", u16p[i]);
> > +                             break;
> > +                     case 4:
> > +                             pr_cont("%x", u32p[i]);
> > +                             break;
> > +#ifdef CONFIG_64BIT
> > +                     case 8:
> > +                             pr_cont("%llx", u64p[i]);
> > +                             break;
> > +#endif
> > +                     default:
> > +                             break;
> > +                     }
> > +                     if (i == (val_len - 1))
> > +                             pr_cont("]\n");
> > +                     else
> > +                             pr_cont(",");
> > +             }
>
> I'm wondering why we can't use hex_dump_to_buffer() approach? Or even better,
> introduce eventually dev_hex_dump() (as it's done for seq_file and printk)
> and use it.

Hmmmmm this is under regmap_should_log() which turns on
dev_info() simple prints like x <= y and y => x to the console.
e.g. dev_info(map->dev, "%x <= %x\n", reg, val);
It would be rather print_hex_dump() the problem being
that hex_dump_* accessors assumes line oriented
linebufs "must be 16 or 32" (values per line), and here we probably
don't want that:
we want to show what we shoehorned into the FIFO.

Yours,
Linus Walleij

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ