summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python
diff options
context:
space:
mode:
authorChen Ridong <chenridong@huawei.com>2025-09-19 09:49:03 +0000
committerTejun Heo <tj@kernel.org>2025-09-19 06:43:27 -1000
commit51840f7ba393dce7624a759cc4cee8c2bedf9068 (patch)
treeff6538d4bce00046de2dbf356ac720fa91a08ada /tools/perf/scripts/python
parent59d5de3655698679ad8fd2cc82228de4679c4263 (diff)
downloadkernel-51840f7ba393dce7624a759cc4cee8c2bedf9068.tar.gz
cpuset: fix missing error return in update_cpumask
The commit c6366739804f ("cpuset: refactor cpus_allowed_validate_change") inadvertently removed the error return when cpus_allowed_validate_change() fails. This patch restores the proper error handling by returning retval when the validation check fails. Fixes: c6366739804f ("cpuset: refactor cpus_allowed_validate_change") Signed-off-by: Chen Ridong <chenridong@huawei.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'tools/perf/scripts/python')
0 files changed, 0 insertions, 0 deletions
18-06-15 18:10:01 -0300'>2018-06-15media: dvb: fix location of get_dvb_firmware scriptMauro Carvalho Chehab This script was moved out of Documentation/dvb, but the links weren't updated. Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org> Acked-by: Jonathan Corbet <corbet@lwn.net> 2017-12-28media: move dvb kAPI headers to include/mediaMauro Carvalho Chehab Except for DVB, all media kAPI headers are at include/media. Move the headers to it. Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> 2016-11-18[media] dvb: make DVB frontend *_ops instances "const"Max Kellermann These are immutable. Making them "const" allows the compiler to move them to the "rodata" section. Note that cxd2841er_t_c_ops cannot be made "const", because cxd2841er_attach() modifies it. Ouch! [mchehab@s-opensource.com: fix merge conflicts] Signed-off-by: Max Kellermann <max.kellermann@gmail.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com> 2015-06-09[media] dvb: Get rid of typedev usage for enumsMauro Carvalho Chehab The DVB API was originally defined using typedefs. This is against Kernel CodingStyle, and there's no good usage here. While we can't remove its usage on userspace, we can avoid its usage in Kernelspace. So, let's do it. This patch was generated by this shell script: for j in $(grep typedef include/uapi/linux/dvb/frontend.h |cut -d' ' -f 3); do for i in $(find drivers/media -name '*.[ch]' -type f) $(find drivers/staging/media -name '*.[ch]' -type f); do sed "s,${j}_t,enum $j," <$i >a && mv a $i; done; done While here, make CodingStyle fixes on the affected lines. Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com> Acked-by: Stefan Richter <stefanr@s5r6.in-berlin.de> # for drivers/media/firewire/*