blob: b6dd20a93cce606cb5c5fbd200049b49135128ec [file] [log] [blame]
David Howellsec268152007-04-26 15:49:28 -07001/* internal AFS stuff
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
3 * Copyright (C) 2002 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
12#ifndef AFS_INTERNAL_H
13#define AFS_INTERNAL_H
14
15#include <linux/compiler.h>
16#include <linux/kernel.h>
17#include <linux/fs.h>
18#include <linux/pagemap.h>
19
20/*
21 * debug tracing
22 */
23#define kenter(FMT, a...) printk("==> %s("FMT")\n",__FUNCTION__ , ## a)
24#define kleave(FMT, a...) printk("<== %s()"FMT"\n",__FUNCTION__ , ## a)
25#define kdebug(FMT, a...) printk(FMT"\n" , ## a)
26#define kproto(FMT, a...) printk("### "FMT"\n" , ## a)
27#define knet(FMT, a...) printk(FMT"\n" , ## a)
28
29#ifdef __KDEBUG
30#define _enter(FMT, a...) kenter(FMT , ## a)
31#define _leave(FMT, a...) kleave(FMT , ## a)
32#define _debug(FMT, a...) kdebug(FMT , ## a)
33#define _proto(FMT, a...) kproto(FMT , ## a)
34#define _net(FMT, a...) knet(FMT , ## a)
35#else
36#define _enter(FMT, a...) do { } while(0)
37#define _leave(FMT, a...) do { } while(0)
38#define _debug(FMT, a...) do { } while(0)
39#define _proto(FMT, a...) do { } while(0)
40#define _net(FMT, a...) do { } while(0)
41#endif
42
43static inline void afs_discard_my_signals(void)
44{
45 while (signal_pending(current)) {
46 siginfo_t sinfo;
47
48 spin_lock_irq(&current->sighand->siglock);
49 dequeue_signal(current,&current->blocked, &sinfo);
50 spin_unlock_irq(&current->sighand->siglock);
51 }
52}
53
54/*
55 * cell.c
56 */
57extern struct rw_semaphore afs_proc_cells_sem;
58extern struct list_head afs_proc_cells;
59#ifdef AFS_CACHING_SUPPORT
60extern struct cachefs_index_def afs_cache_cell_index_def;
61#endif
62
63/*
64 * dir.c
65 */
Arjan van de Ven754661f2007-02-12 00:55:38 -080066extern const struct inode_operations afs_dir_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080067extern const struct file_operations afs_dir_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*
70 * file.c
71 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070072extern const struct address_space_operations afs_fs_aops;
Arjan van de Ven754661f2007-02-12 00:55:38 -080073extern const struct inode_operations afs_file_inode_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75#ifdef AFS_CACHING_SUPPORT
David Howellsec268152007-04-26 15:49:28 -070076extern int afs_cache_get_page_cookie(struct page *, struct cachefs_page **);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077#endif
78
79/*
80 * inode.c
81 */
David Howellsec268152007-04-26 15:49:28 -070082extern int afs_iget(struct super_block *, struct afs_fid *, struct inode **);
83extern int afs_inode_getattr(struct vfsmount *, struct dentry *,
84 struct kstat *);
85extern void afs_clear_inode(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/*
88 * main.c
89 */
90#ifdef AFS_CACHING_SUPPORT
91extern struct cachefs_netfs afs_cache_netfs;
92#endif
93
94/*
95 * mntpt.c
96 */
Arjan van de Ven754661f2007-02-12 00:55:38 -080097extern const struct inode_operations afs_mntpt_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080098extern const struct file_operations afs_mntpt_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099extern struct afs_timer afs_mntpt_expiry_timer;
100extern struct afs_timer_ops afs_mntpt_expiry_timer_ops;
101extern unsigned long afs_mntpt_expiry_timeout;
102
David Howellsec268152007-04-26 15:49:28 -0700103extern int afs_mntpt_check_symlink(struct afs_vnode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
105/*
106 * super.c
107 */
108extern int afs_fs_init(void);
109extern void afs_fs_exit(void);
110
111#define AFS_CB_HASH_COUNT (PAGE_SIZE / sizeof(struct list_head))
112
113extern struct list_head afs_cb_hash_tbl[];
114extern spinlock_t afs_cb_hash_lock;
115
David Howellsec268152007-04-26 15:49:28 -0700116#define afs_cb_hash(SRV, FID) \
117 afs_cb_hash_tbl[((unsigned long)(SRV) + \
118 (FID)->vid + (FID)->vnode + (FID)->unique) & \
119 (AFS_CB_HASH_COUNT - 1)]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
122 * proc.c
123 */
124extern int afs_proc_init(void);
125extern void afs_proc_cleanup(void);
David Howellsec268152007-04-26 15:49:28 -0700126extern int afs_proc_cell_setup(struct afs_cell *);
127extern void afs_proc_cell_remove(struct afs_cell *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129#endif /* AFS_INTERNAL_H */