cregit-Linux how code gets into the kernel

Release 4.7 drivers/mtd/mtdpart.c

Directory: drivers/mtd
/*
 * Simple MTD partitioning layer
 *
 * Copyright © 2000 Nicolas Pitre <nico@fluxnic.net>
 * Copyright © 2002 Thomas Gleixner <gleixner@linutronix.de>
 * Copyright © 2000-2010 David Woodhouse <dwmw2@infradead.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 *
 */

#include <linux/module.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/kmod.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/partitions.h>
#include <linux/err.h>
#include <linux/kconfig.h>

#include "mtdcore.h"

/* Our partition linked list */
static LIST_HEAD(mtd_partitions);
static DEFINE_MUTEX(mtd_partitions_mutex);

/* Our partition node structure */

struct mtd_part {
	
struct mtd_info mtd;
	
struct mtd_info *master;
	
uint64_t offset;
	
struct list_head list;
};

/*
 * Given a pointer to the MTD object in the mtd_part structure, we can retrieve
 * the pointer to that structure.
 */

static inline struct mtd_part *mtd_to_part(const struct mtd_info *mtd) { return container_of(mtd, struct mtd_part, mtd); }

Contributors

PersonTokensPropCommitsCommitProp
brian norrisbrian norris2492.31%150.00%
pre-gitpre-git27.69%150.00%
Total26100.00%2100.00%

/* * MTD methods which simply translate the effective address and pass through * to the _real_ device. */
static int part_read(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); struct mtd_ecc_stats stats; int res; stats = part->master->ecc_stats; res = part->master->_read(part->master, from + part->offset, len, retlen, buf); if (unlikely(mtd_is_eccerr(res))) mtd->ecc_stats.failed += part->master->ecc_stats.failed - stats.failed; else mtd->ecc_stats.corrected += part->master->ecc_stats.corrected - stats.corrected; return res; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git5241.60%114.29%
yauhen kharuzhyyauhen kharuzhy3225.60%114.29%
thomas gleixnerthomas gleixner2419.20%114.29%
mike dunnmike dunn1411.20%228.57%
brian norrisbrian norris32.40%228.57%
Total125100.00%7100.00%


static int part_point(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, void **virt, resource_size_t *phys) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_point(part->master, from + part->offset, len, retlen, virt, phys); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git4771.21%120.00%
jared hulbertjared hulbert913.64%120.00%
mike dunnmike dunn57.58%120.00%
david woodhousedavid woodhouse46.06%120.00%
brian norrisbrian norris11.52%120.00%
Total66100.00%5100.00%


static int part_unpoint(struct mtd_info *mtd, loff_t from, size_t len) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_unpoint(part->master, from + part->offset, len); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git3370.21%120.00%
mike dunnmike dunn510.64%120.00%
david woodhousedavid woodhouse510.64%120.00%
artem bityutskiyartem bityutskiy36.38%120.00%
brian norrisbrian norris12.13%120.00%
Total47100.00%5100.00%


static unsigned long part_get_unmapped_area(struct mtd_info *mtd, unsigned long len, unsigned long offset, unsigned long flags) { struct mtd_part *part = mtd_to_part(mtd); offset += part->offset; return part->master->_get_unmapped_area(part->master, len, offset, flags); }

Contributors

PersonTokensPropCommitsCommitProp
david howellsdavid howells5289.66%133.33%
mike dunnmike dunn58.62%133.33%
brian norrisbrian norris11.72%133.33%
Total58100.00%3100.00%


static int part_read_oob(struct mtd_info *mtd, loff_t from, struct mtd_oob_ops *ops) { struct mtd_part *part = mtd_to_part(mtd); int res; if (from >= mtd->size) return -EINVAL; if (ops->datbuf && from + ops->len > mtd->size) return -EINVAL; /* * If OOB is also requested, make sure that we do not read past the end * of this partition. */ if (ops->oobbuf) { size_t len, pages; len = mtd_oobavail(mtd, ops); pages = mtd_div_by_ws(mtd->size, mtd); pages -= mtd_div_by_ws(from, mtd); if (ops->ooboffs + ops->ooblen > pages * len) return -EINVAL; } res = part->master->_read_oob(part->master, from + part->offset, ops); if (unlikely(res)) { if (mtd_is_bitflip(res)) mtd->ecc_stats.corrected++; if (mtd_is_eccerr(res)) mtd->ecc_stats.failed++; } return res; }

Contributors

