Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.11 22 lines 381 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include "perf_regs.h" 3#include "../../../util/perf_regs.h" 4 5static const struct sample_reg sample_reg_masks[] = { 6 SMPL_REG_END 7}; 8 9uint64_t arch__intr_reg_mask(void) 10{ 11 return PERF_REGS_MASK; 12} 13 14uint64_t arch__user_reg_mask(void) 15{ 16 return PERF_REGS_MASK; 17} 18 19const struct sample_reg *arch__sample_reg_masks(void) 20{ 21 return sample_reg_masks; 22}