diff options
author | David S. Miller <davem@davemloft.net> | 2021-03-20 15:18:06 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-03-20 15:18:06 -0700 |
commit | e56c53d1946b75bdb7752f1fd7e6a62fee2459d9 (patch) | |
tree | 2eda9618222b175c841773a05b4d3f25768f6583 /include | |
parent | 5aa3c334a449bab24519c4967f5ac2b3304c8dcf (diff) | |
parent | b9082970478009b778aa9b22d5561eef35b53b63 (diff) | |
download | linux-e56c53d1946b75bdb7752f1fd7e6a62fee2459d9.tar.bz2 |
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__ */ |