dnotify.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Directory notification for Linux
  3.  *
  4.  * Copyright (C) 2000,2002 Stephen Rothwell
  5.  */
  6. struct dnotify_struct {
  7. struct dnotify_struct * dn_next;
  8. unsigned long dn_mask; /* Events to be notified
  9.    see linux/fcntl.h */
  10. int dn_fd;
  11. struct file * dn_filp;
  12. fl_owner_t dn_owner;
  13. };
  14. extern void __inode_dir_notify(struct inode *, unsigned long);
  15. extern void dnotify_flush(struct file *filp, fl_owner_t id);
  16. extern int fcntl_dirnotify(int, struct file *, unsigned long);
  17. static inline void inode_dir_notify(struct inode *inode, unsigned long event)
  18. {
  19. if ((inode)->i_dnotify_mask & (event))
  20. __inode_dir_notify(inode, event);
  21. }
  22. /*
  23.  * This is hopelessly wrong, but unfixable without API changes.  At
  24.  * least it doesn't oops the kernel...
  25.  */
  26. static inline void dnotify_parent(struct dentry *dentry, unsigned long event)
  27. {
  28. struct dentry *parent;
  29. spin_lock(&dcache_lock);
  30. parent = dentry->d_parent;
  31. if (parent->d_inode->i_dnotify_mask & event) {
  32. dget(parent);
  33. spin_unlock(&dcache_lock);
  34. __inode_dir_notify(parent->d_inode, event);
  35. dput(parent);
  36. } else
  37. spin_unlock(&dcache_lock);
  38. }