diff options
author | David S. Miller <davem@davemloft.net> | 2019-06-22 08:59:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-06-22 08:59:24 -0400 |
commit | 92ad6325cb891bb455487bfe90cc47d18aa6ec37 (patch) | |
tree | 433a7ef938fae69789216043f67eff9f9c6b0c68 /kernel/bpf | |
parent | e0effb5fbd56a8b2b8917611cbf4fcd9aba92b8f (diff) | |
parent | c356dc4b540edd6c02b409dd8cf3208ba2804c38 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Minor SPDX change conflict.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'kernel/bpf')
-rw-r--r-- | kernel/bpf/cgroup.c | 5 | ||||
-rw-r--r-- | kernel/bpf/inode.c | 5 | ||||
-rw-r--r-- | kernel/bpf/lpm_trie.c | 5 |
3 files changed, 3 insertions, 12 deletions
diff --git a/kernel/bpf/cgroup.c b/kernel/bpf/cgroup.c index 1b65ab0df457..c225c42e114a 100644 --- a/kernel/bpf/cgroup.c +++ b/kernel/bpf/cgroup.c | |||
@@ -1,11 +1,8 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Functions to manage eBPF programs attached to cgroups | 3 | * Functions to manage eBPF programs attached to cgroups |
3 | * | 4 | * |
4 | * Copyright (c) 2016 Daniel Mack | 5 | * Copyright (c) 2016 Daniel Mack |
5 | * | ||
6 | * This file is subject to the terms and conditions of version 2 of the GNU | ||
7 | * General Public License. See the file COPYING in the main directory of the | ||
8 | * Linux distribution for more details. | ||
9 | */ | 6 | */ |
10 | 7 | ||
11 | #include <linux/kernel.h> | 8 | #include <linux/kernel.h> |
diff --git a/kernel/bpf/inode.c b/kernel/bpf/inode.c index 84a80b02db99..cc0d0cf114e3 100644 --- a/kernel/bpf/inode.c +++ b/kernel/bpf/inode.c | |||
@@ -1,3 +1,4 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Minimal file system backend for holding eBPF maps and programs, | 3 | * Minimal file system backend for holding eBPF maps and programs, |
3 | * used by bpf(2) object pinning. | 4 | * used by bpf(2) object pinning. |
@@ -5,10 +6,6 @@ | |||
5 | * Authors: | 6 | * Authors: |
6 | * | 7 | * |
7 | * Daniel Borkmann <daniel@iogearbox.net> | 8 | * Daniel Borkmann <daniel@iogearbox.net> |
8 | * | ||
9 | * This program is free software; you can redistribute it and/or | ||
10 | * modify it under the terms of the GNU General Public License | ||
11 | * version 2 as published by the Free Software Foundation. | ||
12 | */ | 9 | */ |
13 | 10 | ||
14 | #include <linux/init.h> | 11 | #include <linux/init.h> |
diff --git a/kernel/bpf/lpm_trie.c b/kernel/bpf/lpm_trie.c index ec047a3658b4..56e6c75d354d 100644 --- a/kernel/bpf/lpm_trie.c +++ b/kernel/bpf/lpm_trie.c | |||
@@ -1,12 +1,9 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0-only | ||
1 | /* | 2 | /* |
2 | * Longest prefix match list implementation | 3 | * Longest prefix match list implementation |
3 | * | 4 | * |
4 | * Copyright (c) 2016,2017 Daniel Mack | 5 | * Copyright (c) 2016,2017 Daniel Mack |
5 | * Copyright (c) 2016 David Herrmann | 6 | * Copyright (c) 2016 David Herrmann |
6 | * | ||
7 | * This file is subject to the terms and conditions of version 2 of the GNU | ||
8 | * General Public License. See the file COPYING in the main directory of the | ||
9 | * Linux distribution for more details. | ||
10 | */ | 7 | */ |
11 | 8 | ||
12 | #include <linux/bpf.h> | 9 | #include <linux/bpf.h> |