cregit-Linux how code gets into the kernel

Release 4.14 arch/mips/fw/arc/file.c

Directory: arch/mips/fw/arc
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * ARC firmware interface.
 *
 * Copyright (C) 1994, 1995, 1996, 1999 Ralf Baechle
 * Copyright (C) 1999 Silicon Graphics, Inc.
 */

#include <asm/fw/arc/types.h>
#include <asm/sgialib.h>


LONG ArcGetDirectoryEntry(ULONG FileID, struct linux_vdirent *Buffer, ULONG N, ULONG *Count) { return ARC_CALL4(get_vdirent, FileID, Buffer, N, Count); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1852.94%266.67%
Ralf Bächle1647.06%133.33%
Total34100.00%3100.00%


LONG ArcOpen(CHAR *Path, enum linux_omode OpenMode, ULONG *FileID) { return ARC_CALL3(open, Path, OpenMode, FileID); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1655.17%266.67%
Ralf Bächle1344.83%133.33%
Total29100.00%3100.00%


LONG ArcClose(ULONG FileID) { return ARC_CALL1(close, FileID); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle850.00%133.33%
Linus Torvalds (pre-git)850.00%266.67%
Total16100.00%3100.00%


LONG ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count) { return ARC_CALL4(read, FileID, Buffer, N, Count); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle1751.52%133.33%
Linus Torvalds (pre-git)1648.48%266.67%
Total33100.00%3100.00%


LONG ArcGetReadStatus(ULONG FileID) { return ARC_CALL1(get_rstatus, FileID); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)850.00%266.67%
Ralf Bächle850.00%133.33%
Total16100.00%3100.00%


LONG ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count) { return ARC_CALL4(write, FileID, Buffer, N, Count); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle1754.84%133.33%
Linus Torvalds (pre-git)1445.16%266.67%
Total31100.00%3100.00%


LONG ArcSeek(ULONG FileID, struct linux_bigint *Position, enum linux_seekmode SeekMode) { return ARC_CALL3(seek, FileID, Position, SeekMode); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1758.62%266.67%
Ralf Bächle1241.38%133.33%
Total29100.00%3100.00%


LONG ArcMount(char *name, enum linux_mountops op) { return ARC_CALL2(mount, name, op); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1878.26%266.67%
Ralf Bächle521.74%133.33%
Total23100.00%3100.00%


LONG ArcGetFileInformation(ULONG FileID, struct linux_finfo *Information) { return ARC_CALL2(get_finfo, FileID, Information); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)1356.52%266.67%
Ralf Bächle1043.48%133.33%
Total23100.00%3100.00%


LONG ArcSetFileInformation(ULONG FileID, ULONG AttributeFlags, ULONG AttributeMask) { return ARC_CALL3(set_finfo, FileID, AttributeFlags, AttributeMask); }

Contributors

PersonTokensPropCommitsCommitProp
Ralf Bächle1453.85%133.33%
Linus Torvalds (pre-git)1246.15%266.67%
Total26100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds (pre-git)14353.56%250.00%
Ralf Bächle12346.07%125.00%
Aurelien Jarno10.37%125.00%
Total267100.00%4100.00%
Directory: arch/mips/fw/arc
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.