#!/bin/bash # # Profiling physical memory by all retired load instructions/uops event # MEM_INST_RETIRED.ALL_LOADS or MEM_UOPS_RETIRED.ALL_LOADS # load=`perf list | grep mem_inst_retired.all_loads` if [ -z "$load" ]; then load=`perf list | grep mem_uops_retired.all_loads` fi if [ -z "$load" ]; then echo "There is no event to count all retired load instructions/uops." exit 1 fi arg=$(echo $load | tr -d ' ') arg="$arg:P" perf record --phys-data -e $arg $@ '>
summaryrefslogtreecommitdiff
path: root/drivers/infiniband/hw/nes/nes_verbs.c
AgeCommit message (Expand)Author
2015-06-12IB/mad: Add support for additional MAD info to/from driversIra Weiny
2015-06-12IB/core: Pass hardware specific data in query_deviceMatan Barak
2015-06-12IB/core: Change provider's API of create_cq to be extendibleMatan Barak
2015-06-02IB/core cleanup: Add const on args - device->process_madIra Weiny
2015-05-20IB/core: Convert core to use bitfield for capsIra Weiny
2015-05-20IB/core: Add per port immutable struct to ib_deviceIra Weiny
2015-05-18IB/Verbs: Implement new callback query_protocol()Michael Wang
2014-12-15IB/core: Replace ib_umem's offset field with a full addressHaggai Eran
2014-08-08infiniband: use pci_zalloc_consistentJoe Perches
2014-04-03Merge branches 'core', 'cxgb4', 'ip-roce', 'iser', 'misc', 'mlx4', 'nes', 'oc...Roland Dreier
2014-03-17RDMA/nes: Clean up a conditionDan Carpenter
2014-03-17IB/nes: Return an error on ib_copy_from_udata() failure instead of NULLYann Droneaud
2014-03-17RDMA/nes: Fix for passing a valid QP pointer to the user space libraryTatyana Nikolova
2014-03-04IB: Refactor umem to use linear SG tableYishai Hadas
2013-11-09RDMA/nes: Remove self-assignment from nes_query_qp()Dave Jones
2013-07-30RDMA/nes: Fix info leaks in nes_create_qp() and nes_create_cq()Dan Carpenter
2013-02-21IB/core: Add "type 2" memory windows supportShani Michaeli