VERSION = 0.1 # Paths prefix = $(HOME) BINDIR = $(prefix)/bin DESTDIR = CC := gcc CFLAGS := -g -Wall -D_USE_SOURCE DEBUG = false ifeq ($(strip $(DEBUG)),true) CFLAGS += -DDEBUG endif PROGRAMS := inotail inotail-old inotify-watchdir all: inotail inotail: inotail.o inotail-old: inotail-old.o inotify-watchdir: inotify-watchdir.o %.o: %.c $(CC) $(CFLAGS) -c $< -o $@ install: inotail install -m 775 inotail $(DESTDIR)$(BINDIR) cscope: cscope -b release: git-tar-tree HEAD inotail-$(VERSION) | gzip -9v > ../inotail-$(VERSION).tar.gz git-tar-tree HEAD inotail-$(VERSION) | bzip2 -9v > ../inotail-$(VERSION).tar.bz2 clean: rm -f *.o rm -f $(PROGRAMS) rm -f cscope.out td class='logo' rowspan='2'>cgit logo index : net-next.git
net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Hunter <adrian.hunter@intel.com>2016-07-20 11:30:34 +0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-07-20 09:57:46 -0300
commit6f6ef07f412c5bfc37cde57e94b1fec789471907 (patch)
tree51fc46e0e9e852e287354c4831cffd0bb6551bf3
parent5048c2af078d5976895d521262a8802ea791f3b0 (diff)
x86/insn: perf tools: Fix vcvtph2ps instruction decoding
vcvtph2ps does not have an immediate operand, so remove the erroneous 'Ib' from its opcode map entry. Add vcvtph2ps to the perf tools new instructions test to verify it. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Acked-by: Ingo Molnar <mingo@kernel.org> Acked-by: Masami Hiramatsu <mhiramat@kernel.org> Cc: Andy Lutomirski <luto@amacapital.net> Cc: Dan Williams <dan.j.williams@intel.com> Cc: H. Peter Anvin <hpa@zytor.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: X86 ML <x86@kernel.org> Link: http://lkml.kernel.org/r/1469003437-32706-2-git-send-email-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat