#include "../../perf.h" #include "../../util/perf_regs.h" const struct sample_reg sample_reg_masks[] = { SMPL_REG(AX, PERF_REG_X86_AX), SMPL_REG(BX, PERF_REG_X86_BX), SMPL_REG(CX, PERF_REG_X86_CX), SMPL_REG(DX, PERF_REG_X86_DX), SMPL_REG(SI, PERF_REG_X86_SI), SMPL_REG(DI, PERF_REG_X86_DI), SMPL_REG(BP, PERF_REG_X86_BP), SMPL_REG(SP, PERF_REG_X86_SP), SMPL_REG(IP, PERF_REG_X86_IP), SMPL_REG(FLAGS, PERF_REG_X86_FLAGS), SMPL_REG(CS, PERF_REG_X86_CS), SMPL_REG(SS, PERF_REG_X86_SS), #ifdef HAVE_ARCH_X86_64_SUPPORT SMPL_REG(R8, PERF_REG_X86_R8), SMPL_REG(R9, PERF_REG_X86_R9), SMPL_REG(R10, PERF_REG_X86_R10), SMPL_REG(R11, PERF_REG_X86_R11), SMPL_REG(R12, PERF_REG_X86_R12), SMPL_REG(R13, PERF_REG_X86_R13), SMPL_REG(R14, PERF_REG_X86_R14), SMPL_REG(R15, PERF_REG_X86_R15), #endif SMPL_REG_END }; x/net-next.git/'>net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2017-01-05 20:29:35 +1000
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-05 09:40:16 -0800
commitae30ab4cd711a147cafaf5674c333c5a84fe53fb (patch)
tree5f1d8c154dd5ed1f277adbf6312bcc4b1d942475 /include/net
parente02003b515e8d95f40f20f213622bb82510873d2 (diff)
kbuild: initramfs fix dependency checking for compressed target
When using initramfs compression, the data file compression suffix gets quotes pulled in from Kconfig, e.g., initramfs_data.cpio".gz" which make does not match a target and causes rebuild. Fix this by filtering out quotes from the Kconfig string. Fixes: 35e669e1a254 ("initramfs: select builtin initram compression algorithm on KConfig instead of Makefile") Reviewed-by: Francisco Blas Izquierdo Riera (klondike) <klondike@klondike.es> Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/net')