dnotify.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Directory notification for Linux
  3.  *
  4.  * Copyright 2000 (C) Stephen Rothwell
  5.  */
  6. struct dnotify_struct {
  7. struct dnotify_struct * dn_next;
  8. int dn_magic;
  9. unsigned long dn_mask; /* Events to be notified
  10.    see linux/fcntl.h */
  11. int dn_fd;
  12. struct file * dn_filp;
  13. };
  14. #define DNOTIFY_MAGIC 0x444E4F54
  15. extern void __inode_dir_notify(struct inode *, unsigned long);
  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. }