summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/exported-sql-viewer.py
diff options
context:
space:
mode:
authorColy Li <colyli@suse.de>2019-02-09 07:53:08 +0300
committerJens Axboe <axboe@kernel.dk>2019-02-09 17:18:32 +0300
commit453745fbbebecf7e459785db7e29e11563908525 (patch)
treef8dd8f67d3f4bc2f92fcdae7604719ff46823843 /tools/perf/scripts/python/exported-sql-viewer.py
parentdab71b2db98dcdd4657d151b01a7be88ce10f9d1 (diff)
downloadlinux-453745fbbebecf7e459785db7e29e11563908525.tar.xz
bcache: fix input overflow to journal_delay_ms
c->journal_delay_ms is in type unsigned short, it is set via sysfs interface and converted by sysfs_strtoul() from input string to unsigned short value. Therefore overflow to unsigned short might be happen when the converted value exceed USHRT_MAX. e.g. writing 65536 into sysfs file journal_delay_ms, c->journal_delay_ms is set to 0. This patch uses sysfs_strtoul_clamp() to convert the input string and limit value range in [0, USHRT_MAX], to avoid the input overflow. Signed-off-by: Coly Li <colyli@suse.de> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'tools/perf/scripts/python/exported-sql-viewer.py')
0 files changed, 0 insertions, 0 deletions