// SPDX-License-Identifier: GPL-2.0 /* * linux/fs/minix/file.c * * Copyright (C) 1991, 1992 Linus Torvalds * * minix regular file handling primitives */ #include "minix.h" /* * We have mostly NULLs here: the current defaults are OK for * the minix filesystem. */ const struct file_operations minix_file_operations = …; static int minix_setattr(struct mnt_idmap *idmap, struct dentry *dentry, struct iattr *attr) { … } const struct inode_operations minix_file_inode_operations = …;