mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
mcb: Return actual parsed size when reading chameleon table
The function chameleon_parse_cells() returns the number of cells parsed which has an undetermined size. This return value is only used for error checking but the number of cells is never used. Change return value to be number of bytes parsed to allow for memory management improvements. Co-developed-by: Jorge Sanjuan Garcia <jorge.sanjuangarcia@duagon.com> Signed-off-by: Jorge Sanjuan Garcia <jorge.sanjuangarcia@duagon.com> Signed-off-by: Javier Rodriguez <josejavier.rodriguez@duagon.com> Signed-off-by: Johannes Thumshirn <jth@kernel.org> Link: https://lore.kernel.org/r/20230411083329.4506-2-jth@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4daa669efc
commit
a889c276d3
@ -130,7 +130,7 @@ static void chameleon_parse_bar(void __iomem *base,
|
||||
}
|
||||
}
|
||||
|
||||
static int chameleon_get_bar(char __iomem **base, phys_addr_t mapbase,
|
||||
static int chameleon_get_bar(void __iomem **base, phys_addr_t mapbase,
|
||||
struct chameleon_bar **cb)
|
||||
{
|
||||
struct chameleon_bar *c;
|
||||
@ -179,12 +179,13 @@ int chameleon_parse_cells(struct mcb_bus *bus, phys_addr_t mapbase,
|
||||
{
|
||||
struct chameleon_fpga_header *header;
|
||||
struct chameleon_bar *cb;
|
||||
char __iomem *p = base;
|
||||
void __iomem *p = base;
|
||||
int num_cells = 0;
|
||||
uint32_t dtype;
|
||||
int bar_count;
|
||||
int ret;
|
||||
u32 hsize;
|
||||
u32 table_size;
|
||||
|
||||
hsize = sizeof(struct chameleon_fpga_header);
|
||||
|
||||
@ -239,12 +240,16 @@ int chameleon_parse_cells(struct mcb_bus *bus, phys_addr_t mapbase,
|
||||
num_cells++;
|
||||
}
|
||||
|
||||
if (num_cells == 0)
|
||||
num_cells = -EINVAL;
|
||||
if (num_cells == 0) {
|
||||
ret = -EINVAL;
|
||||
goto free_bar;
|
||||
}
|
||||
|
||||
table_size = p - base;
|
||||
pr_debug("%d cell(s) found. Chameleon table size: 0x%04x bytes\n", num_cells, table_size);
|
||||
kfree(cb);
|
||||
kfree(header);
|
||||
return num_cells;
|
||||
return table_size;
|
||||
|
||||
free_bar:
|
||||
kfree(cb);
|
||||
|
Loading…
Reference in New Issue
Block a user