fec8fe8069
Refreshed all patches Remove upstreamed patches. - 103-MIPS-ath79-fix-register-address-in-ath79_ddr_wb_flus.patch - 403-mtd_fix_cfi_cmdset_0002_status_check.patch - 001-4.11-01-mtd-m25p80-consider-max-message-size-in-m25p80_read.patch - 001-4.15-08-bcm63xx_enet-correct-clock-usage.patch - 001-4.15-09-bcm63xx_enet-do-not-write-to-random-DMA-channel-on-B.patch - 900-gen_stats-fix-netlink-stats-padding.patch Introduce a new backported patch to address ext4 breakage, introduced in 4.9.112 - backport-4.9/500-ext4-fix-check-to-prevent-initializing-reserved-inod.patch This patch has been slightly altered to compensate for a new helper function introduced in later kernels. Also add ARM64_SSBD symbol to ARM64 targets still running kernel 4.9 Compile-tested on: ar71xx, bcm2710 Runtime-tested on: ar71xx Signed-off-by: Koen Vandeputte <koen.vandeputte@ncentric.com>
44 lines
1.2 KiB
Diff
44 lines
1.2 KiB
Diff
--- a/drivers/mtd/redboot.c
|
|
+++ b/drivers/mtd/redboot.c
|
|
@@ -77,12 +77,18 @@ static int parse_redboot_partitions(stru
|
|
static char nullstring[] = "unallocated";
|
|
#endif
|
|
|
|
+ buf = vmalloc(master->erasesize);
|
|
+ if (!buf)
|
|
+ return -ENOMEM;
|
|
+
|
|
+ restart:
|
|
if ( directory < 0 ) {
|
|
offset = master->size + directory * master->erasesize;
|
|
while (mtd_block_isbad(master, offset)) {
|
|
if (!offset) {
|
|
nogood:
|
|
printk(KERN_NOTICE "Failed to find a non-bad block to check for RedBoot partition table\n");
|
|
+ vfree(buf);
|
|
return -EIO;
|
|
}
|
|
offset -= master->erasesize;
|
|
@@ -95,10 +101,6 @@ static int parse_redboot_partitions(stru
|
|
goto nogood;
|
|
}
|
|
}
|
|
- buf = vmalloc(master->erasesize);
|
|
-
|
|
- if (!buf)
|
|
- return -ENOMEM;
|
|
|
|
printk(KERN_NOTICE "Searching for RedBoot partition table in %s at offset 0x%lx\n",
|
|
master->name, offset);
|
|
@@ -171,6 +173,11 @@ static int parse_redboot_partitions(stru
|
|
}
|
|
if (i == numslots) {
|
|
/* Didn't find it */
|
|
+ if (offset + master->erasesize < master->size) {
|
|
+ /* not at the end of the flash yet, maybe next block :) */
|
|
+ directory++;
|
|
+ goto restart;
|
|
+ }
|
|
printk(KERN_NOTICE "No RedBoot partition table detected in %s\n",
|
|
master->name);
|
|
ret = 0;
|