mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 04:00:52 +07:00
alpha: Replace sg++ with sg = sg_next(sg)
Replace sg++ with sg = sg_next(sg). Signed-off-by: Xu Wang <vulab@iscas.ac.cn> Signed-off-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
54505a1e20
commit
e66dd01e33
@ -638,7 +638,7 @@ sg_fill(struct device *dev, struct scatterlist *leader, struct scatterlist *end,
|
||||
|
||||
while (sg+1 < end && (int) sg[1].dma_address == -1) {
|
||||
size += sg[1].length;
|
||||
sg++;
|
||||
sg = sg_next(sg);
|
||||
}
|
||||
|
||||
npages = iommu_num_pages(paddr, size, PAGE_SIZE);
|
||||
|
Loading…
Reference in New Issue
Block a user