summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/bin
diff options
context:
space:
mode:
authorHeiko Carstens <hca@linux.ibm.com>2025-11-26 15:07:05 +0100
committerJakub Kicinski <kuba@kernel.org>2025-11-28 19:20:27 -0800
commitc940be4c7c75684799d5bff495ac9c48ca19f183 (patch)
tree57a000e0076657a42cbb6cddfb1b1a795da9b793 /tools/perf/scripts/python/bin
parented01d2069e8b40eb283050b7119c25a67542a585 (diff)
downloadkernel-c940be4c7c75684799d5bff495ac9c48ca19f183.tar.gz
net: Remove KMSG_COMPONENT macro
The KMSG_COMPONENT macro is a leftover of the s390 specific "kernel message catalog" from 2008 [1] which never made it upstream. The macro was added to s390 code to allow for an out-of-tree patch which used this to generate unique message ids. Also this out-of-tree patch doesn't exist anymore. The pattern of how the KMSG_COMPONENT macro is used can also be found at some non s390 specific code, for whatever reasons. Besides adding an indirection it is unused. Remove the macro in order to get rid of a pointless indirection. Replace all users with the string it defines. In all cases this leads to a simple replacement like this: - #define KMSG_COMPONENT "af_iucv" - #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt + #define pr_fmt(fmt) "af_iucv: " fmt [1] https://lwn.net/Articles/292650/ Signed-off-by: Heiko Carstens <hca@linux.ibm.com> Acked-by: Alexandra Winter <wintera@linux.ibm.com> Acked-by: Julian Anastasov <ja@ssi.bg> Acked-by: Sidraya Jayagond <sidraya@linux.ibm.com> Link: https://patch.msgid.link/20251126140705.1944278-1-hca@linux.ibm.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python/bin')
0 files changed, 0 insertions, 0 deletions
-04quota: Make ->set_info use structure with neccesary info to VFS and XFSJan Kara 2015-03-04quota: Make VFS quotas use new interface for getting quota infoJan Kara 2015-01-30quota: Add ->quota_{enable,disable} callbacks for VFS quotasJan Kara 2015-01-30quota: Wire up ->quota_{enable,disable} callbacks into Q_QUOTA{ON,OFF}Jan Kara 2015-01-28quota: Switch ->get_dqblk() and ->set_dqblk() to use bytes as space unitsJan Kara 2014-11-10quota: Remove const from function declarationsJan Kara 2014-04-03quota: provide function to grab quota structure referenceJan Kara 2013-08-17quota: provide interface for readding allocated space into reserved spaceJan Kara 2012-09-18userns: Modify dqget to take struct kqidEric W. Biederman 2012-09-18userns: Convert qutoactlEric W. Biederman 2012-07-22quota: Split dquot_quota_sync() to writeback and cache flushing partJan Kara 2012-05-03userns: Use uid_eq gid_eq helpers when comparing kuids and kgids in the vfsEric W. Biederman 2011-10-31treewide: use __printf not __attribute__((format(printf,...)))Joe Perches 2011-03-24fs: protect inode->i_state with inode->i_lockDave Chinner 2011-01-12quota: Fix deadlock during path resolutionJan Kara 2011-01-10quota: Use %pV and __attribute__((format (printf in __quota_error and fix fal...Joe Perches 2010-09-09dquot: do full inode dirty in allocating spaceShaohua Li