Release 4.14 arch/mips/fw/arc/file.c
/*
* 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
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 18 | 52.94% | 2 | 66.67% |
Ralf Bächle | 16 | 47.06% | 1 | 33.33% |
Total | 34 | 100.00% | 3 | 100.00% |
LONG
ArcOpen(CHAR *Path, enum linux_omode OpenMode, ULONG *FileID)
{
return ARC_CALL3(open, Path, OpenMode, FileID);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 16 | 55.17% | 2 | 66.67% |
Ralf Bächle | 13 | 44.83% | 1 | 33.33% |
Total | 29 | 100.00% | 3 | 100.00% |
LONG
ArcClose(ULONG FileID)
{
return ARC_CALL1(close, FileID);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 8 | 50.00% | 1 | 33.33% |
Linus Torvalds (pre-git) | 8 | 50.00% | 2 | 66.67% |
Total | 16 | 100.00% | 3 | 100.00% |
LONG
ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count)
{
return ARC_CALL4(read, FileID, Buffer, N, Count);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 17 | 51.52% | 1 | 33.33% |
Linus Torvalds (pre-git) | 16 | 48.48% | 2 | 66.67% |
Total | 33 | 100.00% | 3 | 100.00% |
LONG
ArcGetReadStatus(ULONG FileID)
{
return ARC_CALL1(get_rstatus, FileID);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 8 | 50.00% | 2 | 66.67% |
Ralf Bächle | 8 | 50.00% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
LONG
ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count)
{
return ARC_CALL4(write, FileID, Buffer, N, Count);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 17 | 54.84% | 1 | 33.33% |
Linus Torvalds (pre-git) | 14 | 45.16% | 2 | 66.67% |
Total | 31 | 100.00% | 3 | 100.00% |
LONG
ArcSeek(ULONG FileID, struct linux_bigint *Position, enum linux_seekmode SeekMode)
{
return ARC_CALL3(seek, FileID, Position, SeekMode);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 17 | 58.62% | 2 | 66.67% |
Ralf Bächle | 12 | 41.38% | 1 | 33.33% |
Total | 29 | 100.00% | 3 | 100.00% |
LONG
ArcMount(char *name, enum linux_mountops op)
{
return ARC_CALL2(mount, name, op);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 18 | 78.26% | 2 | 66.67% |
Ralf Bächle | 5 | 21.74% | 1 | 33.33% |
Total | 23 | 100.00% | 3 | 100.00% |
LONG
ArcGetFileInformation(ULONG FileID, struct linux_finfo *Information)
{
return ARC_CALL2(get_finfo, FileID, Information);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 13 | 56.52% | 2 | 66.67% |
Ralf Bächle | 10 | 43.48% | 1 | 33.33% |
Total | 23 | 100.00% | 3 | 100.00% |
LONG ArcSetFileInformation(ULONG FileID, ULONG AttributeFlags,
ULONG AttributeMask)
{
return ARC_CALL3(set_finfo, FileID, AttributeFlags, AttributeMask);
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ralf Bächle | 14 | 53.85% | 1 | 33.33% |
Linus Torvalds (pre-git) | 12 | 46.15% | 2 | 66.67% |
Total | 26 | 100.00% | 3 | 100.00% |
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Linus Torvalds (pre-git) | 143 | 53.56% | 2 | 50.00% |
Ralf Bächle | 123 | 46.07% | 1 | 25.00% |
Aurelien Jarno | 1 | 0.37% | 1 | 25.00% |
Total | 267 | 100.00% | 4 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.