diff options
author | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-07 08:15:57 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-10-07 08:15:57 +0200 |
commit | fb1c592cf4c9eeb84ec6bce13c13c11c7d05b6c7 (patch) | |
tree | 5977346539c33f26cda10f60313365e4616931c1 /tools | |
parent | 4ebaf0754c7a1109e66693f488f02b78f5875fee (diff) | |
parent | eafa717bc145963c944bb0a64d16add683861b35 (diff) | |
download | linux-stable-fb1c592cf4c9eeb84ec6bce13c13c11c7d05b6c7.tar.gz linux-stable-fb1c592cf4c9eeb84ec6bce13c13c11c7d05b6c7.tar.bz2 linux-stable-fb1c592cf4c9eeb84ec6bce13c13c11c7d05b6c7.zip |
Merge tag 'char-misc-4.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc
I wrote:
"Char/Misc fixes for 4.19-rc7
Here are 8 small fixes for some char/misc driver issues
Included here are:
- fpga driver fixes
- thunderbolt bugfixes
- firmware core revert/fix
- hv core fix
- hv tool fix
All of these have been in linux-next with no reported issues."
* tag 'char-misc-4.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc:
thunderbolt: Initialize after IOMMUs
thunderbolt: Do not handle ICM events after domain is stopped
firmware: Always initialize the fw_priv list object
docs: fpga: document fpga manager flags
fpga: bridge: fix obvious function documentation error
tools: hv: fcopy: set 'error' in case an unknown operation was requested
fpga: do not access region struct after fpga_region_unregister
Drivers: hv: vmbus: Use get/put_cpu() in vmbus_connect()
Diffstat (limited to 'tools')
-rw-r--r-- | tools/hv/hv_fcopy_daemon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/hv/hv_fcopy_daemon.c b/tools/hv/hv_fcopy_daemon.c index d78aed86af09..8ff8cb1a11f4 100644 --- a/tools/hv/hv_fcopy_daemon.c +++ b/tools/hv/hv_fcopy_daemon.c @@ -234,6 +234,7 @@ int main(int argc, char *argv[]) break; default: + error = HV_E_FAIL; syslog(LOG_ERR, "Unknown operation: %d", buffer.hdr.operation); |