]> asedeno.scripts.mit.edu Git - linux.git/commit
lib/scatterlist: Fix offset type in sg_alloc_table_from_pages
authorTvrtko Ursulin <tvrtko.ursulin@intel.com>
Mon, 31 Jul 2017 18:55:08 +0000 (19:55 +0100)
committerTvrtko Ursulin <tvrtko.ursulin@intel.com>
Thu, 7 Sep 2017 09:48:27 +0000 (10:48 +0100)
commitc4860ad60564838994b74e7ee7dd12ceeda0f520
tree5dee274a29c7fb0fd7c139769f6a606efb74b330
parentdf0700e53047662c167836bd6fdeea55d5d8dcfa
lib/scatterlist: Fix offset type in sg_alloc_table_from_pages

Scatterlist entries have an unsigned int for the offset so
correct the sg_alloc_table_from_pages function accordingly.

Since these are offsets withing a page, unsigned int is
wide enough.

Also converts callers which were using unsigned long locally
with the lower_32_bits annotation to make it explicitly
clear what is happening.

v2: Use offset_in_page. (Chris Wilson)

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Pawel Osciak <pawel@osciak.com>
Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Tomasz Stanislawski <t.stanislaws@samsung.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Cc: Alexandre Bounine <alexandre.bounine@idt.com>
Cc: linux-media@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Acked-by: Marek Szyprowski <m.szyprowski@samsung.com> (v1)
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20170731185512.20010-1-tvrtko.ursulin@linux.intel.com
drivers/media/v4l2-core/videobuf2-dma-contig.c
drivers/rapidio/devices/rio_mport_cdev.c
include/linux/scatterlist.h
lib/scatterlist.c