/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef _UAPI_PR_H #define _UAPI_PR_H #include enum pr_type { PR_WRITE_EXCLUSIVE = 1, PR_EXCLUSIVE_ACCESS = 2, PR_WRITE_EXCLUSIVE_REG_ONLY = 3, PR_EXCLUSIVE_ACCESS_REG_ONLY = 4, PR_WRITE_EXCLUSIVE_ALL_REGS = 5, PR_EXCLUSIVE_ACCESS_ALL_REGS = 6, }; struct pr_reservation { __u64 key; __u32 type; __u32 flags; }; struct pr_registration { __u64 old_key; __u64 new_key; __u32 flags; __u32 __pad; }; struct pr_preempt { __u64 old_key; __u64 new_key; __u32 type; __u32 flags; }; struct pr_clear { __u64 key; __u32 flags; __u32 __pad; }; #define PR_FL_IGNORE_KEY (1 << 0) /* ignore existing key */ #define IOC_PR_REGISTER _IOW('p', 200, struct pr_registration) #define IOC_PR_RESERVE _IOW('p', 201, struct pr_reservation) #define IOC_PR_RELEASE _IOW('p', 202, struct pr_reservation) #define IOC_PR_PREEMPT _IOW('p', 203, struct pr_preempt) #define IOC_PR_PREEMPT_ABORT _IOW('p', 204, struct pr_preempt) #define IOC_PR_CLEAR _IOW('p', 205, struct pr_clear) #endif /* _UAPI_PR_H */ e='linux-2.6.13.y'>linux-2.6.13.y Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/mm/show_mem.c
AgeCommit message (Expand)Author
2026-01-31mm/vmscan: add tracepoint and reason for kswapd_failures resetJiayuan Chen
2025-09-21mm: re-enable kswapd when memory pressure subsides or demotion is toggledChanwon Park
2025-09-21mm/show_mem: add trylock while printing alloc infoYueyang Pan
2025-09-21mm/show_mem: dump the status of the mem alloc profiling before printingYueyang Pan
2025-09-21mm: show_mem: show number of zspages in show_free_areasThadeu Lima de Souza Cascardo
2025-07-19mm, vmstat: remove the NR_WRITEBACK_TEMP node_stat_item counterVlastimil Babka
2025-05-31Merge tag 'mm-stable-2025-05-31-14-50' of git://git.kernel.org/pub/scm/linux/...Linus Torvalds
2025-05-11mm: add nr_free_highatomic in show_free_areasgaoxu
2025-05-11mm/show_mem: optimize si_meminfo_node by reducing redundant codeYe Liu
2025-05-05mm: remove NR_BOUNCE zone statChristoph Hellwig
2025-03-21meminfo: add a per node counter for balloon driversNico Pache
2024-11-07mm/show_mem: use str_yes_no() helper in show_free_areas()Thorsten Blum
2024-09-17mm/show_mem.c: report alloc tags in human readable unitsKent Overstreet
2024-04-25lib: add memory allocations report in show_mem()Suren Baghdasaryan
2024-01-08mm, treewide: introduce NR_PAGE_ORDERSKirill A. Shutemov
2023-10-04mm: refactor si_mem_available()Lorenzo Stoakes
2023-08-21mm,thp: no space after colon in Mem-Info fieldsHugh Dickins
2023-08-18mm: make show_free_areas() staticKefeng Wang
2023-06-09mm: page_alloc: collect mem statistic into show_mem.cKefeng Wang