Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b7811da2 authored by Stefan Richter's avatar Stefan Richter
Browse files

firewire: fw-sbp2: prepare for s/g chaining

parent 285838eb
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -1107,9 +1107,9 @@ sbp2_map_scatterlist(struct sbp2_command_orb *orb, struct fw_device *device,
	 * elements larger than 65535 bytes, some IOMMUs may merge sg elements
	 * during DMA mapping, and Linux currently doesn't prevent this.
	 */
	for (i = 0, j = 0; i < count; i++) {
		sg_len = sg_dma_len(sg + i);
		sg_addr = sg_dma_address(sg + i);
	for (i = 0, j = 0; i < count; i++, sg = sg_next(sg)) {
		sg_len = sg_dma_len(sg);
		sg_addr = sg_dma_address(sg);
		while (sg_len) {
			/* FIXME: This won't get us out of the pinch. */
			if (unlikely(j >= ARRAY_SIZE(orb->page_table))) {