PersonTokensPropCommitsCommitProp
artem bityutskiyartem bityutskiy5630.11%110.00%
thomas gleixnerthomas gleixner5227.96%220.00%
pre-gitpre-git3820.43%110.00%
david woodhousedavid woodhouse1910.22%110.00%
brian norrisbrian norris73.76%220.00%
mike dunnmike dunn52.69%110.00%
boris brezillonboris brezillon52.69%110.00%
vitaly woolvitaly wool42.15%110.00%
Total186100.00%10100.00%


static int part_read_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_read_user_prot_reg(part->master, from, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git3461.82%125.00%
david woodhousedavid woodhouse1527.27%125.00%
mike dunnmike dunn59.09%125.00%
brian norrisbrian norris11.82%125.00%
Total55100.00%4100.00%


static int part_get_user_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, struct otp_info *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_get_user_prot_info(part->master, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
nicolas pitrenicolas pitre3466.67%125.00%
christian rieschchristian riesch1121.57%125.00%
mike dunnmike dunn59.80%125.00%
brian norrisbrian norris11.96%125.00%
Total51100.00%4100.00%


static int part_read_fact_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_read_fact_prot_reg(part->master, from, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git3461.82%125.00%
david woodhousedavid woodhouse1527.27%125.00%
mike dunnmike dunn59.09%125.00%
brian norrisbrian norris11.82%125.00%
Total55100.00%4100.00%


static int part_get_fact_prot_info(struct mtd_info *mtd, size_t len, size_t *retlen, struct otp_info *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_get_fact_prot_info(part->master, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
nicolas pitrenicolas pitre3466.67%125.00%
christian rieschchristian riesch1121.57%125.00%
mike dunnmike dunn59.80%125.00%
brian norrisbrian norris11.96%125.00%
Total51100.00%4100.00%


static int part_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_write(part->master, to + part->offset, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse3151.67%125.00%
linus torvaldslinus torvalds2338.33%125.00%
mike dunnmike dunn58.33%125.00%
brian norrisbrian norris11.67%125.00%
Total60100.00%4100.00%


static int part_panic_write(struct mtd_info *mtd, loff_t to, size_t len, size_t *retlen, const u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_panic_write(part->master, to + part->offset, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
richard purdierichard purdie5490.00%133.33%
mike dunnmike dunn58.33%133.33%
brian norrisbrian norris11.67%133.33%
Total60100.00%3100.00%


static int part_write_oob(struct mtd_info *mtd, loff_t to, struct mtd_oob_ops *ops) { struct mtd_part *part = mtd_to_part(mtd); if (to >= mtd->size) return -EINVAL; if (ops->datbuf && to + ops->len > mtd->size) return -EINVAL; return part->master->_write_oob(part->master, to + part->offset, ops); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse5871.60%120.00%
thomas gleixnerthomas gleixner1316.05%120.00%
mike dunnmike dunn56.17%120.00%
vitaly woolvitaly wool44.94%120.00%
brian norrisbrian norris11.23%120.00%
Total81100.00%5100.00%


static int part_write_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len, size_t *retlen, u_char *buf) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_write_user_prot_reg(part->master, from, len, retlen, buf); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse4989.09%133.33%
mike dunnmike dunn59.09%133.33%
brian norrisbrian norris11.82%133.33%
Total55100.00%3100.00%


static int part_lock_user_prot_reg(struct mtd_info *mtd, loff_t from, size_t len) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_lock_user_prot_reg(part->master, from, len); }

Contributors

PersonTokensPropCommitsCommitProp
nicolas pitrenicolas pitre3786.05%133.33%
mike dunnmike dunn511.63%133.33%
brian norrisbrian norris12.33%133.33%
Total43100.00%3100.00%


static int part_writev(struct mtd_info *mtd, const struct kvec *vecs, unsigned long count, loff_t to, size_t *retlen) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_writev(part->master, vecs, count, to + part->offset, retlen); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse5588.71%125.00%
mike dunnmike dunn58.06%125.00%
brian norrisbrian norris11.61%125.00%
al viroal viro11.61%125.00%
Total62100.00%4100.00%


static int part_erase(struct mtd_info *mtd, struct erase_info *instr) { struct mtd_part *part = mtd_to_part(mtd); int ret; instr->addr += part->offset; ret = part->master->_erase(part->master, instr); if (ret) { if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN) instr->fail_addr -= part->offset; instr->addr -= part->offset; } return ret; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse4957.65%342.86%
adrian hunteradrian hunter3035.29%228.57%
mike dunnmike dunn55.88%114.29%
brian norrisbrian norris11.18%114.29%
Total85100.00%7100.00%


void mtd_erase_callback(struct erase_info *instr) { if (instr->mtd->_erase == part_erase) { struct mtd_part *part = mtd_to_part(instr->mtd); if (instr->fail_addr != MTD_FAIL_ADDR_UNKNOWN) instr->fail_addr -= part->offset; instr->addr -= part->offset; } if (instr->callback) instr->callback(instr); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse6895.77%350.00%
adrian hunteradrian hunter11.41%116.67%
brian norrisbrian norris11.41%116.67%
artem bityutskiyartem bityutskiy11.41%116.67%
Total71100.00%6100.00%

EXPORT_SYMBOL_GPL(mtd_erase_callback);
static int part_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_lock(part->master, ofs + part->offset, len); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse4085.11%125.00%
mike dunnmike dunn510.64%125.00%
adrian hunteradrian hunter12.13%125.00%
brian norrisbrian norris12.13%125.00%
Total47100.00%4100.00%


static int part_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_unlock(part->master, ofs + part->offset, len); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse4085.11%125.00%
mike dunnmike dunn510.64%125.00%
adrian hunteradrian hunter12.13%125.00%
brian norrisbrian norris12.13%125.00%
Total47100.00%4100.00%


static int part_is_locked(struct mtd_info *mtd, loff_t ofs, uint64_t len) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_is_locked(part->master, ofs + part->offset, len); }

Contributors

PersonTokensPropCommitsCommitProp
richard cochranrichard cochran4187.23%133.33%
mike dunnmike dunn510.64%133.33%
brian norrisbrian norris12.13%133.33%
Total47100.00%3100.00%


static void part_sync(struct mtd_info *mtd) { struct mtd_part *part = mtd_to_part(mtd); part->master->_sync(part->master); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse2681.25%133.33%
mike dunnmike dunn515.62%133.33%
brian norrisbrian norris13.12%133.33%
Total32100.00%3100.00%


static int part_suspend(struct mtd_info *mtd) { struct mtd_part *part = mtd_to_part(mtd); return part->master->_suspend(part->master); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse2781.82%133.33%
mike dunnmike dunn515.15%133.33%
brian norrisbrian norris13.03%133.33%
Total33100.00%3100.00%


static void part_resume(struct mtd_info *mtd) { struct mtd_part *part = mtd_to_part(mtd); part->master->_resume(part->master); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse1959.38%125.00%
linus torvaldslinus torvalds721.88%125.00%
mike dunnmike dunn515.62%125.00%
brian norrisbrian norris13.12%125.00%
Total32100.00%4100.00%


static int part_block_isreserved(struct mtd_info *mtd, loff_t ofs) { struct mtd_part *part = mtd_to_part(mtd); ofs += part->offset; return part->master->_block_isreserved(part->master, ofs); }

Contributors

PersonTokensPropCommitsCommitProp
ezequiel garciaezequiel garcia4397.73%150.00%
brian norrisbrian norris12.27%150.00%
Total44100.00%2100.00%


static int part_block_isbad(struct mtd_info *mtd, loff_t ofs) { struct mtd_part *part = mtd_to_part(mtd); ofs += part->offset; return part->master->_block_isbad(part->master, ofs); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse3886.36%133.33%
mike dunnmike dunn511.36%133.33%
brian norrisbrian norris12.27%133.33%
Total44100.00%3100.00%


static int part_block_markbad(struct mtd_info *mtd, loff_t ofs) { struct mtd_part *part = mtd_to_part(mtd); int res; ofs += part->offset; res = part->master->_block_markbad(part->master, ofs); if (!res) mtd->ecc_stats.badblocks++; return res; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse3758.73%125.00%
thomas gleixnerthomas gleixner2031.75%125.00%
mike dunnmike dunn57.94%125.00%
brian norrisbrian norris11.59%125.00%
Total63100.00%4100.00%


static int part_ooblayout_ecc(struct mtd_info *mtd, int section, struct mtd_oob_region *oobregion) { struct mtd_part *part = mtd_to_part(mtd); return mtd_ooblayout_ecc(part->master, section, oobregion); }

Contributors

PersonTokensPropCommitsCommitProp
boris brezillonboris brezillon41100.00%1100.00%
Total41100.00%1100.00%


static int part_ooblayout_free(struct mtd_info *mtd, int section, struct mtd_oob_region *oobregion) { struct mtd_part *part = mtd_to_part(mtd); return mtd_ooblayout_free(part->master, section, oobregion); }

Contributors

PersonTokensPropCommitsCommitProp
boris brezillonboris brezillon41100.00%1100.00%
Total41100.00%1100.00%

static const struct mtd_ooblayout_ops part_ooblayout_ops = { .ecc = part_ooblayout_ecc, .free = part_ooblayout_free, };
static inline void free_partition(struct mtd_part *p) { kfree(p->mtd.name); kfree(p); }

Contributors

PersonTokensPropCommitsCommitProp
roman tereshonkovroman tereshonkov26100.00%1100.00%
Total26100.00%1100.00%

/* * This function unregisters and destroy all slave MTD objects which are * attached to the given master MTD object. */
int del_mtd_partitions(struct mtd_info *master) { struct mtd_part *slave, *next; int ret, err = 0; mutex_lock(&mtd_partitions_mutex); list_for_each_entry_safe(slave, next, &mtd_partitions, list) if (slave->master == master) { ret = del_mtd_device(&slave->mtd); if (ret < 0) { err = ret; continue; } list_del(&slave->list); free_partition(slave); } mutex_unlock(&mtd_partitions_mutex); return err; }

Contributors

PersonTokensPropCommitsCommitProp
pre-gitpre-git4546.88%133.33%
roman tereshonkovroman tereshonkov4041.67%133.33%
chris malleychris malley1111.46%133.33%
Total96100.00%3100.00%


static struct mtd_part *allocate_partition(struct mtd_info *master, const struct mtd_partition *part, int partno, uint64_t cur_offset) { struct mtd_part *slave; char *name; /* allocate the partition structure */ slave = kzalloc(sizeof(*slave), GFP_KERNEL); name = kstrdup(part->name, GFP_KERNEL); if (!name || !slave) { printk(KERN_ERR"memory allocation error while creating partitions for \"%s\"\n", master->name); kfree(name); kfree(slave); return ERR_PTR(-ENOMEM); } /* set up the MTD object for this partition */ slave->mtd.type = master->type; slave->mtd.flags = master->flags & ~part->mask_flags; slave->mtd.size = part->size; slave->mtd.writesize = master->writesize; slave->mtd.writebufsize = master->writebufsize; slave->mtd.oobsize = master->oobsize; slave->mtd.oobavail = master->oobavail; slave->mtd.subpage_sft = master->subpage_sft; slave->mtd.name = name; slave->mtd.owner = master->owner; /* NOTE: Historically, we didn't arrange MTDs as a tree out of * concern for showing the same data in multiple partitions. * However, it is very useful to have the master node present, * so the MTD_PARTITIONED_MASTER option allows that. The master * will have device nodes etc only if this is set, so make the * parent conditional on that option. Note, this is a way to * distinguish between the master and the partition in sysfs. */ slave->mtd.dev.parent = IS_ENABLED(CONFIG_MTD_PARTITIONED_MASTER) ? &master->dev : master->dev.parent; slave->mtd._read = part_read; slave->mtd._write = part_write; if (master->_panic_write) slave->mtd._panic_write = part_panic_write; if (master->_point && master->_unpoint) { slave->mtd._point = part_point; slave->mtd._unpoint = part_unpoint; } if (master->_get_unmapped_area) slave->mtd._get_unmapped_area = part_get_unmapped_area; if (master->_read_oob) slave->mtd._read_oob = part_read_oob; if (master->_write_oob) slave->mtd._write_oob = part_write_oob; if (master->_read_user_prot_reg) slave->mtd._read_user_prot_reg = part_read_user_prot_reg; if (master->_read_fact_prot_reg) slave->mtd._read_fact_prot_reg = part_read_fact_prot_reg; if (master->_write_user_prot_reg) slave->mtd._write_user_prot_reg = part_write_user_prot_reg; if (master->_lock_user_prot_reg) slave->mtd._lock_user_prot_reg = part_lock_user_prot_reg; if (master->_get_user_prot_info) slave->mtd._get_user_prot_info = part_get_user_prot_info; if (master->_get_fact_prot_info) slave->mtd._get_fact_prot_info = part_get_fact_prot_info; if (master->_sync) slave->mtd._sync = part_sync; if (!partno && !master->dev.class && master->_suspend && master->_resume) { slave->mtd._suspend = part_suspend; slave->mtd._resume = part_resume; } if (master->_writev) slave->mtd._writev = part_writev; if (master->_lock) slave->mtd._lock = part_lock; if (master->_unlock) slave->mtd._unlock = part_unlock; if (master->_is_locked) slave->mtd._is_locked = part_is_locked; if (master->_block_isreserved) slave->mtd._block_isreserved = part_block_isreserved; if (master->_block_isbad) slave->mtd._block_isbad = part_block_isbad; if (master->_block_markbad) slave->mtd._block_markbad = part_block_markbad; slave->mtd._erase = part_erase; slave->master = master; slave->offset = part->offset; if (slave->offset == MTDPART_OFS_APPEND) slave->offset = cur_offset; if (slave->offset == MTDPART_OFS_NXTBLK) { slave->offset = cur_offset; if (mtd_mod_by_eb(cur_offset, master) != 0) { /* Round up to next erasesize */ slave->offset = (mtd_div_by_eb(cur_offset, master) + 1) * master->erasesize; printk(KERN_NOTICE "Moving partition %d: " "0x%012llx -> 0x%012llx\n", partno, (unsigned long long)cur_offset, (unsigned long long)slave->offset); } } if (slave->offset == MTDPART_OFS_RETAIN) { slave->offset = cur_offset; if (master->size - slave->offset >= slave->mtd.size) { slave->mtd.size = master->size - slave->offset - slave->mtd.size; } else { printk(KERN_ERR "mtd partition \"%s\" doesn't have enough space: %#llx < %#llx, disabled\n", part->name, master->size - slave->offset, slave->mtd.size); /* register to preserve ordering */ goto out_register; } } if (slave->mtd.size == MTDPART_SIZ_FULL) slave->mtd.size = master->size - slave->offset; printk(KERN_NOTICE "0x%012llx-0x%012llx : \"%s\"\n", (unsigned long long)slave->offset, (unsigned long long)(slave->offset + slave->mtd.size), slave->mtd.name); /* let's do some sanity checks */ if (slave->offset >= master->size) { /* let's register it anyway to preserve ordering */ slave->offset = 0; slave->mtd.size = 0; printk(KERN_ERR"mtd: partition \"%s\" is out of reach -- disabled\n", part->name); goto out_register; } if (slave->offset + slave->mtd.size > master->size) { slave->mtd.size = master->size - slave->offset; printk(KERN_WARNING"mtd: partition \"%s\" extends beyond the end of device \"%s\" -- size truncated to %#llx\n", part->name, master->name, (unsigned long long)slave->mtd.size); } if (master->numeraseregions > 1) { /* Deal with variable erase size stuff */ int i, max = master->numeraseregions; u64 end = slave->offset + slave->mtd.size; struct mtd_erase_region_info *regions = master->eraseregions; /* Find the first erase regions which is part of this * partition. */ for (i = 0; i < max && regions[i].offset <= slave->offset; i++) ; /* The loop searched for the region _behind_ the first one */ if (i > 0) i--; /* Pick biggest erasesize */ for (; i < max && regions[i].offset < end; i++) { if (slave->mtd.erasesize < regions[i].erasesize) { slave->mtd.erasesize = regions[i].erasesize; } } BUG_ON(slave->mtd.erasesize == 0); } else { /* Single erase size */ slave->mtd.erasesize = master->erasesize; } if ((slave->mtd.flags & MTD_WRITEABLE) && mtd_mod_by_eb(slave->offset, &slave->mtd)) { /* Doesn't start on a boundary of major erase size */ /* FIXME: Let it be writable if it is on a boundary of * _minor_ erase size though */ slave->mtd.flags &= ~MTD_WRITEABLE; printk(KERN_WARNING"mtd: partition \"%s\" doesn't start on an erase block boundary -- force read-only\n", part->name); } if ((slave->mtd.flags & MTD_WRITEABLE) && mtd_mod_by_eb(slave->mtd.size, &slave->mtd)) { slave->mtd.flags &= ~MTD_WRITEABLE; printk(KERN_WARNING"mtd: partition \"%s\" doesn't end on an erase block -- force read-only\n", part->name); } mtd_set_ooblayout(&slave->mtd, &part_ooblayout_ops); slave->mtd.ecc_step_size = master->ecc_step_size; slave->mtd.ecc_strength = master->ecc_strength; slave->mtd.bitflip_threshold = master->bitflip_threshold; if (master->_block_isbad) { uint64_t offs = 0; while (offs < slave->mtd.size) { if (mtd_block_isreserved(master, offs + slave->offset)) slave->mtd.ecc_stats.bbtblocks++; else if (mtd_block_isbad(master, offs + slave->offset)) slave->mtd.ecc_stats.badblocks++; offs += slave->mtd.erasesize; } } out_register: return slave; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse45835.59%38.57%
pre-gitpre-git17413.52%12.86%
atsushi nemotoatsushi nemoto886.84%411.43%
dmitry eremin-baryshkovdmitry eremin-baryshkov856.60%12.86%
linus torvaldslinus torvalds715.52%12.86%
artem bityutskiyartem bityutskiy665.13%38.57%
thomas gleixnerthomas gleixner604.66%25.71%
adrian hunteradrian hunter513.96%12.86%
ezequiel garciaezequiel garcia372.87%25.71%
nicolas pitrenicolas pitre362.80%12.86%
roman tereshonkovroman tereshonkov302.33%12.86%
mike dunnmike dunn201.55%25.71%
david howellsdavid howells161.24%12.86%
david brownelldavid brownell141.09%12.86%
richard purdierichard purdie120.93%12.86%
richard cochranrichard cochran120.93%12.86%
dan ehrenbergdan ehrenberg110.85%12.86%
vitaly woolvitaly wool100.78%12.86%
huang shijiehuang shijie100.78%12.86%
anatolij gustschinanatolij gustschin100.78%12.86%
boris brezillonboris brezillon70.54%25.71%
roel kluinroel kluin60.47%12.86%
joern engeljoern engel20.16%12.86%
burman yanburman yan10.08%12.86%
Total1287100.00%35100.00%


static ssize_t mtd_partition_offset_show(struct device *dev, struct device_attribute *attr, char *buf) { struct mtd_info *mtd = dev_get_drvdata(dev); struct mtd_part *part = mtd_to_part(mtd); return snprintf(buf, PAGE_SIZE, "%lld\n", part->offset); }

Contributors

PersonTokensPropCommitsCommitProp
dan ehrenbergdan ehrenberg5398.15%150.00%
brian norrisbrian norris11.85%150.00%
Total54100.00%2100.00%

static DEVICE_ATTR(offset, S_IRUGO, mtd_partition_offset_show, NULL); static const struct attribute *mtd_partition_attrs[] = { &dev_attr_offset.attr, NULL };
static int mtd_add_partition_attrs(struct mtd_part *new) { int ret = sysfs_create_files(&new->mtd.dev.kobj, mtd_partition_attrs); if (ret) printk(KERN_WARNING "mtd: failed to create partition attrs, err=%d\n", ret); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
dan ehrenbergdan ehrenberg43100.00%1100.00%
Total43100.00%1100.00%


int mtd_add_partition(struct mtd_info *master, const char *name, long long offset, long long length) { struct mtd_partition part; struct mtd_part *new; int ret = 0; /* the direct offset is expected */ if (offset == MTDPART_OFS_APPEND || offset == MTDPART_OFS_NXTBLK) return -EINVAL; if (length == MTDPART_SIZ_FULL) length = master->size - offset; if (length <= 0) return -EINVAL; memset(&part, 0, sizeof(part)); part.name = name; part.size = length; part.offset = offset; new = allocate_partition(master, &part, -1, offset); if (IS_ERR(new)) return PTR_ERR(new); mutex_lock(&mtd_partitions_mutex); list_add(&new->list, &mtd_partitions); mutex_unlock(&mtd_partitions_mutex); add_mtd_device(&new->mtd); mtd_add_partition_attrs(new); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
roman tereshonkovroman tereshonkov12169.54%120.00%
atsushi nemotoatsushi nemoto3419.54%120.00%
brian norrisbrian norris137.47%120.00%
dan ehrenbergdan ehrenberg52.87%120.00%
geert uytterhoevengeert uytterhoeven10.57%120.00%
Total174100.00%5100.00%

EXPORT_SYMBOL_GPL(mtd_add_partition);
int mtd_del_partition(struct mtd_info *master, int partno) { struct mtd_part *slave, *next; int ret = -EINVAL; mutex_lock(&mtd_partitions_mutex); list_for_each_entry_safe(slave, next, &mtd_partitions, list) if ((slave->master == master) && (slave->mtd.index == partno)) { sysfs_remove_files(&slave->mtd.dev.kobj, mtd_partition_attrs); ret = del_mtd_device(&slave->mtd); if (ret < 0) break; list_del(&slave->list); free_partition(slave); break; } mutex_unlock(&mtd_partitions_mutex); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
roman tereshonkovroman tereshonkov10588.24%150.00%
dan ehrenbergdan ehrenberg1411.76%150.00%
Total119100.00%2100.00%

EXPORT_SYMBOL_GPL(mtd_del_partition); /* * This function, given a master MTD object and a partition table, creates * and registers slave MTD objects which are bound to the master according to * the partition definitions. * * For historical reasons, this function's caller only registers the master * if the MTD_PARTITIONED_MASTER config option is set. */
int add_mtd_partitions(struct mtd_info *master, const struct mtd_partition *parts, int nbparts) { struct mtd_part *slave; uint64_t cur_offset = 0; int i; printk(KERN_NOTICE "Creating %d MTD partitions on \"%s\":\n", nbparts, master->name); for (i = 0; i < nbparts; i++) { slave = allocate_partition(master, parts + i, i, cur_offset); if (IS_ERR(slave)) { del_mtd_partitions(master); return PTR_ERR(slave); } mutex_lock(&mtd_partitions_mutex); list_add(&slave->list, &mtd_partitions); mutex_unlock(&mtd_partitions_mutex); add_mtd_device(&slave->mtd); mtd_add_partition_attrs(slave); cur_offset = slave->offset + slave->mtd.size; } return 0; }

Contributors

PersonTokensPropCommitsCommitProp
roman tereshonkovroman tereshonkov11780.69%116.67%
atsushi nemotoatsushi nemoto117.59%116.67%
boris brezillonboris brezillon74.83%116.67%
dan ehrenbergdan ehrenberg53.45%116.67%
david woodhousedavid woodhouse42.76%116.67%
pre-gitpre-git10.69%116.67%
Total145100.00%6100.00%

static DEFINE_SPINLOCK(part_parser_lock); static LIST_HEAD(part_parsers);
static struct mtd_part_parser *mtd_part_parser_get(const char *name) { struct mtd_part_parser *p, *ret = NULL; spin_lock(&part_parser_lock); list_for_each_entry(p, &part_parsers, list) if (!strcmp(p->name, name) && try_module_get(p->owner)) { ret = p; break; } spin_unlock(&part_parser_lock); return ret; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse6083.33%233.33%
chris malleychris malley68.33%116.67%
linus torvaldslinus torvalds34.17%116.67%
pre-gitpre-git22.78%116.67%
brian norrisbrian norris11.39%116.67%
Total72100.00%6100.00%


static inline void mtd_part_parser_put(const struct mtd_part_parser *p) { module_put(p->owner); }

Contributors

PersonTokensPropCommitsCommitProp
brian norrisbrian norris1785.00%150.00%
dmitry eremin-baryshkovdmitry eremin-baryshkov315.00%150.00%
Total20100.00%2100.00%

/* * Many partition parsers just expected the core to kfree() all their data in * one chunk. Do that by default. */
static void mtd_part_parser_cleanup_default(const struct mtd_partition *pparts, int nr_parts) { kfree(pparts); }

Contributors

PersonTokensPropCommitsCommitProp
brian norrisbrian norris20100.00%1100.00%
Total20100.00%1100.00%


int __register_mtd_parser(struct mtd_part_parser *p, struct module *owner) { p->owner = owner; if (!p->cleanup) p->cleanup = &mtd_part_parser_cleanup_default; spin_lock(&part_parser_lock); list_add(&p->list, &part_parsers); spin_unlock(&part_parser_lock); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse3150.82%133.33%
brian norrisbrian norris3049.18%266.67%
Total61100.00%3100.00%

EXPORT_SYMBOL_GPL(__register_mtd_parser);
void deregister_mtd_parser(struct mtd_part_parser *p) { spin_lock(&part_parser_lock); list_del(&p->list); spin_unlock(&part_parser_lock); }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse2996.67%150.00%
axel linaxel lin13.33%150.00%
Total30100.00%2100.00%

EXPORT_SYMBOL_GPL(deregister_mtd_parser); /* * Do not forget to update 'parse_mtd_partitions()' kerneldoc comment if you * are changing this array! */ static const char * const default_mtd_part_types[] = { "cmdlinepart", "ofpart", NULL }; /** * parse_mtd_partitions - parse MTD partitions * @master: the master partition (describes whole MTD device) * @types: names of partition parsers to try or %NULL * @pparts: info about partitions found is returned here * @data: MTD partition parser-specific data * * This function tries to find partition on MTD device @master. It uses MTD * partition parsers, specified in @types. However, if @types is %NULL, then * the default list of parsers is used. The default list contains only the * "cmdlinepart" and "ofpart" parsers ATM. * Note: If there are more then one parser in @types, the kernel only takes the * partitions parsed out by the first parser. * * This function may return: * o a negative error code in case of failure * o zero otherwise, and @pparts will describe the partitions, number of * partitions, and the parser which parsed them. Caller must release * resources with mtd_part_parser_cleanup() when finished with the returned * data. */
int parse_mtd_partitions(struct mtd_info *master, const char *const *types, struct mtd_partitions *pparts, struct mtd_part_parser_data *data) { struct mtd_part_parser *parser; int ret, err = 0; if (!types) types = default_mtd_part_types; for ( ; *types; types++) { pr_debug("%s: parsing partitions %s\n", master->name, *types); parser = mtd_part_parser_get(*types); if (!parser && !request_module("%s", *types)) parser = mtd_part_parser_get(*types); pr_debug("%s: got parser %s\n", master->name, parser ? parser->name : NULL); if (!parser) continue; ret = (*parser->parse_fn)(master, &pparts->parts, data); pr_debug("%s: parser %s: %i\n", master->name, parser->name, ret); if (ret > 0) { printk(KERN_NOTICE "%d %s partitions found on MTD device %s\n", ret, parser->name, master->name); pparts->nr_parts = ret; pparts->parser = parser; return 0; } mtd_part_parser_put(parser); /* * Stash the first error we see; only report it if no parser * succeeds */ if (ret < 0 && !err) err = ret; } return err; }

Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse8136.99%19.09%
michal suchanekmichal suchanek4420.09%19.09%
brian norrisbrian norris4319.63%436.36%
linus torvaldslinus torvalds2611.87%19.09%
dmitry eremin-baryshkovdmitry eremin-baryshkov146.39%218.18%
pre-gitpre-git104.57%19.09%
artem bityutskiyartem bityutskiy10.46%19.09%
Total219100.00%11100.00%


void mtd_part_parser_cleanup(struct mtd_partitions *parts) { const struct mtd_part_parser *parser; if (!parts) return; parser = parts->parser; if (parser) { if (parser->cleanup) parser->cleanup(parts->parts, parts->nr_parts); mtd_part_parser_put(parser); } }

Contributors

PersonTokensPropCommitsCommitProp
brian norrisbrian norris58100.00%1100.00%
Total58100.00%1100.00%


int mtd_is_partition(const struct mtd_info *mtd) { struct mtd_part *part; int ispart = 0; mutex_lock(&mtd_partitions_mutex); list_for_each_entry(part, &mtd_partitions, list) if (&part->mtd == mtd) { ispart = 1; break; } mutex_unlock(&mtd_partitions_mutex); return ispart; }

Contributors

PersonTokensPropCommitsCommitProp
roman tereshonkovroman tereshonkov5998.33%266.67%
richard genoudrichard genoud11.67%133.33%
Total60100.00%3100.00%

EXPORT_SYMBOL_GPL(mtd_is_partition); /* Returns the size of the entire flash chip */
uint64_t mtd_get_device_size(const struct mtd_info *mtd) { if (!mtd_is_partition(mtd)) return mtd->size; return mtd_to_part(mtd)->master->size; }

Contributors

PersonTokensPropCommitsCommitProp
richard genoudrichard genoud3397.06%150.00%
brian norrisbrian norris12.94%150.00%
Total34100.00%2100.00%

EXPORT_SYMBOL_GPL(mtd_get_device_size);

Overall Contributors

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse127528.89%78.75%
roman tereshonkovroman tereshonkov52211.83%22.50%
pre-gitpre-git52011.78%11.25%
brian norrisbrian norris2465.57%810.00%
thomas gleixnerthomas gleixner1753.97%56.25%
dan ehrenbergdan ehrenberg1643.72%22.50%
mike dunnmike dunn1493.38%45.00%
atsushi nemotoatsushi nemoto1423.22%45.00%
nicolas pitrenicolas pitre1413.20%11.25%
linus torvaldslinus torvalds1312.97%22.50%
artem bityutskiyartem bityutskiy1292.92%810.00%
boris brezillonboris brezillon1192.70%45.00%
dmitry eremin-baryshkovdmitry eremin-baryshkov1172.65%56.25%
adrian hunteradrian hunter851.93%33.75%
ezequiel garciaezequiel garcia801.81%22.50%
david howellsdavid howells681.54%11.25%
richard purdierichard purdie661.50%11.25%
richard cochranrichard cochran531.20%11.25%
michal suchanekmichal suchanek441.00%11.25%
richard genoudrichard genoud400.91%22.50%
yauhen kharuzhyyauhen kharuzhy320.73%11.25%
christian rieschchristian riesch220.50%11.25%
vitaly woolvitaly wool180.41%22.50%
chris malleychris malley170.39%11.25%
david brownelldavid brownell140.32%11.25%
huang shijiehuang shijie100.23%11.25%
anatolij gustschinanatolij gustschin100.23%11.25%
jared hulbertjared hulbert90.20%11.25%
roel kluinroel kluin60.14%11.25%
jamie ilesjamie iles30.07%11.25%
joern engeljoern engel20.05%11.25%
geert uytterhoevengeert uytterhoeven10.02%11.25%
burman yanburman yan10.02%11.25%
al viroal viro10.02%11.25%
axel linaxel lin10.02%11.25%
Total4413100.00%80100.00%
Directory: drivers/mtd
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}