fs/jffs2/ioctl.c

Source file repositories/reference/linux-study-clean/fs/jffs2/ioctl.c

File Facts

System
Linux kernel
Corpus path
fs/jffs2/ioctl.c
Extension
.c
Size
557 bytes
Lines
23
Domain
Core OS
Bucket
VFS And Filesystem Core
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

#include <linux/fs.h>
#include "nodelist.h"

long jffs2_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
{
	/* Later, this will provide for lsattr.jffs2 and chattr.jffs2, which
	   will include compression support etc. */
	return -ENOTTY;
}

Annotation

Implementation Notes