internal.h (67016f6cdfd079e632bbc49e33178b2d558c120a) | internal.h (ae259a9c8593f98aa60d045df978a5482a67c53f) |
---|---|
1/* fs/ internal definitions 2 * 3 * Copyright (C) 2006 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 9 * 2 of the License, or (at your option) any later version. 10 */ 11 12struct super_block; 13struct file_system_type; | 1/* fs/ internal definitions 2 * 3 * Copyright (C) 2006 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 9 * 2 of the License, or (at your option) any later version. 10 */ 11 12struct super_block; 13struct file_system_type; |
14struct iomap; |
|
14struct linux_binprm; 15struct path; 16struct mount; 17struct shrink_control; 18 19/* 20 * block_dev.c 21 */ --- 12 unchanged lines hidden (view full) --- 34 return 0; 35} 36#endif 37 38/* 39 * buffer.c 40 */ 41extern void guard_bio_eod(int rw, struct bio *bio); | 15struct linux_binprm; 16struct path; 17struct mount; 18struct shrink_control; 19 20/* 21 * block_dev.c 22 */ --- 12 unchanged lines hidden (view full) --- 35 return 0; 36} 37#endif 38 39/* 40 * buffer.c 41 */ 42extern void guard_bio_eod(int rw, struct bio *bio); |
43extern int __block_write_begin_int(struct page *page, loff_t pos, unsigned len, 44 get_block_t *get_block, struct iomap *iomap); |
|
42 43/* 44 * char_dev.c 45 */ 46extern void __init chrdev_init(void); 47 48/* 49 * namei.c --- 75 unchanged lines hidden (view full) --- 125extern int invalidate_inodes(struct super_block *, bool); 126 127/* 128 * dcache.c 129 */ 130extern struct dentry *__d_alloc(struct super_block *, const struct qstr *); 131extern int d_set_mounted(struct dentry *dentry); 132extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc); | 45 46/* 47 * char_dev.c 48 */ 49extern void __init chrdev_init(void); 50 51/* 52 * namei.c --- 75 unchanged lines hidden (view full) --- 128extern int invalidate_inodes(struct super_block *, bool); 129 130/* 131 * dcache.c 132 */ 133extern struct dentry *__d_alloc(struct super_block *, const struct qstr *); 134extern int d_set_mounted(struct dentry *dentry); 135extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc); |
133extern struct dentry *d_alloc_cursor(struct dentry *); | |
134 135/* 136 * read_write.c 137 */ 138extern int rw_verify_area(int, struct file *, const loff_t *, size_t); 139 140/* 141 * pipe.c --- 20 unchanged lines hidden --- | 136 137/* 138 * read_write.c 139 */ 140extern int rw_verify_area(int, struct file *, const loff_t *, size_t); 141 142/* 143 * pipe.c --- 20 unchanged lines hidden --- |