All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH script] hwmon: Use octal not symbolic permissions
@ 2018-03-26 20:28 ` Joe Perches
  0 siblings, 0 replies; 16+ messages in thread
From: Joe Perches @ 2018-03-26 20:28 UTC (permalink / raw)
  To: Jean Delvare, Guenter Roeck
  Cc: linux-hwmon, linux-kernel, linuxppc-dev, linux-arm-kernel, patches

drivers/hwmon is the most frequent user of symbolic permissions
like S_IRUGO in the kernel tree.

$ git grep -w -P "S_[A-Z]{5,5}" | \
  cut -f1 -d: | cut -f1-2 -d"/" | sed -r 's/[A-Za-z0-9_-]+\.[ch]$//' | \
  sort | uniq -c | sort -rn | head
   3862 drivers/hwmon
    814 drivers/scsi
    763 drivers/net
    242 drivers/infiniband
    184 drivers/staging
    181 drivers/usb
    158 fs/proc
    150 fs/xfs
    148 fs/
    142 drivers/misc

But using octal and not symbolic permissions is preferred by many
as it can be more readable.

https://lkml.org/lkml/2016/8/2/1945

Rather than converting these piecemeal, perhaps just do them all
at once via a trivial script like the below:

$ git grep -w -P --name-only "S_[A-Z]{5,5}" drivers/hwmon | \
  xargs ./scripts/checkpatch.pl -f --types=symbolic_perms --fix-inplace
$ git grep -w -P --name-only "S_[A-Z]{5,5}" drivers/hwmon | \
  xargs ./scripts/checkpatch.pl -f --types=symbolic_perms --fix-inplace

It's run twice because checkpatch only does 1 conversion per line
and there are some multiple instance lines.

This currently results in a 669 KB patch which is too large
to post but can be easily generated when appropriate.

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2018-03-27 16:52 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-03-26 20:28 [PATCH script] hwmon: Use octal not symbolic permissions Joe Perches
2018-03-26 20:28 ` Joe Perches
2018-03-27  6:33 ` Guenter Roeck
2018-03-27  6:33   ` Guenter Roeck
2018-03-27  6:52   ` Joe Perches
2018-03-27  6:52     ` Joe Perches
2018-03-27  7:35   ` Joe Perches
2018-03-27  7:35     ` Joe Perches
2018-03-27 10:28     ` Guenter Roeck
2018-03-27 10:28       ` Guenter Roeck
2018-03-27 11:48       ` Joe Perches
2018-03-27 11:48         ` Joe Perches
2018-03-27 15:44         ` Guenter Roeck
2018-03-27 15:44           ` Guenter Roeck
2018-03-27 16:52           ` Joe Perches
2018-03-27 16:52             ` Joe Perches

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.