Release 4.7 drivers/mtd/mtdblock_ro.c
/*
* Simple read-only (writable only for RAM) mtdblock driver
*
* Copyright © 2001-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/init.h>
#include <linux/slab.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/blktrans.h>
#include <linux/module.h>
#include <linux/major.h>
static int mtdblock_readsect(struct mtd_blktrans_dev *dev,
unsigned long block, char *buf)
{
size_t retlen;
if (mtd_read(dev->mtd, (block * 512), 512, &retlen, buf))
return 1;
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david woodhouse | david woodhouse | 27 | 54.00% | 1 | 20.00% |
linus torvalds | linus torvalds | 18 | 36.00% | 1 | 20.00% |
al viro | al viro | 3 | 6.00% | 1 | 20.00% |
dave jones | dave jones | 1 | 2.00% | 1 | 20.00% |
artem bityutskiy | artem bityutskiy | 1 | 2.00% | 1 | 20.00% |
| Total | 50 | 100.00% | 5 | 100.00% |
static int mtdblock_writesect(struct mtd_blktrans_dev *dev,
unsigned long block, char *buf)
{
size_t retlen;
if (mtd_write(dev->mtd, (block * 512), 512, &retlen, buf))
return 1;
return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david woodhouse | david woodhouse | 28 | 56.00% | 1 | 25.00% |
linus torvalds | linus torvalds | 19 | 38.00% | 1 | 25.00% |
al viro | al viro | 2 | 4.00% | 1 | 25.00% |
artem bityutskiy | artem bityutskiy | 1 | 2.00% | 1 | 25.00% |
| Total | 50 | 100.00% | 4 | 100.00% |
static void mtdblock_add_mtd(struct mtd_blktrans_ops *tr, struct mtd_info *mtd)
{
struct mtd_blktrans_dev *dev = kzalloc(sizeof(*dev), GFP_KERNEL);
if (!dev)
return;
dev->mtd = mtd;
dev->devnum = mtd->index;
dev->size = mtd->size >> 9;
dev->tr = tr;
dev->readonly = 1;
if (add_mtd_blktrans_dev(dev))
kfree(dev);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david woodhouse | david woodhouse | 37 | 43.02% | 1 | 16.67% |
al viro | al viro | 36 | 41.86% | 2 | 33.33% |
maxim levitsky | maxim levitsky | 7 | 8.14% | 1 | 16.67% |
linus torvalds | linus torvalds | 5 | 5.81% | 1 | 16.67% |
burman yan | burman yan | 1 | 1.16% | 1 | 16.67% |
| Total | 86 | 100.00% | 6 | 100.00% |
static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev)
{
del_mtd_blktrans_dev(dev);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 11 | 68.75% | 2 | 66.67% |
david woodhouse | david woodhouse | 5 | 31.25% | 1 | 33.33% |
| Total | 16 | 100.00% | 3 | 100.00% |
static struct mtd_blktrans_ops mtdblock_tr = {
.name = "mtdblock",
.major = MTD_BLOCK_MAJOR,
.part_bits = 0,
.blksize = 512,
.readsect = mtdblock_readsect,
.writesect = mtdblock_writesect,
.add_mtd = mtdblock_add_mtd,
.remove_dev = mtdblock_remove_dev,
.owner = THIS_MODULE,
};
static int __init mtdblock_init(void)
{
return register_mtd_blktrans(&mtdblock_tr);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
al viro | al viro | 10 | 62.50% | 2 | 40.00% |
david woodhouse | david woodhouse | 4 | 25.00% | 1 | 20.00% |
andrew morton | andrew morton | 1 | 6.25% | 1 | 20.00% |
linus torvalds | linus torvalds | 1 | 6.25% | 1 | 20.00% |
| Total | 16 | 100.00% | 5 | 100.00% |
static void __exit mtdblock_exit(void)
{
deregister_mtd_blktrans(&mtdblock_tr);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp |
linus torvalds | linus torvalds | 9 | 60.00% | 2 | 40.00% |
david woodhouse | david woodhouse | 3 | 20.00% | 1 | 20.00% |
al viro | al viro | 3 | 20.00% | 2 | 40.00% |
| Total | 15 | 100.00% | 5 | 100.00% |
module_init(mtdblock_init);
module_exit(mtdblock_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("David Woodhouse <dwmw2@infradead.org>");
MODULE_DESCRIPTION("Simple read-only block device emulation access to MTD devices");
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp |
david woodhouse | david woodhouse | 150 | 45.59% | 4 | 21.05% |
linus torvalds | linus torvalds | 80 | 24.32% | 2 | 10.53% |
al viro | al viro | 75 | 22.80% | 3 | 15.79% |
maxim levitsky | maxim levitsky | 7 | 2.13% | 1 | 5.26% |
richard purdie | richard purdie | 5 | 1.52% | 1 | 5.26% |
ezequiel garcia | ezequiel garcia | 4 | 1.22% | 2 | 10.53% |
paul gortmaker | paul gortmaker | 3 | 0.91% | 1 | 5.26% |
artem bityutskiy | artem bityutskiy | 2 | 0.61% | 2 | 10.53% |
dave jones | dave jones | 1 | 0.30% | 1 | 5.26% |
andrew morton | andrew morton | 1 | 0.30% | 1 | 5.26% |
burman yan | burman yan | 1 | 0.30% | 1 | 5.26% |
| Total | 329 | 100.00% | 19 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.