cregit-Linux how code gets into the kernel

Release 4.14 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 Woodhouse2652.00%120.00%
Linus Torvalds1632.00%120.00%
Al Viro48.00%120.00%
Dave Jones36.00%120.00%
Artem B. 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 Woodhouse2856.00%125.00%
Linus Torvalds1938.00%125.00%
Al Viro24.00%125.00%
Artem B. 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 Woodhouse3743.02%116.67%
Al Viro3641.86%233.33%
Maxim Levitsky78.14%116.67%
Linus Torvalds55.81%116.67%
Burman 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 Viro1168.75%150.00%
David Woodhouse531.25%150.00%
Total16100.00%2100.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 Viro1062.50%240.00%
David Woodhouse425.00%120.00%
Andrew Morton16.25%120.00%
Linus Torvalds16.25%120.00%
Total16100.00%5100.00%


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

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds960.00%240.00%
Al Viro320.00%240.00%
David Woodhouse320.00%120.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 Woodhouse14945.29%421.05%
Linus Torvalds7823.71%210.53%
Al Viro7623.10%315.79%
Maxim Levitsky72.13%15.26%
Richard Purdie51.52%15.26%
Ezequiel García41.22%210.53%
Dave Jones30.91%15.26%
Paul Gortmaker30.91%15.26%
Artem B. Bityutskiy20.61%210.53%
Burman Yan10.30%15.26%
Andrew Morton10.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.
Created with cregit.