#!/bin/bash perf record -e net:net_dev_xmit -e net:net_dev_queue \ -e net:netif_receive_skb -e net:netif_rx \ -e skb:consume_skb -e skb:kfree_skb \ -e skb:skb_copy_datagram_iovec -e napi:napi_poll \ -e irq:irq_handler_entry -e irq:irq_handler_exit \ -e irq:softirq_entry -e irq:softirq_exit \ -e irq:softirq_raise $@ ad>
summaryrefslogtreecommitdiff
path: root/fs/pipe.c
AgeCommit message (Expand)Author
2026-02-21treewide: Replace kmalloc with kmalloc_obj for non-scalar typesKees Cook
2026-01-05sysctl: Replace UINT converter macros with functionsJoel Granados
2025-12-05Merge tag 'sysctl-6.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/...Linus Torvalds
2025-11-27sysctl: Wrap do_proc_douintvec with the public function proc_douintvec_convJoel Granados
2025-11-27sysctl: Create pipe-max-size converter using sysctl UINT macrosJoel Granados
2025-11-27sysctl: Replace void pointer with const pointer to ctl_tableJoel Granados
2025-10-20Coccinelle-based conversion to use ->i_state accessorsMateusz Guzik
2025-08-29Add RWF_NOSIGNAL flag for pwritev2Lauri Vasama
2025-06-10fs/pipe: set FMODE_NOWAIT in create_pipe_files()Jens Axboe
2025-05-11sort.h: hoist cmp_int() into generic header fileFedor Pchelkin
2025-03-10Merge patch series "pipe: Trivial cleanups"Christian Brauner
2025-03-10fs/pipe: Use pipe_buf() helper to retrieve pipe bufferK Prateek Nayak
2025-03-10fs/pipe: Limit the slots in pipe_resize_ring()K Prateek Nayak
2025-03-10Merge mainline pipe changesChristian Brauner
2025-03-06fs/pipe: add simpler helpers for common casesLinus Torvalds
2025-03-06fs/pipe: do not open-code pipe head/tail logic in FIONREADLinus Torvalds
2025-03-04fs/pipe: Read pipe->{head,tail} atomically outside pipe->mutexLinus Torvalds
2025-03-04pipe: cache 2 pages instead of 1Mateusz Guzik
2025-03-04pipe: drop an always true check in anon_pipe_write()Mateusz Guzik
2025-02-12pipe: change pipe_write() to never add a zero-sized bufferOleg Nesterov
2025-02-07fsnotify: disable notification by default for all pseudo filesAmir Goldstein
2025-02-06pipe: don't update {a,c,m}time for anonymous pipesOleg Nesterov
2025-02-06pipe: introduce struct file_operations pipeanon_fopsOleg Nesterov
2025-01-28treewide: const qualify ctl_tables where applicableJoel Granados
2025-01-04pipe_read: don't wake up the writer if the pipe is still fullOleg Nesterov