dmapool: cleanup integer types
authorTony Battersby <tonyb@cybernetics.com>
Thu, 26 Jan 2023 21:51:17 +0000 (13:51 -0800)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 6 Apr 2023 02:42:39 +0000 (19:42 -0700)
commit347e4e44c0a98abcee3caadd222e3e3896c6d2a8
tree850a25534c558b8575af72350583180d8f591cc9
parent65216545436bb072b1ab575aa37173a05f3993c0
dmapool: cleanup integer types

To represent the size of a single allocation, dmapool currently uses
'unsigned int' in some places and 'size_t' in other places.  Standardize
on 'unsigned int' to reduce overhead, but use 'size_t' when counting all
the blocks in the entire pool.

Link: https://lkml.kernel.org/r/20230126215125.4069751-5-kbusch@meta.com
Signed-off-by: Tony Battersby <tonyb@cybernetics.com>
Signed-off-by: Keith Busch <kbusch@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/dmapool.c