Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
37 lines
856 B
C
37 lines
856 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* linux/fs/adfs/file.c
|
|
*
|
|
* Copyright (C) 1997-1999 Russell King
|
|
* from:
|
|
*
|
|
* linux/fs/ext2/file.c
|
|
*
|
|
* Copyright (C) 1992, 1993, 1994, 1995
|
|
* Remy Card (card@masi.ibp.fr)
|
|
* Laboratoire MASI - Institut Blaise Pascal
|
|
* Universite Pierre et Marie Curie (Paris VI)
|
|
*
|
|
* from
|
|
*
|
|
* linux/fs/minix/file.c
|
|
*
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
*
|
|
* adfs regular file handling primitives
|
|
*/
|
|
#include "adfs.h"
|
|
|
|
const struct file_operations adfs_file_operations = {
|
|
.llseek = generic_file_llseek,
|
|
.read_iter = generic_file_read_iter,
|
|
.mmap_prepare = generic_file_mmap_prepare,
|
|
.fsync = generic_file_fsync,
|
|
.write_iter = generic_file_write_iter,
|
|
.splice_read = filemap_splice_read,
|
|
};
|
|
|
|
const struct inode_operations adfs_file_inode_operations = {
|
|
.setattr = adfs_notify_change,
|
|
};
|