public inbox for linux-rdma@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/10] IPoIB locking fixes and a couple minor other patches
@ 2014-12-10 16:46 Doug Ledford
       [not found] ` <cover.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
  0 siblings, 1 reply; 20+ messages in thread
From: Doug Ledford @ 2014-12-10 16:46 UTC (permalink / raw)
  To: linux-rdma-u79uwXL29TY76Z2rM5mHXA, roland-DgEjT+Ai2ygdnm+yROfE0A
  Cc: Doug Ledford

As the locking fixes have missed two releases now, I'm resending them.
The other two items are minor (the pr_* function one at least makes
the system more usable by making output message point to the module
making all of the dmesg noise, the other is one I contend is the right
thing to do until we have a replacement for the cache).

These can also be pulled from my github repo as:

git://github.com/dledford/linux.git for-next

Bart Van Assche (1):
  IB/srp: Use P_Key cache for P_Key lookups

Doug Ledford (9):
  IPoIB: Consolidate rtnl_lock tasks in workqueue
  IPoIB: Make the carrier_on_task race aware
  IPoIB: fix MCAST_FLAG_BUSY usage
  IPoIB: fix mcast_dev_flush/mcast_restart_task race
  IPoIB: change init sequence ordering
  IPoIB: Use dedicated workqueues per interface
  IPoIB: Make ipoib_mcast_stop_thread flush the workqueue
  IPoIB: No longer use flush as a parameter
  ib_srpt: convert printk's to pr_* functions

 drivers/infiniband/ulp/srp/ib_srp.c   |   9 +-
 drivers/infiniband/ulp/srpt/ib_srpt.c | 188 ++++++++++++++++------------------
 2 files changed, 96 insertions(+), 101 deletions(-)

-- 
2.1.0

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2014-12-12 14:05 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-10 16:46 [PATCH 00/10] IPoIB locking fixes and a couple minor other patches Doug Ledford
     [not found] ` <cover.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-10 16:46   ` [PATCH 01/10] IPoIB: Consolidate rtnl_lock tasks in workqueue Doug Ledford
     [not found]     ` <84fa20ea8c6763fee66b378adda1da52cd48e342.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:02       ` Estrin, Alex
2014-12-10 16:46   ` [PATCH 02/10] IPoIB: Make the carrier_on_task race aware Doug Ledford
     [not found]     ` <9da7866273a37e8927eb079d90c96074a118c5bd.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:02       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 03/10] IPoIB: fix MCAST_FLAG_BUSY usage Doug Ledford
     [not found]     ` <3287eaddaf7948ccf6f471daa3312e27649ef798.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:03       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 04/10] IPoIB: fix mcast_dev_flush/mcast_restart_task race Doug Ledford
     [not found]     ` <fd20f0aae0dce26162aba317d2571e46bdbae919.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:04       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 05/10] IPoIB: change init sequence ordering Doug Ledford
     [not found]     ` <540b071b56bdc3b72d59e80707164da07243dc80.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:04       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 06/10] IPoIB: Use dedicated workqueues per interface Doug Ledford
     [not found]     ` <f733fa8b780b1ac512efb748683dca001fb2edf7.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:05       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 07/10] IPoIB: Make ipoib_mcast_stop_thread flush the workqueue Doug Ledford
     [not found]     ` <8c03e7569e7da863c0507dbf95e96ad06280b938.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:05       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 08/10] IPoIB: No longer use flush as a parameter Doug Ledford
     [not found]     ` <28c67ea96dd0a0c3f39bfa78176537c3eb983c50.1418229671.git.dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2014-12-12 14:05       ` Estrin, Alex
2014-12-10 16:47   ` [PATCH 09/10] IB/srp: Use P_Key cache for P_Key lookups Doug Ledford
2014-12-10 16:47   ` [PATCH 10/10] ib_srpt: convert printk's to pr_* functions Doug Ledford
2014-12-12 14:01   ` [PATCH 00/10] IPoIB locking fixes and a couple minor other patches Estrin, Alex

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox