file.c (552c69b36ebd966186573b9c7a286b390935cce1) | file.c (7a36094d61bfe9843de5484ff0140227983ac5d5) |
---|---|
1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 9#include "fuse_i.h" 10 11#include <linux/pagemap.h> 12#include <linux/slab.h> 13#include <linux/kernel.h> 14#include <linux/sched.h> | 1/* 2 FUSE: Filesystem in Userspace 3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4 5 This program can be distributed under the terms of the GNU GPL. 6 See the file COPYING. 7*/ 8 9#include "fuse_i.h" 10 11#include <linux/pagemap.h> 12#include <linux/slab.h> 13#include <linux/kernel.h> 14#include <linux/sched.h> |
15#include <linux/sched/signal.h> |
|
15#include <linux/module.h> 16#include <linux/compat.h> 17#include <linux/swap.h> 18#include <linux/falloc.h> 19#include <linux/uio.h> 20 21static const struct file_operations fuse_direct_io_file_operations; 22 --- 3043 unchanged lines hidden --- | 16#include <linux/module.h> 17#include <linux/compat.h> 18#include <linux/swap.h> 19#include <linux/falloc.h> 20#include <linux/uio.h> 21 22static const struct file_operations fuse_direct_io_file_operations; 23 --- 3043 unchanged lines hidden --- |