commit | 3022c6a1b4b76c40aab9dcdf5142c501f3d3ae8c | [log] [tgz] |
---|---|---|
author | Dan Williams <[email protected]> | Thu Jun 25 16:51:03 2020 -0700 |
committer | Greg Kroah-Hartman <[email protected]> | Wed Jul 01 19:16:30 2020 +0200 |
tree | 0dee6f3f0602b3d13069f589dde950bc90854068 | |
parent | 9ebcfadb0610322ac537dd7aa5d9cbc2b2894c68 [diff] |
driver-core: Introduce DEVICE_ATTR_ADMIN_{RO,RW} A common pattern for using plain DEVICE_ATTR() instead of DEVICE_ATTR_RO() and DEVICE_ATTR_RW() is for attributes that want to limit read to only root. I.e. many users of DEVICE_ATTR() are specifying 0400 or 0600 for permissions. Given the expectation that CAP_SYS_ADMIN is needed to access these sensitive attributes and an explicit helper with the _ADMIN_ identifier for DEVICE_ATTR_ADMIN_{RO,RW}. Cc: "Rafael J. Wysocki" <[email protected]> Signed-off-by: Dan Williams <[email protected]> Link: https://lore.kernel.org/r/159312906372.1850128.11611897078988158727.stgit@dwillia2-desk3.amr.corp.intel.com Signed-off-by: Greg Kroah-Hartman <[email protected]>