# system call counts # (c) 2010, Tom Zanussi # Licensed under the terms of the GNU GPL License version 2 # # Displays system-wide system call totals, broken down by syscall. # If a [comm] arg is specified, only syscalls called by [comm] are displayed. from __future__ import print_function import os import sys sys.path.append(os.environ['PERF_EXEC_PATH'] + \ '/scripts/python/Perf-Trace-Util/lib/Perf/Trace') from perf_trace_context import * from Core import * from Util import syscall_name usage = "perf script -s syscall-counts.py [comm]\n"; for_comm = None if len(sys.argv) > 2: sys.exit(usage) if len(sys.argv) > 1: for_comm = sys.argv[1] syscalls = autodict() def trace_begin(): print("Press control+C to stop and show the summary") def trace_end(): print_syscall_totals() def raw_syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, common_callchain, id, args): if for_comm is not None: if common_comm != for_comm: return try: syscalls[id] += 1 except TypeError: syscalls[id] = 1 def syscalls__sys_enter(event_name, context, common_cpu, common_secs, common_nsecs, common_pid, common_comm, id, args): raw_syscalls__sys_enter(**locals()) def print_syscall_totals(): if for_comm is not None: print("\nsyscall events for %s:\n" % (for_comm)) else: print("\nsyscall events:\n") print("%-40s %10s" % ("event", "count")) print("%-40s %10s" % ("----------------------------------------", "-----------")) for id, val in sorted(syscalls.items(), key = lambda kv: (kv[1], kv[0]), reverse = True): print("%-40s %10d" % (syscall_name(id), val)) ux-2.6.24.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/drivers/scsi/qedi
AgeCommit message (Expand)Author
2017-11-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds
2017-10-19qed: Fix iWARP out of order flowMichal Kalderon
2017-10-16scsi: qedi: Delete redundant variablesChristos Gkekas
2017-09-07Merge branch 'fixes' into miscJames Bottomley
2017-08-28scsi: qedi: off by one in qedi_get_cmd_from_tid()Dan Carpenter
2017-08-24scsi: qedi: Limit number for CQ queues.Manish Rangankar
2017-07-24scsi: qedi: Fix return code in qedi_ep_connect()Dan Carpenter
2017-07-24scsi: qedi: Add ISCSI_BOOT_SYSFS to KconfigNilesh Javali
2017-07-12scsi: qedi: fix another spelling mistake: "alloction" -> "allocation"Colin Ian King
2017-07-12scsi: qedi: Add support for Boot from SAN over iSCSI offloadNilesh Javali
2017-07-06Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiLinus Torvalds
2017-06-30Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2017-06-26scsi: qedi: Remove comparison of u16 idx with zero.Christos Gkekas
2017-06-19scsi: qedi: Remove WARN_ON from clear task context.Manish Rangankar
2017-06-19scsi: qedi: Remove WARN_ON for untracked cleanup.Manish Rangankar
2017-06-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2017-05-24qed: Replace set_id() api with set_name()Mintz, Yuval
2017-05-23scsi: qedi: Fix endpoint NULL panic during recovery.manish.rangankar@cavium.com
2017-05-23scsi: qedi: set max_fin_rt default valueNilesh Javali
2017-05-23scsi: qedi: Set firmware tcp msl timer value.manish.rangankar@cavium.com
2017-05-23scsi: qedi: Fix endpoint NULL panic in qedi_set_path.manish.rangankar@cavium.com
2017-05-23scsi: qedi: Set dma_boundary to 0xfff.manish.rangankar@cavium.com
2017-05-23scsi: qedi: Correctly set firmware max supported BDs.manish.rangankar@cavium.com
2017-05-23scsi: qedi: Fix bad pte call trace when iscsiuio is stopped.Arun Easi
2017-05-18qed: Utilize FW 8.20.0.0Mintz, Yuval
2017-05-04Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiLinus Torvalds
2017-04-19scsi: qedi: qedf: Use designated initializersKees Cook
2017-04-06Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2017-03-15scsi: qedi: Add PCI device-ID for QL41xxx adapters.Manish Rangankar
2017-03-15scsi: libiscsi: qedi: convert iscsi_task.refcount from atomic_t to refcount_tElena Reshetova
2017-03-15Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller
2017-03-13qed*: Utilize Firmware 8.15.3.0Mintz, Yuval
2017-03-06scsi: qedi: fix build error without DEBUG_FSArnd Bergmann
2017-02-28scsi: qedi: fix missing return error code check on call to qedi_setup_intColin Ian King
2017-02-27scsi: qedi: Fix memory leak in tmf response processing.Dupuis, Chad
2017-02-21Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsiLinus Torvalds
2017-02-09scsi: qedi: Fix possible memory leak in qedi_iscsi_update_conn()Wei Yongjun
2017-02-06scsi: remove eh_timed_out methods in the transport templateChristoph Hellwig
2017-01-05scsi: qedi: return via va_end to match corresponding va_startColin Ian King
2016-12-26Merge remote-tracking branch 'mkp-scsi/4.10/scsi-fixes' into fixesJames Bottomley
2016-12-25scsi: qedi: Convert to hotplug state machineThomas Gleixner
2016-12-20scsi: qedi: fix build, depends on UIORandy Dunlap
2016-12-14scsi: qedi: Add QLogic FastLinQ offload iSCSI driver framework.Manish Rangankar