#!/bin/bash # description: syscall top # args: [comm] [interval] n_args=0 for i in "$@" do if expr match "$i" "-" > /dev/null ; then break fi n_args=$(( $n_args + 1 )) done if [ "$n_args" -gt 2 ] ; then echo "usage: sctop-report [comm] [interval]" exit fi if [ "$n_args" -gt 1 ] ; then comm=$1 interval=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then interval=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval ='2'>cgit logo index : kernel
Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/hid/uhid.c
-6.12.y&id=d2912cb15bdda8ba4a5dd73396ad62641af2f520'>treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 500
AgeCommit message (Expand)Author
2023-02-23HID: uhid: Over-ride the default maximum data buffer value with our ownLee Jones
2023-01-17HID: Make lowlevel driver structs constThomas Weißschuh
2023-01-17HID: Unexport struct uhid_hid_driverThomas Weißschuh
2022-02-25uaccess: remove CONFIG_SET_FSArnd Bergmann
2022-01-19HID: uhid: Use READ_ONCE()/WRITE_ONCE() for ->runningJann Horn
2022-01-19HID: uhid: Fix worker destroying device without any protectionJann Horn
Thomas Gleixner