#!/bin/sh # description: event tracing - restricts events based on pid do_reset() { echo > set_event echo > set_event_pid echo 0 > options/event-fork clear_trace } fail() { #msg do_reset echo $1 exit $FAIL } yield() { ping localhost -c 1 || sleep .001 || usleep 1 || sleep 1 } if [ ! -f set_event -o ! -d events/sched ]; then echo "event tracing is not supported" exit_unsupported fi if [ ! -f set_event_pid ]; then echo "event pid filtering is not supported" exit_unsupported fi reset_tracer do_reset echo 1 > events/sched/sched_switch/enable yield count=`cat trace | grep sched_switch | wc -l` if [ $count -eq 0 ]; then fail "sched_switch events are not recorded" fi do_reset read mypid rest < /proc/self/stat echo $mypid > set_event_pid echo 'sched:sched_switch' > set_event yield count=`cat trace | grep sched_switch | grep -v "pid=$mypid" | wc -l` if [ $count -ne 0 ]; then fail "sched_switch events from other task are recorded" fi do_reset echo $mypid > set_event_pid echo 1 > options/event-fork echo 1 > events/sched/sched_switch/enable yield count=`cat trace | grep sched_switch | grep -v "pid=$mypid" | wc -l` if [ $count -eq 0 ]; then fail "sched_switch events from other task are not recorded" fi do_reset exit 0 ='switch'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/net/unix/sysctl_net_unix.c
n value='2'>2
AgeCommit message (Expand)AuthorFilesLines
space:
mode:
authorBhumika Goyal <bhumirks@gmail.com>2017-01-25 00:54:07 +0530
committerDan Williams <dan.j.williams@intel.com>2017-01-31 18:16:30 -0800
commit970d14e3989160ee9e97c7d75ecbc893fd29dab9 (patch)
tree4a731cac4efedb17f86a912ec56c151d26792abe /net/xfrm/xfrm_ipcomp.c
parent7a308bb3016f57e5be11a677d15b821536419d36 (diff)
nvdimm: constify device_type structures
Declare device_type structure as const as it is only stored in the type field of a device structure. This field is of type const, so add const to declaration of device_type structure. File size before: text data bss dec hex filename 19278 3199 16 22493 57dd nvdimm/namespace_devs.o File size after: text data bss dec hex filename 19929 3160 16 23105 5a41 nvdimm/namespace_devs.o Signed-off-by: Bhumika Goyal <bhumirks@gmail.com> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'net/xfrm/xfrm_ipcomp.c')