aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hv/vmbus_drv.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2021-04-27Merge tag 'printk-for-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/printk/linuxLinus Torvalds1-1/+3
2021-04-18Drivers: hv: vmbus: Drivers: hv: vmbus: Introduce CHANNELMSG_MODIFYCHANNEL_RESPONSEAndrea Parri (Microsoft)1-1/+3
2021-03-08Drivers: hv: vmbus: Move handling of VMbus interruptsMichael Kelley1-7/+56
2021-03-08Drivers: hv: vmbus: Move hyperv_report_panic_msg to arch neutral codeMichael Kelley1-5/+19
2021-03-08Drivers: hv: Redo Hyper-V synthetic MSR get/set functionsMichael Kelley1-1/+1
2021-03-08printk: introduce a kmsg_dump iteratorJohn Ogness1-1/+3
2021-02-11Drivers: hv: vmbus: skip VMBus initialization if Linux is rootWei Liu1-0/+3
2021-02-11Drivers: hv: vmbus: Add /sys/bus/vmbus/hibernationDexuan Cui1-0/+18
2021-02-05Drivers: hv: vmbus: Copy the hv_message in vmbus_on_msg_dpc()Andrea Parri (Microsoft)1-5/+14
2021-02-05Drivers: hv: vmbus: Reduce number of references to message in vmbus_on_msg_dpc()Andrea Parri (Microsoft)1-14/+14
2021-01-05x86/hyperv: Fix kexec panic/hang issuesDexuan Cui1-2/+0
2020-12-02drivers: hv: vmbus: Fix checkpatch SPLIT_STRINGMatheus Castello1-15/+20
2020-11-17drivers: hv: vmbus: Fix call msleep using < 20msMatheus Castello1-1/+1
2020-11-17drivers: hv: vmbus: Fix checkpatch LINE_SPACINGMatheus Castello1-0/+3
2020-11-17drivers: hv: vmbus: Replace symbolic permissions by octal permissionsMatheus Castello1-5/+5
2020-11-17drivers: hv: Fix hyperv_record_panic_msg path on commentMatheus Castello1-1/+1
2020-10-15Merge tag 'hyperv-next-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-3/+27
2020-10-14Drivers: hv: vmbus: Add parsing of VMbus interrupt in ACPI DSDTMichael Kelley1-3/+27
2020-10-14Merge tag 'hyperv-next-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-1/+1
2020-09-15Merge tag 'hyperv-fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-2/+7
2020-09-09Drivers: hv: vmbus: hibernation: do not hang forever in vmbus_bus_resume()Dexuan Cui1-2/+7
2020-08-19drivers: hv: remove cast from hyperv_die_eventOlaf Hering1-1/+1
2020-08-14Merge tag 'hyperv-fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-0/+4
2020-08-07Drivers: hv: vmbus: Only notify Hyper-V for die events that are oopsMichael Kelley1-0/+4
2020-08-06Merge tag 'hyperv-next-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-12/+5
2020-06-29Drivers: hv: Change flag to write log level in panic msg to falseJoseph Salisbury1-1/+1
2020-06-19Drivers: hv: vmbus: Use channel_mutex in channel_vp_mapping_show()Andrea Parri (Microsoft)1-4/+3
2020-06-19Drivers: hv: vmbus: Remove unnecessary channel->lock critical sections (sc_list readers)Andrea Parri (Microsoft)1-3/+0
2020-06-19Drivers: hv: vmbus: Replace cpumask_test_cpu(, cpu_online_mask) with cpu_online()Andrea Parri (Microsoft)1-1/+1
2020-06-19Drivers: hv: vmbus: Remove the numa_node field from the vmbus_channel structAndrea Parri (Microsoft)1-2/+1
2020-06-19Drivers: hv: vmbus: Remove the target_vp field from the vmbus_channel structAndrea Parri (Microsoft)1-2/+0
2020-06-03Merge tag 'hyperv-next-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linuxLinus Torvalds1-71/+243
2020-05-23Drivers: hv: vmbus: Resolve more races involving init_vp_index()Andrea Parri (Microsoft)1-6/+13
2020-05-20Driver: hv: vmbus: drop a no long applicable commentWei Liu1-1/+0
2020-05-20hyper-v: Replace open-coded variant of %*phN specifierAndy Shevchenko1-16/+3
2020-05-20hyper-v: Supply GUID pointer to printf() like functionsAndy Shevchenko1-3/+3
2020-05-20scsi: storvsc: Re-init stor_chns when a channel interrupt is re-assignedAndrea Parri (Microsoft)1-0/+4
2020-04-23Drivers: hv: vmbus: Introduce the CHANNELMSG_MODIFYCHANNEL message typeAndrea Parri (Microsoft)1-2/+106
2020-04-23Drivers: hv: vmbus: Use a spin lock for synchronizing channel scheduling vs. channel removalAndrea Parri (Microsoft)1-13/+17
2020-04-23Drivers: hv: vmbus: Replace the per-CPU channel lists with a global array of channelsAndrea Parri (Microsoft)1-19/+29
2020-04-23Drivers: hv: vmbus: Don't bind the offer&rescind works to a specific CPUAndrea Parri (Microsoft)1-11/+28
2020-04-23Drivers: hv: vmbus: Always handle the VMBus messages on CPU0Andrea Parri (Microsoft)1-3/+17
2020-04-23Drivers: hv: check VMBus messages lengthsVitaly Kuznetsov1-0/+6
2020-04-23Drivers: hv: make sure that 'struct vmbus_channel_message_header' compiles correctlyVitaly Kuznetsov1-0/+7
2020-04-23Drivers: hv: avoid passing opaque pointer to vmbus_onmessage()Vitaly Kuznetsov1-1/+2
2020-04-23Drivers: hv: allocate the exact needed memory for messagesVitaly Kuznetsov1-5/+10
2020-04-23Drivers: hv: copy from message page only what's neededVitaly Kuznetsov1-1/+8
2020-04-14Drivers: hv: vmbus: Fix Suspend-to-Idle for Generation-2 VMDexuan Cui1-9/+34
2020-04-11x86/Hyper-V: Report crash data in die() when panic_on_oops is setTianyu Lan1-2/+3
2020-04-11x86/Hyper-V: Report crash register data when sysctl_record_panic_msg is not setTianyu Lan1-9/+14