Re: [PATCH RESEND] ib/iser: re-write SG handling for rdma logic

2009-11-16 Thread Roland Dreier
Actually I started merging stuff without sending the applied emails yet. So far I have this in for-next: Eli Cohen (2): IB/mlx4: Remove unneeded code IB/mlx4: Remove limitation on LSO header size Or Gerlitz (1): IB/iser: Rewrite SG handling for RDMA logic Roland Dreier (1):

Re: [PATCH RESEND] ib/iser: re-write SG handling for rdma logic

2009-11-09 Thread Or Gerlitz
This patch re-writes the logic that does the above, to make it clearer and simpler. It also fixes a bug in the being aligned for rdma checks, where a start check wasn't done but rather only end check. Roland, I don't see this patch in your for-next branch, any reason not to merge this?

Re: [PATCH RESEND] ib/iser: re-write SG handling for rdma logic

2009-11-09 Thread Roland Dreier
Roland, I don't see this patch in your for-next branch, any reason not to merge this? No, I just haven't been in a merging mode lately... will start working on my 2.6.33 queue soon. -- To unsubscribe from this list: send the line unsubscribe linux-rdma in the body of a message to

[PATCH RESEND] ib/iser: re-write SG handling for rdma logic

2009-11-01 Thread Or Gerlitz
After dma-mapping an SG list provided by the SCSI midlayer, iser has to make sure the mapped SG is aligned for RDMA in the sense that its possible to produce one mapping in the HCA IOMMU which represents the whole SG. Next, the mapped SG is formatted for registration with the HCA. This patch