arch/mips/fw/arc/file.c
Source file repositories/reference/linux-study-clean/arch/mips/fw/arc/file.c
File Facts
- System
- Linux kernel
- Corpus path
arch/mips/fw/arc/file.c- Extension
.c- Size
- 609 bytes
- Lines
- 26
- Domain
- Architecture Layer
- Bucket
- arch/mips
- Inferred role
- Architecture Layer: implementation source
- Status
- source implementation candidate
Why This File Exists
CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
- CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.
Dependency Surface
asm/fw/arc/types.hasm/sgialib.h
Detected Declarations
function Copyrightfunction ArcWrite
Annotated Snippet
#include <asm/fw/arc/types.h>
#include <asm/sgialib.h>
LONG
ArcRead(ULONG FileID, VOID *Buffer, ULONG N, ULONG *Count)
{
return ARC_CALL4(read, FileID, Buffer, N, Count);
}
LONG
ArcWrite(ULONG FileID, PVOID Buffer, ULONG N, PULONG Count)
{
return ARC_CALL4(write, FileID, Buffer, N, Count);
}
Annotation
- Immediate include surface: `asm/fw/arc/types.h`, `asm/sgialib.h`.
- Detected declarations: `function Copyright`, `function ArcWrite`.
- Atlas domain: Architecture Layer / arch/mips.
- Implementation status: source implementation candidate.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.