cregit-Linux how code gets into the kernel

Release 4.7 drivers/mtd/mtdblock_ro.c

Directory: drivers/mtd
/*
 * 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

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse2754.00%120.00%
linus torvaldslinus torvalds1836.00%120.00%
al viroal viro36.00%120.00%
dave jonesdave jones12.00%120.00%
artem bityutskiyartem bityutskiy12.00%120.00%
Total50100.00%5100.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

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse2856.00%125.00%
linus torvaldslinus torvalds1938.00%125.00%
al viroal viro24.00%125.00%
artem bityutskiyartem bityutskiy12.00%125.00%
Total50100.00%4100.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

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse3743.02%116.67%
al viroal viro3641.86%233.33%
maxim levitskymaxim levitsky78.14%116.67%
linus torvaldslinus torvalds55.81%116.67%
burman yanburman yan11.16%116.67%
Total86100.00%6100.00%


static void mtdblock_remove_dev(struct mtd_blktrans_dev *dev) { del_mtd_blktrans_dev(dev); }

Contributors

PersonTokensPropCommitsCommitProp
al viroal viro1168.75%266.67%
david woodhousedavid woodhouse531.25%133.33%
Total16100.00%3100.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

PersonTokensPropCommitsCommitProp
al viroal viro1062.50%240.00%
david woodhousedavid woodhouse425.00%120.00%
andrew mortonandrew morton16.25%120.00%
linus torvaldslinus torvalds16.25%120.00%
Total16100.00%5100.00%


static void __exit mtdblock_exit(void) { deregister_mtd_blktrans(&mtdblock_tr); }

Contributors

PersonTokensPropCommitsCommitProp
linus torvaldslinus torvalds960.00%240.00%
david woodhousedavid woodhouse320.00%120.00%
al viroal viro320.00%240.00%
Total15100.00%5100.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

PersonTokensPropCommitsCommitProp
david woodhousedavid woodhouse15045.59%421.05%
linus torvaldslinus torvalds8024.32%210.53%
al viroal viro7522.80%315.79%
maxim levitskymaxim levitsky72.13%15.26%
richard purdierichard purdie51.52%15.26%
ezequiel garciaezequiel garcia41.22%210.53%
paul gortmakerpaul gortmaker30.91%15.26%
artem bityutskiyartem bityutskiy20.61%210.53%
dave jonesdave jones10.30%15.26%
andrew mortonandrew morton10.30%15.26%
burman yanburman yan10.30%15.26%
Total329100.00%19100.00%
Directory: drivers/mtd
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
{% endraw %}