aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hv/channel_mgmt.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2016-05-01Drivers: hv: vmbus: handle various crash scenariosVitaly Kuznetsov1-15/+43
2016-03-01Drivers: hv: vmbus: avoid unneeded compiler optimizations in vmbus_wait_for_unload()Vitaly Kuznetsov1-1/+1
2016-03-01Drivers: hv: vmbus: remove code duplication in message handlingVitaly Kuznetsov1-9/+1
2016-03-01Drivers: hv: vmbus: avoid wait_for_completion() on crashVitaly Kuznetsov1-2/+2
2016-02-07Drivers: hv: vmbus: Give control over how the ring access is serializedK. Y. Srinivasan1-0/+1
2016-02-07Drivers: hv: vmbus: add an API vmbus_hvsock_device_unregister()Dexuan Cui1-5/+28
2016-02-07Drivers: hv: vmbus: add a per-channel rescind callbackDexuan Cui1-0/+11
2016-02-07Drivers: hv: vmbus: define a new VMBus message type for hvsockDexuan Cui1-0/+4
2016-02-07Drivers: hv: vmbus: avoid scheduling in interrupt context in vmbus_initiate_unload()Vitaly Kuznetsov1-1/+43
2016-02-07Drivers: hv: vmbus: avoid infinite loop in init_vp_index()Vitaly Kuznetsov1-0/+11
2016-02-07Drivers: hv: vmbus: Add vendor and device atttributesK. Y. Srinivasan1-43/+123
2015-12-21Drivers: hv: vmbus: Treat Fibre Channel devices as performance criticalK. Y. Srinivasan1-0/+3
2015-12-14Drivers: hv: vmbus: channge vmbus_connection.channel_lock to mutexDexuan Cui1-6/+6
2015-12-14Drivers: hv: vmbus: release relid on error in vmbus_process_offer()Dexuan Cui1-6/+15
2015-12-14Drivers: hv: vmbus: fix rescind-offer handling for device without a driverDexuan Cui1-3/+3
2015-12-14Drivers: hv: vmbus: Use uuid_le_cmp() for comparing GUIDsK. Y. Srinivasan1-2/+1
2015-12-14Drivers: hv: vmbus: Use uuid_le type consistentlyK. Y. Srinivasan1-1/+1
2015-12-14drivers:hv: Define the channel type for Hyper-V PCI Express pass-throughJake Oshins1-0/+3
2015-09-20Drivers: hv: vmbus: fix init_vp_index() for reloading hv_netvscDexuan Cui1-0/+17
2015-08-05Drivers: hv: vmbus: Further improve CPU affiliation logicDexuan Cui1-2/+18
2015-08-05Drivers: hv: vmbus: Improve the CPU affiliation for channelsK. Y. Srinivasan1-5/+6
2015-08-04Drivers: hv: vmbus: Consider ND NIC in binding channels to CPUsK. Y. Srinivasan1-0/+1
2015-08-04Drivers: hv: vmbus: don't send CHANNELMSG_UNLOAD on pre-Win2012R2 hostsVitaly Kuznetsov1-0/+4
2015-06-01Drivers: hv: vmbus: Implement NUMA aware CPU affinity for channelsK. Y. Srinivasan1-29/+43
2015-06-01Drivers: hv: vmbus: Use the vp_index map even for channels bound to CPU 0K. Y. Srinivasan1-1/+1
2015-05-24Drivers: hv: vmbus: distribute subchannels among all vcpusVitaly Kuznetsov1-1/+28
2015-05-24Drivers: hv: vmbus: move init_vp_index() call to vmbus_process_offer()Vitaly Kuznetsov1-2/+5
2015-05-24Drivers: hv: vmbus: decrease num_sc on subchannel removalVitaly Kuznetsov1-1/+2
2015-05-24Drivers: hv: vmbus: unify calls to percpu_channel_enq()Vitaly Kuznetsov1-33/+18
2015-05-24Drivers: hv: vmbus: Implement the protocol for tearing down vmbus stateK. Y. Srinivasan1-0/+25
2015-05-24hv: vmbus_free_channels(): remove the redundant free_channel()Dexuan Cui1-3/+8
2015-04-03hv: remove the per-channel workqueueDexuan Cui1-29/+1
2015-04-03hv: don't schedule new works in vmbus_onoffer()/vmbus_onoffer_rescind()Dexuan Cui1-129/+28
2015-04-03hv: run non-blocking message handlers in the dispatch taskletDexuan Cui1-23/+18
2015-03-26Drivers: hv: vmbus: Don't wait after requesting offersK. Y. Srinivasan1-11/+0
2015-03-25hv: vmbus: missing curly braces in vmbus_process_offer()Dan Carpenter1-1/+2
2015-03-25Drivers: hv: vmbus: Perform device register in the per-channel work elementK. Y. Srinivasan1-42/+101
2015-03-01Drivers: hv: vmbus: Use a round-robin algorithm for picking the outgoing channelK. Y. Srinivasan1-15/+15
2015-03-01Drivers: hv: vmbus: Remove the channel from the channel list(s) on failureK. Y. Srinivasan1-5/+16
2015-03-01Drivers: hv: vmbus: Handle both rescind and offer messages in the same contextK. Y. Srinivasan1-53/+62
2015-03-01Drivers: hv: vmbus: Introduce a function to remove a rescinded offerK. Y. Srinivasan1-19/+30
2015-03-01Drivers: hv: vmbus: Add support for the NetworkDirect GUIDK. Y. Srinivasan1-0/+2
2015-03-01hv: channel_mgmt: match var type to return type of wait_for_completionNicholas Mc Guire1-1/+2
2015-03-01Drivers: hv: vmbus: avoid double kfree for device_objVitaly Kuznetsov1-1/+0
2015-03-01Drivers: hv: vmbus: rename channel work queuesVitaly Kuznetsov1-1/+4
2015-01-25Drivers: hv: vmbus: serialize Offer and Rescind offerVitaly Kuznetsov1-8/+22
2015-01-25Drivers: hv: rename sc_lock to the more generic lockVitaly Kuznetsov1-5/+5
2015-01-25Drivers: hv: check vmbus_device_create() return value in vmbus_process_offer()Vitaly Kuznetsov1-5/+9
2015-01-12Drivers: hv: vmbus: Use get_cpu() to get the current CPUK. Y. Srinivasan1-1/+3
2014-12-14Merge tag 'char-misc-3.19-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-miscLinus Torvalds1-2/+9