fid.h 925 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * V9FS FID Management
  4. *
  5. * Copyright (C) 2005 by Eric Van Hensbergen <[email protected]>
  6. */
  7. #ifndef FS_9P_FID_H
  8. #define FS_9P_FID_H
  9. #include <linux/list.h>
  10. struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
  11. static inline struct p9_fid *v9fs_parent_fid(struct dentry *dentry)
  12. {
  13. return v9fs_fid_lookup(dentry->d_parent);
  14. }
  15. void v9fs_fid_add(struct dentry *dentry, struct p9_fid **fid);
  16. struct p9_fid *v9fs_writeback_fid(struct dentry *dentry);
  17. void v9fs_open_fid_add(struct inode *inode, struct p9_fid **fid);
  18. static inline struct p9_fid *clone_fid(struct p9_fid *fid)
  19. {
  20. return IS_ERR(fid) ? fid : p9_client_walk(fid, 0, NULL, 1);
  21. }
  22. static inline struct p9_fid *v9fs_fid_clone(struct dentry *dentry)
  23. {
  24. struct p9_fid *fid, *nfid;
  25. fid = v9fs_fid_lookup(dentry);
  26. if (!fid || IS_ERR(fid))
  27. return fid;
  28. nfid = clone_fid(fid);
  29. p9_fid_put(fid);
  30. return nfid;
  31. }
  32. #endif