Release 4.12 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 | 26 | 52.00% | 1 | 20.00% | 
| Linus Torvalds | 16 | 32.00% | 1 | 20.00% | 
| Al Viro | 4 | 8.00% | 1 | 20.00% | 
| Dave Jones | 3 | 6.00% | 1 | 20.00% | 
| Artem B. 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 | 28 | 56.00% | 1 | 25.00% | 
| Linus Torvalds | 19 | 38.00% | 1 | 25.00% | 
| Al Viro | 2 | 4.00% | 1 | 25.00% | 
| Artem B. 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 | 37 | 43.02% | 1 | 16.67% | 
| Al Viro | 36 | 41.86% | 2 | 33.33% | 
| Maxim Levitsky | 7 | 8.14% | 1 | 16.67% | 
| Linus Torvalds | 5 | 5.81% | 1 | 16.67% | 
| 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 | 11 | 68.75% | 1 | 50.00% | 
| David Woodhouse | 5 | 31.25% | 1 | 50.00% | 
| Total | 16 | 100.00% | 2 | 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 | 10 | 62.50% | 2 | 40.00% | 
| David Woodhouse | 4 | 25.00% | 1 | 20.00% | 
| Andrew Morton | 1 | 6.25% | 1 | 20.00% | 
| 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 | 9 | 60.00% | 2 | 40.00% | 
| Al Viro | 3 | 20.00% | 2 | 40.00% | 
| David Woodhouse | 3 | 20.00% | 1 | 20.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 | 149 | 45.29% | 4 | 21.05% | 
| Linus Torvalds | 78 | 23.71% | 2 | 10.53% | 
| Al Viro | 76 | 23.10% | 3 | 15.79% | 
| Maxim Levitsky | 7 | 2.13% | 1 | 5.26% | 
| Richard Purdie | 5 | 1.52% | 1 | 5.26% | 
| Ezequiel García | 4 | 1.22% | 2 | 10.53% | 
| Dave Jones | 3 | 0.91% | 1 | 5.26% | 
| Paul Gortmaker | 3 | 0.91% | 1 | 5.26% | 
| Artem B. Bityutskiy | 2 | 0.61% | 2 | 10.53% | 
| Burman Yan | 1 | 0.30% | 1 | 5.26% | 
| Andrew Morton | 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.