Blame view

fs/ocfs2/dir.h 3.89 KB
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  /* -*- mode: c; c-basic-offset: 8; -*-
   * vim: noexpandtab sw=8 ts=8 sts=0:
   *
   * dir.h
   *
   * Function prototypes
   *
   * Copyright (C) 2002, 2004 Oracle.  All rights reserved.
   *
   * This program is free software; you can redistribute it and/or
   * modify it under the terms of the GNU General Public
   * License as published by the Free Software Foundation; either
   * version 2 of the License, or (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   * General Public License for more details.
   *
   * You should have received a copy of the GNU General Public
   * License along with this program; if not, write to the
   * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   * Boston, MA 021110-1307, USA.
   */
  
  #ifndef OCFS2_DIR_H
  #define OCFS2_DIR_H
9b7895efa   Mark Fasheh   ocfs2: Add a name...
28
29
30
31
  struct ocfs2_dx_hinfo {
  	u32	major_hash;
  	u32	minor_hash;
  };
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
32
  struct ocfs2_dir_lookup_result {
9b7895efa   Mark Fasheh   ocfs2: Add a name...
33
34
35
36
  	struct buffer_head		*dl_leaf_bh;	/* Unindexed leaf
  							 * block */
  	struct ocfs2_dir_entry		*dl_entry;	/* Target dirent in
  							 * unindexed leaf */
4ed8a6bb0   Mark Fasheh   ocfs2: Store dir ...
37
38
  	struct buffer_head		*dl_dx_root_bh;	/* Root of indexed
  							 * tree */
e7c17e430   Mark Fasheh   ocfs2: Introduce ...
39

9b7895efa   Mark Fasheh   ocfs2: Add a name...
40
41
42
43
  	struct buffer_head		*dl_dx_leaf_bh;	/* Indexed leaf block */
  	struct ocfs2_dx_entry		*dl_dx_entry;	/* Target dx_entry in
  							 * indexed leaf */
  	struct ocfs2_dx_hinfo		dl_hinfo;	/* Name hash results */
e7c17e430   Mark Fasheh   ocfs2: Introduce ...
44
45
46
47
48
49
  
  	struct buffer_head		*dl_prev_leaf_bh;/* Previous entry in
  							  * dir free space
  							  * list. NULL if
  							  * previous entry is
  							  * dx root block. */
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
50
  };
e7c17e430   Mark Fasheh   ocfs2: Introduce ...
51

4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
52
53
54
55
56
  void ocfs2_free_dir_lookup_result(struct ocfs2_dir_lookup_result *res);
  
  int ocfs2_find_entry(const char *name, int namelen,
  		     struct inode *dir,
  		     struct ocfs2_dir_lookup_result *lookup);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
57
58
  int ocfs2_delete_entry(handle_t *handle,
  		       struct inode *dir,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
59
  		       struct ocfs2_dir_lookup_result *res);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
60
61
62
63
64
  int __ocfs2_add_entry(handle_t *handle,
  		      struct inode *dir,
  		      const char *name, int namelen,
  		      struct inode *inode, u64 blkno,
  		      struct buffer_head *parent_fe_bh,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
65
  		      struct ocfs2_dir_lookup_result *lookup);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
66
67
68
69
  static inline int ocfs2_add_entry(handle_t *handle,
  				  struct dentry *dentry,
  				  struct inode *inode, u64 blkno,
  				  struct buffer_head *parent_fe_bh,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
70
  				  struct ocfs2_dir_lookup_result *lookup)
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
71
72
73
  {
  	return __ocfs2_add_entry(handle, dentry->d_parent->d_inode,
  				 dentry->d_name.name, dentry->d_name.len,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
74
  				 inode, blkno, parent_fe_bh, lookup);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
75
  }
38760e243   Mark Fasheh   ocfs2: Rename cle...
76
  int ocfs2_update_entry(struct inode *dir, handle_t *handle,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
77
  		       struct ocfs2_dir_lookup_result *res,
38760e243   Mark Fasheh   ocfs2: Rename cle...
78
  		       struct inode *new_entry_inode);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
79

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
80
81
82
  int ocfs2_check_dir_for_entry(struct inode *dir,
  			      const char *name,
  			      int namelen);
0bfbbf62a   Mark Fasheh   ocfs2: Implement ...
83
  int ocfs2_empty_dir(struct inode *inode);
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
84

ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
85
86
87
88
  int ocfs2_find_files_on_disk(const char *name,
  			     int namelen,
  			     u64 *blkno,
  			     struct inode *inode,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
89
  			     struct ocfs2_dir_lookup_result *res);
be94d1170   Mark Fasheh   ocfs2: Provide co...
90
91
  int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name,
  			       int namelen, u64 *blkno);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
92
  int ocfs2_readdir(struct file *filp, void *dirent, filldir_t filldir);
5eae5b96f   Mark Fasheh   ocfs2: Remove ope...
93
94
  int ocfs2_dir_foreach(struct inode *inode, loff_t *f_pos, void *priv,
  		      filldir_t filldir);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
95
96
97
98
99
  int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb,
  				 struct inode *dir,
  				 struct buffer_head *parent_fe_bh,
  				 const char *name,
  				 int namelen,
4a12ca3a0   Mark Fasheh   ocfs2: Introduce ...
100
  				 struct ocfs2_dir_lookup_result *lookup);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
101
  struct ocfs2_alloc_context;
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
102
103
104
105
106
  int ocfs2_fill_new_dir(struct ocfs2_super *osb,
  		       handle_t *handle,
  		       struct inode *parent,
  		       struct inode *inode,
  		       struct buffer_head *fe_bh,
9b7895efa   Mark Fasheh   ocfs2: Add a name...
107
108
109
110
  		       struct ocfs2_alloc_context *data_ac,
  		       struct ocfs2_alloc_context *meta_ac);
  
  int ocfs2_dx_dir_truncate(struct inode *dir, struct buffer_head *di_bh);
316f4b9f9   Mark Fasheh   ocfs2: Move direc...
111

c175a518b   Joel Becker   ocfs2: Checksum a...
112
113
  struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize,
  							    void *data);
ccd979bdb   Mark Fasheh   [PATCH] OCFS2: Th...
114
  #endif /* OCFS2_DIR_H */