diff options
author | David S. Miller <davem@davemloft.net> | 2018-03-06 00:53:44 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-03-06 01:20:46 -0500 |
commit | 0f3e9c97eb5a97972b0c0076a5cc01bb142f8e70 (patch) | |
tree | 439c89ea3c87496c23e167148f2cdbefb6e82b30 /samples | |
parent | ef3f6c256f0b4711a3ef1489797b95820be5ab01 (diff) | |
parent | ce380619fab99036f5e745c7a865b21c59f005f6 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
All of the conflicts were cases of overlapping changes.
In net/core/devlink.c, we have to make care that the
resouce size_params have become a struct member rather
than a pointer to such an object.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/seccomp/Makefile | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/samples/seccomp/Makefile b/samples/seccomp/Makefile index 0e349b80686e..ba942e3ead89 100644 --- a/samples/seccomp/Makefile +++ b/samples/seccomp/Makefile | |||
@@ -1,4 +1,5 @@ | |||
1 | # SPDX-License-Identifier: GPL-2.0 | 1 | # SPDX-License-Identifier: GPL-2.0 |
2 | ifndef CROSS_COMPILE | ||
2 | hostprogs-$(CONFIG_SAMPLE_SECCOMP) := bpf-fancy dropper bpf-direct | 3 | hostprogs-$(CONFIG_SAMPLE_SECCOMP) := bpf-fancy dropper bpf-direct |
3 | 4 | ||
4 | HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include | 5 | HOSTCFLAGS_bpf-fancy.o += -I$(objtree)/usr/include |
@@ -16,7 +17,6 @@ HOSTCFLAGS_bpf-direct.o += -idirafter $(objtree)/include | |||
16 | bpf-direct-objs := bpf-direct.o | 17 | bpf-direct-objs := bpf-direct.o |
17 | 18 | ||
18 | # Try to match the kernel target. | 19 | # Try to match the kernel target. |
19 | ifndef CROSS_COMPILE | ||
20 | ifndef CONFIG_64BIT | 20 | ifndef CONFIG_64BIT |
21 | 21 | ||
22 | # s390 has -m31 flag to build 31 bit binaries | 22 | # s390 has -m31 flag to build 31 bit binaries |
@@ -35,12 +35,4 @@ HOSTLOADLIBES_bpf-fancy += $(MFLAG) | |||
35 | HOSTLOADLIBES_dropper += $(MFLAG) | 35 | HOSTLOADLIBES_dropper += $(MFLAG) |
36 | endif | 36 | endif |
37 | always := $(hostprogs-m) | 37 | always := $(hostprogs-m) |
38 | else | ||
39 | # MIPS system calls are defined based on the -mabi that is passed | ||
40 | # to the toolchain which may or may not be a valid option | ||
41 | # for the host toolchain. So disable tests if target architecture | ||
42 | # is MIPS but the host isn't. | ||
43 | ifndef CONFIG_MIPS | ||
44 | always := $(hostprogs-m) | ||
45 | endif | ||
46 | endif | 38 | endif |