#!/bin/bash # description: export perf data to a sqlite3 database # args: [database name] [columns] [calls] 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 3 ] ; then echo "usage: export-to-sqlite-report [database name] [columns] [calls]" exit fi if [ "$n_args" -gt 2 ] ; then dbname=$1 columns=$2 calls=$3 shift 3 elif [ "$n_args" -gt 1 ] ; then dbname=$1 columns=$2 shift 2 elif [ "$n_args" -gt 0 ] ; then dbname=$1 shift fi perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/export-to-sqlite.py $dbname $columns $calls > Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/fs/ksmbd/transport_rdma.c
AgeCommit message (Expand)Author
2022-10-05ksmbd: call ib_drain_qp when disconnectedNamjae Jeon
2022-10-05ksmbd: reduce server smbdirect max send/receive segment sizesTom Talpey
2022-10-05ksmbd: decrease the number of SMB3 smbdirect server SGEsTom Talpey
2022-06-11ksmbd: smbd: Remove useless license text when SPDX-License-Identifier is alre...Christophe JAILLET
2022-05-27ksmbd: smbd: relax the count of sges requiredHyunchul Lee
2022-05-21ksmbd: smbd: fix connection dropped issueHyunchul Lee
2022-05-21ksmbd: fix wrong smbd max read/write size checkNamjae Jeon
2022-05-21ksmbd: add smbd max io size parameterNamjae Jeon
2022-05-21ksmbd: smbd: handle multiple Buffer descriptorsHyunchul Lee
2022-05-21ksmbd: smbd: change the return value of get_sg_listHyunchul Lee
2022-05-21ksmbd: smbd: simplify tracking pending packetsHyunchul Lee
2022-05-21ksmbd: smbd: introduce read/write credits for RDMA read/writeHyunchul Lee
2022-05-21ksmbd: smbd: change prototypes of RDMA read/write related functionsHyunchul Lee
2022-03-24Merge tag 'flexible-array-transformations-5.18-rc1' of git://git.kernel.org/p...Linus Torvalds
2022-02-17treewide: Replace zero-length arrays with flexible-array membersGustavo A. R. Silva
2022-02-04ksmbd: reduce smb direct max read/write sizeNamjae Jeon
2022-01-10ksmbd: add smb-direct shutdownYufan Chen
2022-01-10ksmbd: smbd: change the default maximum read/write, receive sizeHyunchul Lee
2022-01-10ksmbd: smbd: create MR poolHyunchul Lee
2022-01-10ksmbd: smbd: call rdma_accept() under CM handlerHyunchul Lee
2022-01-10ksmbd: set 445 port to smbdirect port by defaultNamjae Jeon
2022-01-10ksmbd: register ksmbd ib client with ib_register_client()Hyunchul Lee
2021-11-11ksmbd: remove smb2_buf_length in smb2_hdrNamjae Jeon
2021-11-06ksmbd: Remove redundant 'flush_workqueue()' callsChristophe JAILLET
2021-10-15ksmbd: add buffer validation for smb directHyunchul Lee
2021-09-17ksmbd: transport_rdma: Don't include rwlock.h directlyMike Galbraith
2021-09-03ksmbd: smbd: fix dma mapping error in smb_direct_post_send_dataHyunchul Lee