diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2017-12-05 10:06:23 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2017-12-05 10:06:23 -0800 |
commit | 6a5e05a47b6cb8e59bfad351444322b1e4012326 (patch) | |
tree | 3387834d1084fbd53d86dcc4c23097db0d51f45b /include | |
parent | 1fbd55c0ccd842a976d16431b57121b7892ed8ce (diff) | |
parent | 66bc5df31110652a31c91f14b4e23f7c51e5328e (diff) | |
download | linux-6a5e05a47b6cb8e59bfad351444322b1e4012326.tar.gz linux-6a5e05a47b6cb8e59bfad351444322b1e4012326.tar.bz2 linux-6a5e05a47b6cb8e59bfad351444322b1e4012326.zip |
Merge tag 'char-misc-4.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
Pull char/misc fixes from Greg KH:
"Here are some small misc driver fixes for 4.15-rc3 to resolve reported
issues. Specifically these are:
- binder fix for a memory leak
- vpd driver fixes for a number of reported problems
- hyperv driver fix for memory accesses where it shouldn't be.
All of these have been in linux-next for a while. There's also one
more MAINTAINERS file update that came in today to get the Android
developer's emails correct, which is also in this pull request, that
was not in linux-next, but should not be an issue"
* tag 'char-misc-4.15-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
MAINTAINERS: update Android driver maintainers.
firmware: vpd: Fix platform driver and device registration/unregistration
firmware: vpd: Tie firmware kobject to device lifetime
firmware: vpd: Destroy vpd sections in remove function
hv: kvp: Avoid reading past allocated blocks from KVP file
Drivers: hv: vmbus: Fix a rescind issue
ANDROID: binder: fix transaction leak.
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/hyperv.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/hyperv.h b/include/linux/hyperv.h index f3e97c5f94c9..6c9336626592 100644 --- a/include/linux/hyperv.h +++ b/include/linux/hyperv.h @@ -708,6 +708,7 @@ struct vmbus_channel { u8 monitor_bit; bool rescind; /* got rescind msg */ + struct completion rescind_event; u32 ringbuffer_gpadlhandle; |