commit c71d48877e6f3d5e3eb22fcaaa612081bce3d089 tree 2adf081ab975f2f1f33b5ba1c04163fcbdf02077 parent 309c68cc17ba1f6f733038562b7469b5340e1a1d author Neil Brown Fri, 26 May 2006 10:39:25 +1000 committer Linus Torvalds Fri, 26 May 2006 11:52:11 -0700 [PATCH] Unlock md devices when stopping them on reboot. otherwise we get nasty messages about locks not being released. Signed-off-by: Neil Brown Signed-off-by: Linus Torvalds commit 309c68cc17ba1f6f733038562b7469b5340e1a1d tree 68f582ca59e1b4dd0d89a8ec4cd8d841e4f01ff3 parent 705af309505681f197f81618440954d10f120dc0 parent ab28b171eabc0a414e0404844453c11af3caed10 author Linus Torvalds Fri, 26 May 2006 11:51:08 -0700 committer Linus Torvalds Fri, 26 May 2006 11:51:08 -0700 Merge branch 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband * 'for-linus' of master.kernel.org:/pub/scm/linux/kernel/git/roland/infiniband: IB/mthca: Fix posting lists of 256 receive requests to SRQ for Tavor commit 705af309505681f197f81618440954d10f120dc0 tree af6b17647538cb782df3dd25dfb42c1954a7dc9a parent a8bd60705aa17a998516837d9c1e503ad4cbd7fc author Martin Schwidefsky Tue, 23 May 2006 09:22:42 +0200 committer Linus Torvalds Thu, 25 May 2006 12:09:55 -0700 [PATCH] s390: fix typo in stop_hz_timer. Add missing parentheses for type cast to u64. Signed-off-by: Martin Schwidefsky Cc: Dave Jones Signed-off-by: Linus Torvalds commit ab28b171eabc0a414e0404844453c11af3caed10 tree 35c7037516ec32da168468823c1fbba96a930eb2 parent da8bacf6d59288ef3e41389db24886c928dcbd33 author Michael S. Tsirkin Wed, 24 May 2006 18:27:07 +0300 committer Roland Dreier Wed, 24 May 2006 13:43:37 -0700 IB/mthca: Fix posting lists of 256 receive requests to SRQ for Tavor If we post a list of length exactly a multiple of 256, nreq in doorbell gets set to 256 which is wrong: it should be encoded by 0. This is because we only zero it out on the next WR, which may not be there. The solution is to ring the doorbell after posting a WQE, not before posting the next one. This is the same bug that we just fixed for QPs with non-shared RQ. Signed-off-by: Michael S. Tsirkin Signed-off-by: Roland Dreier