vnode.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /* AFS vnode record
  2. *
  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. #ifndef AFS_VNODE_H
  12. #define AFS_VNODE_H
  13. #include <linux/fs.h>
  14. #include "server.h"
  15. #include "kafstimod.h"
  16. #include "cache.h"
  17. struct afs_rxfs_fetch_descriptor;
  18. extern struct afs_timer_ops afs_vnode_cb_timed_out_ops;
  19. /*
  20. * vnode catalogue entry
  21. */
  22. struct afs_cache_vnode {
  23. afs_vnodeid_t vnode_id; /* vnode ID */
  24. unsigned vnode_unique; /* vnode ID uniquifier */
  25. afs_dataversion_t data_version; /* data version */
  26. };
  27. #ifdef AFS_CACHING_SUPPORT
  28. extern struct cachefs_index_def afs_vnode_cache_index_def;
  29. #endif
  30. /*
  31. * AFS inode private data
  32. */
  33. struct afs_vnode {
  34. struct inode vfs_inode; /* the VFS's inode record */
  35. struct afs_volume *volume; /* volume on which vnode resides */
  36. struct afs_fid fid; /* the file identifier for this inode */
  37. struct afs_file_status status; /* AFS status info for this file */
  38. #ifdef AFS_CACHING_SUPPORT
  39. struct cachefs_cookie *cache; /* caching cookie */
  40. #endif
  41. wait_queue_head_t update_waitq; /* status fetch waitqueue */
  42. unsigned update_cnt; /* number of outstanding ops that will update the
  43. * status */
  44. spinlock_t lock; /* waitqueue/flags lock */
  45. unsigned flags;
  46. #define AFS_VNODE_CHANGED 0x00000001 /* set if vnode reported changed by callback */
  47. #define AFS_VNODE_DELETED 0x00000002 /* set if vnode deleted on server */
  48. #define AFS_VNODE_MOUNTPOINT 0x00000004 /* set if vnode is a mountpoint symlink */
  49. /* outstanding callback notification on this file */
  50. struct afs_server *cb_server; /* server that made the current promise */
  51. struct list_head cb_link; /* link in server's promises list */
  52. struct list_head cb_hash_link; /* link in master callback hash */
  53. struct afs_timer cb_timeout; /* timeout on promise */
  54. unsigned cb_version; /* callback version */
  55. unsigned cb_expiry; /* callback expiry time */
  56. afs_callback_type_t cb_type; /* type of callback */
  57. };
  58. static inline struct afs_vnode *AFS_FS_I(struct inode *inode)
  59. {
  60. return container_of(inode, struct afs_vnode, vfs_inode);
  61. }
  62. static inline struct inode *AFS_VNODE_TO_I(struct afs_vnode *vnode)
  63. {
  64. return &vnode->vfs_inode;
  65. }
  66. extern int afs_vnode_fetch_status(struct afs_vnode *);
  67. extern int afs_vnode_fetch_data(struct afs_vnode *,
  68. struct afs_rxfs_fetch_descriptor *);
  69. extern int afs_vnode_give_up_callback(struct afs_vnode *);
  70. #endif /* AFS_VNODE_H */