kernel: move diff adding run_parsers_by_type() between mtd patches
It makes more sense to add run_parsers_by_type() in a patch that introduces parser types. That makes the other one just add a code using it. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
parent
4d0431801d
commit
4585cd3bdf
4 changed files with 80 additions and 80 deletions
|
@ -20,7 +20,44 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
||||||
@@ -1118,6 +1122,61 @@ void mtd_part_parser_cleanup(struct mtd_
|
@@ -741,6 +745,36 @@ int mtd_del_partition(struct mtd_info *m
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
||||||
|
|
||||||
|
+static int
|
||||||
|
+run_parsers_by_type(struct mtd_part *slave, enum mtd_parser_type type)
|
||||||
|
+{
|
||||||
|
+ struct mtd_partition *parts;
|
||||||
|
+ int nr_parts;
|
||||||
|
+ int i;
|
||||||
|
+
|
||||||
|
+ nr_parts = parse_mtd_partitions_by_type(&slave->mtd, type, (const struct mtd_partition **)&parts,
|
||||||
|
+ NULL);
|
||||||
|
+ if (nr_parts <= 0)
|
||||||
|
+ return nr_parts;
|
||||||
|
+
|
||||||
|
+ if (WARN_ON(!parts))
|
||||||
|
+ return 0;
|
||||||
|
+
|
||||||
|
+ for (i = 0; i < nr_parts; i++) {
|
||||||
|
+ /* adjust partition offsets */
|
||||||
|
+ parts[i].offset += slave->offset;
|
||||||
|
+
|
||||||
|
+ mtd_add_partition(slave->parent,
|
||||||
|
+ parts[i].name,
|
||||||
|
+ parts[i].offset,
|
||||||
|
+ parts[i].size);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ kfree(parts);
|
||||||
|
+
|
||||||
|
+ return nr_parts;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
#ifdef CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
||||||
|
#define SPLIT_FIRMWARE_NAME CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
||||||
|
#else
|
||||||
|
@@ -1118,6 +1152,61 @@ void mtd_part_parser_cleanup(struct mtd_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,44 +10,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
|
|
||||||
--- a/drivers/mtd/mtdpart.c
|
--- a/drivers/mtd/mtdpart.c
|
||||||
+++ b/drivers/mtd/mtdpart.c
|
+++ b/drivers/mtd/mtdpart.c
|
||||||
@@ -745,6 +745,36 @@ int mtd_del_partition(struct mtd_info *m
|
@@ -783,6 +783,7 @@ run_parsers_by_type(struct mtd_part *sla
|
||||||
}
|
|
||||||
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
||||||
|
|
||||||
+static int
|
|
||||||
+run_parsers_by_type(struct mtd_part *slave, enum mtd_parser_type type)
|
|
||||||
+{
|
|
||||||
+ struct mtd_partition *parts;
|
|
||||||
+ int nr_parts;
|
|
||||||
+ int i;
|
|
||||||
+
|
|
||||||
+ nr_parts = parse_mtd_partitions_by_type(&slave->mtd, type, (const struct mtd_partition **)&parts,
|
|
||||||
+ NULL);
|
|
||||||
+ if (nr_parts <= 0)
|
|
||||||
+ return nr_parts;
|
|
||||||
+
|
|
||||||
+ if (WARN_ON(!parts))
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ for (i = 0; i < nr_parts; i++) {
|
|
||||||
+ /* adjust partition offsets */
|
|
||||||
+ parts[i].offset += slave->offset;
|
|
||||||
+
|
|
||||||
+ mtd_add_partition(slave->parent,
|
|
||||||
+ parts[i].name,
|
|
||||||
+ parts[i].offset,
|
|
||||||
+ parts[i].size);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ kfree(parts);
|
|
||||||
+
|
|
||||||
+ return nr_parts;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
#ifdef CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
|
||||||
#define SPLIT_FIRMWARE_NAME CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
|
||||||
#else
|
|
||||||
@@ -753,6 +783,7 @@ EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
||||||
|
|
||||||
static void split_firmware(struct mtd_info *master, struct mtd_part *part)
|
static void split_firmware(struct mtd_info *master, struct mtd_part *part)
|
||||||
{
|
{
|
||||||
|
@ -55,7 +18,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
}
|
}
|
||||||
|
|
||||||
void __weak arch_split_mtd_part(struct mtd_info *master, const char *name,
|
void __weak arch_split_mtd_part(struct mtd_info *master, const char *name,
|
||||||
@@ -767,6 +798,12 @@ static void mtd_partition_split(struct m
|
@@ -797,6 +798,12 @@ static void mtd_partition_split(struct m
|
||||||
if (rootfs_found)
|
if (rootfs_found)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
|
@ -20,7 +20,44 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
* Given a pointer to the MTD object in the mtd_part structure, we can retrieve
|
||||||
@@ -1115,6 +1119,61 @@ void mtd_part_parser_cleanup(struct mtd_
|
@@ -733,6 +737,36 @@ int mtd_del_partition(struct mtd_info *m
|
||||||
|
}
|
||||||
|
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
||||||
|
|
||||||
|
+static int
|
||||||
|
+run_parsers_by_type(struct mtd_part *slave, enum mtd_parser_type type)
|
||||||
|
+{
|
||||||
|
+ struct mtd_partition *parts;
|
||||||
|
+ int nr_parts;
|
||||||
|
+ int i;
|
||||||
|
+
|
||||||
|
+ nr_parts = parse_mtd_partitions_by_type(&slave->mtd, type, (const struct mtd_partition **)&parts,
|
||||||
|
+ NULL);
|
||||||
|
+ if (nr_parts <= 0)
|
||||||
|
+ return nr_parts;
|
||||||
|
+
|
||||||
|
+ if (WARN_ON(!parts))
|
||||||
|
+ return 0;
|
||||||
|
+
|
||||||
|
+ for (i = 0; i < nr_parts; i++) {
|
||||||
|
+ /* adjust partition offsets */
|
||||||
|
+ parts[i].offset += slave->offset;
|
||||||
|
+
|
||||||
|
+ mtd_add_partition(slave->parent,
|
||||||
|
+ parts[i].name,
|
||||||
|
+ parts[i].offset,
|
||||||
|
+ parts[i].size);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ kfree(parts);
|
||||||
|
+
|
||||||
|
+ return nr_parts;
|
||||||
|
+}
|
||||||
|
+
|
||||||
|
#ifdef CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
||||||
|
#define SPLIT_FIRMWARE_NAME CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
||||||
|
#else
|
||||||
|
@@ -1115,6 +1149,61 @@ void mtd_part_parser_cleanup(struct mtd_
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,44 +10,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
|
|
||||||
--- a/drivers/mtd/mtdpart.c
|
--- a/drivers/mtd/mtdpart.c
|
||||||
+++ b/drivers/mtd/mtdpart.c
|
+++ b/drivers/mtd/mtdpart.c
|
||||||
@@ -737,6 +737,36 @@ int mtd_del_partition(struct mtd_info *m
|
@@ -775,6 +775,7 @@ run_parsers_by_type(struct mtd_part *sla
|
||||||
}
|
|
||||||
EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
||||||
|
|
||||||
+static int
|
|
||||||
+run_parsers_by_type(struct mtd_part *slave, enum mtd_parser_type type)
|
|
||||||
+{
|
|
||||||
+ struct mtd_partition *parts;
|
|
||||||
+ int nr_parts;
|
|
||||||
+ int i;
|
|
||||||
+
|
|
||||||
+ nr_parts = parse_mtd_partitions_by_type(&slave->mtd, type, (const struct mtd_partition **)&parts,
|
|
||||||
+ NULL);
|
|
||||||
+ if (nr_parts <= 0)
|
|
||||||
+ return nr_parts;
|
|
||||||
+
|
|
||||||
+ if (WARN_ON(!parts))
|
|
||||||
+ return 0;
|
|
||||||
+
|
|
||||||
+ for (i = 0; i < nr_parts; i++) {
|
|
||||||
+ /* adjust partition offsets */
|
|
||||||
+ parts[i].offset += slave->offset;
|
|
||||||
+
|
|
||||||
+ mtd_add_partition(slave->parent,
|
|
||||||
+ parts[i].name,
|
|
||||||
+ parts[i].offset,
|
|
||||||
+ parts[i].size);
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ kfree(parts);
|
|
||||||
+
|
|
||||||
+ return nr_parts;
|
|
||||||
+}
|
|
||||||
+
|
|
||||||
#ifdef CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
|
||||||
#define SPLIT_FIRMWARE_NAME CONFIG_MTD_SPLIT_FIRMWARE_NAME
|
|
||||||
#else
|
|
||||||
@@ -745,6 +775,7 @@ EXPORT_SYMBOL_GPL(mtd_del_partition);
|
|
||||||
|
|
||||||
static void split_firmware(struct mtd_info *master, struct mtd_part *part)
|
static void split_firmware(struct mtd_info *master, struct mtd_part *part)
|
||||||
{
|
{
|
||||||
|
@ -55,7 +18,7 @@ Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
|
||||||
}
|
}
|
||||||
|
|
||||||
void __weak arch_split_mtd_part(struct mtd_info *master, const char *name,
|
void __weak arch_split_mtd_part(struct mtd_info *master, const char *name,
|
||||||
@@ -759,6 +790,12 @@ static void mtd_partition_split(struct m
|
@@ -789,6 +790,12 @@ static void mtd_partition_split(struct m
|
||||||
if (rootfs_found)
|
if (rootfs_found)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue