cregit-Linux how code gets into the kernel

Release 4.18 drivers/ide/ide-floppy_proc.c

Directory: drivers/ide
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/ide.h>
#include <linux/seq_file.h>

#include "ide-floppy.h"


static int idefloppy_capacity_proc_show(struct seq_file *m, void *v) { ide_drive_t*drive = (ide_drive_t *)m->private; seq_printf(m, "%llu\n", (long long)ide_gd_capacity(drive)); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Bartlomiej Zolnierkiewicz3269.57%266.67%
Alexey Dobriyan1430.43%133.33%
Total46100.00%3100.00%

ide_proc_entry_t ide_floppy_proc[] = { { "capacity", S_IFREG|S_IRUGO, idefloppy_capacity_proc_show }, { "geometry", S_IFREG|S_IRUGO, ide_geometry_proc_show }, {} }; ide_devset_rw_field(bios_cyl, bios_cyl); ide_devset_rw_field(bios_head, bios_head); ide_devset_rw_field(bios_sect, bios_sect); ide_devset_rw_field(ticks, pc_delay); const struct ide_proc_devset ide_floppy_settings[] = { IDE_PROC_DEVSET(bios_cyl, 0, 1023), IDE_PROC_DEVSET(bios_head, 0, 255), IDE_PROC_DEVSET(bios_sect, 0, 63), IDE_PROC_DEVSET(ticks, 0, 255), { NULL }, };

Overall Contributors

PersonTokensPropCommitsCommitProp
Bartlomiej Zolnierkiewicz14184.94%228.57%
Alexey Dobriyan1810.84%114.29%
Paul Gortmaker31.81%114.29%
Christoph Hellwig21.20%114.29%
Hannes Eder10.60%114.29%
Greg Kroah-Hartman10.60%114.29%
Total166100.00%7100.00%
Directory: drivers/ide
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.