file.c (39fe5434cb9de5da40510028b17b96bc4eb312b3) file.c (15b4650e55e06d2cc05115767551cd3ace875431)
1/* AFS filesystem file handling
2 *
3 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version

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

45};
46
47const struct address_space_operations afs_fs_aops = {
48 .readpage = afs_readpage,
49 .set_page_dirty = afs_set_page_dirty,
50 .launder_page = afs_launder_page,
51 .releasepage = afs_releasepage,
52 .invalidatepage = afs_invalidatepage,
1/* AFS filesystem file handling
2 *
3 * Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version

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

45};
46
47const struct address_space_operations afs_fs_aops = {
48 .readpage = afs_readpage,
49 .set_page_dirty = afs_set_page_dirty,
50 .launder_page = afs_launder_page,
51 .releasepage = afs_releasepage,
52 .invalidatepage = afs_invalidatepage,
53 .prepare_write = afs_prepare_write,
54 .commit_write = afs_commit_write,
53 .write_begin = afs_write_begin,
54 .write_end = afs_write_end,
55 .writepage = afs_writepage,
56 .writepages = afs_writepages,
57};
58
59/*
60 * open an AFS file or directory and attach a key to it
61 */
62int afs_open(struct inode *inode, struct file *file)

--- 235 unchanged lines hidden ---
55 .writepage = afs_writepage,
56 .writepages = afs_writepages,
57};
58
59/*
60 * open an AFS file or directory and attach a key to it
61 */
62int afs_open(struct inode *inode, struct file *file)

--- 235 unchanged lines hidden ---