Revision 4478976a43c5df8bc70e3a6b0e8ead9d7cff0a3f authored by Linus Torvalds on 18 August 2017, 17:51:30 UTC, committed by Linus Torvalds on 18 August 2017, 17:51:30 UTC
Pull dma-mapping fix from Christoph Hellwig:
 "Another dma-mapping regression fix"

* tag 'dma-mapping-4.13-3' of git://git.infradead.org/users/hch/dma-mapping:
  of: fix DMA mask generation
2 parent s 04d49f3 + ee7b1f3
Raw File
Makefile
# This creates the demonstration utility "lguest" which runs a Linux guest.
CFLAGS:=-m32 -Wall -Wmissing-declarations -Wmissing-prototypes -O3 -U_FORTIFY_SOURCE -Iinclude

all: lguest

include/linux/virtio_types.h: ../../include/uapi/linux/virtio_types.h
	mkdir -p include/linux 2>&1 || true
	ln -sf ../../../../include/uapi/linux/virtio_types.h $@

lguest: include/linux/virtio_types.h

clean:
	rm -f lguest
	rm -rf include
back to top