]> git.ipfire.org Git - people/ms/u-boot.git/commit - disk/part_dos.c
disk: part: implement generic function part_get_info_by_name()
authorPetr Kulhavy <brain@jikos.cz>
Fri, 9 Sep 2016 08:27:15 +0000 (10:27 +0200)
committerTom Rini <trini@konsulko.com>
Sun, 2 Oct 2016 00:04:45 +0000 (20:04 -0400)
commit87b8530fe24408b0ef41c9b80f38c395ccafad2c
tree31b9a33b2525b1713c542409fe4a59219ccfbd2a
parentba07984068dc96a2234371545df043495dcbeadd
disk: part: implement generic function part_get_info_by_name()

So far partition search by name has been supported only on the EFI partition
table. This patch extends the search to all partition tables.

Rename part_get_info_efi_by_name() to part_get_info_by_name(), move it from
part_efi.c into part.c and make it a generic function which traverses all part
drivers and searches all partitions (in the order given by the linked list).

For this a new variable struct part_driver.max_entries is added, which limits
the number of partitions searched. For EFI this was GPT_ENTRY_NUMBERS.
Similarly the limit is defined for DOS, ISO, MAC and AMIGA partition tables.

Signed-off-by: Petr Kulhavy <brain@jikos.cz>
Reviewed-by: Tom Rini <trini@konsulko.com>
Acked-by: Steve Rae <steve.rae@raedomain.com>
common/fb_mmc.c
disk/part.c
disk/part_amiga.c
disk/part_dos.c
disk/part_efi.c
disk/part_iso.c
disk/part_mac.c
include/part.h