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 v4.15-rc1 15 lines 317 B view raw
1// SPDX-License-Identifier: GPL-2.0 2#include <linux/compiler.h> 3#include "dump-insn.h" 4 5/* Fallback code */ 6 7__weak 8const char *dump_insn(struct perf_insn *x __maybe_unused, 9 u64 ip __maybe_unused, u8 *inbuf __maybe_unused, 10 int inlen __maybe_unused, int *lenp) 11{ 12 if (lenp) 13 *lenp = 0; 14 return "?"; 15}