diff options
author | David S. Miller <davem@davemloft.net> | 2021-03-20 23:18:06 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-20 23:18:06 +0100 |
commit | e56c53d1946b75bdb7752f1fd7e6a62fee2459d9 (patch) | |
tree | 2eda9618222b175c841773a05b4d3f25768f6583 /include | |
parent | selftests: forwarding: vxlan_bridge_1d: Fix vxlan ecn decapsulate value (diff) | |
parent | bpf: Use NOP_ATOMIC5 instead of emit_nops(&prog, 5) for BPF_TRAMP_F_CALL_ORIG (diff) | |
download | linux-e56c53d1946b75bdb7752f1fd7e6a62fee2459d9.tar.xz linux-e56c53d1946b75bdb7752f1fd7e6a62fee2459d9.zip |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf
Alexei Starovoitov says:
====================
pull-request: bpf 2021-03-20
The following pull-request contains BPF updates for your *net* tree.
We've added 5 non-merge commits during the last 3 day(s) which contain
a total of 8 files changed, 155 insertions(+), 12 deletions(-).
The main changes are:
1) Use correct nops in fexit trampoline, from Stanislav.
2) Fix BTF dump, from Jean-Philippe.
3) Fix umd memory leak, from Zqiang.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usermode_driver.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/usermode_driver.h b/include/linux/usermode_driver.h index 073a9e0ec07d..ad970416260d 100644 --- a/include/linux/usermode_driver.h +++ b/include/linux/usermode_driver.h @@ -14,5 +14,6 @@ struct umd_info { int umd_load_blob(struct umd_info *info, const void *data, size_t len); int umd_unload_blob(struct umd_info *info); int fork_usermode_driver(struct umd_info *info); +void umd_cleanup_helper(struct umd_info *info); #endif /* __LINUX_USERMODE_DRIVER_H__ */ |