summaryrefslogtreecommitdiff
path: root/tools/perf/scripts/python/syscall-counts.py
diff options
context:
space:
mode:
authorNiklas Neronin <niklas.neronin@linux.intel.com>2024-11-06 12:14:49 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2024-11-06 13:26:15 +0100
commit39b52aae23f54b6bc3649a50c27ca1058d2c2a86 (patch)
tree3dbb28a8ebc7ca2805ebb5839ecd31fa8be2147e /tools/perf/scripts/python/syscall-counts.py
parent0309ed83791c079f239c13e0c605210425cd1a61 (diff)
downloadkernel-39b52aae23f54b6bc3649a50c27ca1058d2c2a86.tar.gz
usb: xhci: simplify TDs start and end naming scheme in struct 'xhci_td'
Old names: * start_seg - last_trb_seg * first_trb - last_trb New names: * start_seg - end_seg * start_trb - end_trb A Transfer Descriptor (TD) in the xhci driver is a data structure that represents a single transaction to be performed by the USB host controller. This transaction is defined by TRBs from 'start_trb' in 'start_seg' to 'end_trb' in 'end_seg'. The terms "start" and "end" were chosen over "first" and "last" for ease of searching within the codebase. The ring structure uses 'first_seg' and 'last_seg', while the TD structure uses 'start_seg' and 'end_seg'. Signed-off-by: Niklas Neronin <niklas.neronin@linux.intel.com> Signed-off-by: Mathias Nyman <mathias.nyman@linux.intel.com> Link: https://lore.kernel.org/r/20241106101459.775897-24-mathias.nyman@linux.intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/perf/scripts/python/syscall-counts.py')
0 files changed, 0 insertions, 0 deletions
Use WSBH/DSBH/DSHD on Loongson 3AChen Jie 2014-09-13net: filter: constify detection of pkt_type_offsetHannes Frederic Sowa 2014-09-09net: bpf: be friendly to kmemcheckDaniel Borkmann 2014-09-05net: bpf: make eBPF interpreter images read-onlyDaniel Borkmann 2014-08-26arch/mips/net/bpf_jit.c: fix failure checkAndrey Utkin 2014-08-02net: filter: split 'struct sk_filter' into socket and bpf partsAlexei Starovoitov 2014-06-26MIPS: bpf: Fix stack space allocation for BPF memwords on MIPS64Markos Chandras 2014-06-26MIPS: BPF: Use 32 or 64-bit load instruction to load an address to registerMarkos Chandras 2014-06-26MIPS: bpf: Fix PKT_TYPE case for big-endian coresMarkos Chandras 2014-06-26MIPS: BPF: Prevent kernel fall over for >=32bit shiftsMarkos Chandras 2014-06-26MIPS: bpf: Drop update_on_xread and always initialize the X registerMarkos Chandras 2014-06-26MIPS: bpf: Fix is_range() semanticsMarkos Chandras 2014-06-26MIPS: bpf: Use pr_debug instead of pr_warn for unhandled opcodesMarkos Chandras 2014-06-26MIPS: bpf: Fix return values for VLAN_TAG_PRESENT caseMarkos Chandras 2014-06-26MIPS: bpf: Use correct mask for VLAN_TAG caseMarkos Chandras 2014-06-26MIPS: bpf: Fix branch conditional for BPF_J{GT/GE} casesMarkos Chandras 2014-06-26MIPS: bpf: Add SEEN_SKB to flags when looking for the PKT_TYPEMarkos Chandras 2014-06-26MIPS: bpf: Use 'andi' instead of 'and' for the VLAN casesMarkos Chandras 2014-06-26MIPS: bpf: Return error code if the offset is a negative numberMarkos Chandras 2014-06-26MIPS: bpf: Use the LO register to get division's quotientMarkos Chandras 2014-06-26MIPS: BPF JIT: Fix build error.Daniel Borkmann 2014-06-04MIPS: BFP: Simplify code slightly.Ralf Baechle 2014-05-30MIPS: net: Add BPF JITMarkos Chandras