fuse_i.h (54ab6db0909061ab7ee07233d3cab86d29f86e6c) fuse_i.h (1e24edca0557dba6486d39d3c24c288475432bcf)
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

--- 242 unchanged lines hidden (view full) ---

251 struct kiocb *iocb;
252 struct file *file;
253 struct completion *done;
254 bool blocking;
255};
256
257#define FUSE_IO_PRIV_SYNC(f) \
258{ \
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

--- 242 unchanged lines hidden (view full) ---

251 struct kiocb *iocb;
252 struct file *file;
253 struct completion *done;
254 bool blocking;
255};
256
257#define FUSE_IO_PRIV_SYNC(f) \
258{ \
259 .refcnt = { ATOMIC_INIT(1) }, \
259 .refcnt = KREF_INIT(1), \
260 .async = 0, \
261 .file = f, \
262}
263
264/**
265 * Request flags
266 *
267 * FR_ISREPLY: set if the request has reply

--- 719 unchanged lines hidden ---
260 .async = 0, \
261 .file = f, \
262}
263
264/**
265 * Request flags
266 *
267 * FR_ISREPLY: set if the request has reply

--- 719 unchanged lines hidden ---