2019-05-24 10:04:05 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2021-05-07 01:06:44 +00:00
|
|
|
/*
|
2005-12-15 22:31:24 +00:00
|
|
|
* dir.h
|
|
|
|
*
|
|
|
|
* Function prototypes
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002, 2004 Oracle. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OCFS2_DIR_H
|
|
|
|
#define OCFS2_DIR_H
|
|
|
|
|
2008-11-13 00:27:44 +00:00
|
|
|
struct ocfs2_dx_hinfo {
|
|
|
|
u32 major_hash;
|
|
|
|
u32 minor_hash;
|
|
|
|
};
|
|
|
|
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result {
|
2008-11-13 00:27:44 +00:00
|
|
|
struct buffer_head *dl_leaf_bh; /* Unindexed leaf
|
|
|
|
* block */
|
|
|
|
struct ocfs2_dir_entry *dl_entry; /* Target dirent in
|
|
|
|
* unindexed leaf */
|
|
|
|
|
2008-11-25 01:02:08 +00:00
|
|
|
struct buffer_head *dl_dx_root_bh; /* Root of indexed
|
|
|
|
* tree */
|
2009-01-30 02:17:46 +00:00
|
|
|
|
2008-11-13 00:27:44 +00:00
|
|
|
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 */
|
2009-01-30 02:17:46 +00:00
|
|
|
|
|
|
|
struct buffer_head *dl_prev_leaf_bh;/* Previous entry in
|
|
|
|
* dir free space
|
|
|
|
* list. NULL if
|
|
|
|
* previous entry is
|
|
|
|
* dx root block. */
|
2008-11-12 23:43:34 +00:00
|
|
|
};
|
2009-01-30 02:17:46 +00:00
|
|
|
|
2008-11-12 23:43:34 +00:00
|
|
|
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);
|
2007-09-08 01:21:26 +00:00
|
|
|
int ocfs2_delete_entry(handle_t *handle,
|
|
|
|
struct inode *dir,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *res);
|
2007-09-08 01:21:26 +00:00
|
|
|
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,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *lookup);
|
2007-09-08 01:21:26 +00:00
|
|
|
static inline int ocfs2_add_entry(handle_t *handle,
|
|
|
|
struct dentry *dentry,
|
|
|
|
struct inode *inode, u64 blkno,
|
|
|
|
struct buffer_head *parent_fe_bh,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *lookup)
|
2007-09-08 01:21:26 +00:00
|
|
|
{
|
2015-03-17 22:25:59 +00:00
|
|
|
return __ocfs2_add_entry(handle, d_inode(dentry->d_parent),
|
2007-09-08 01:21:26 +00:00
|
|
|
dentry->d_name.name, dentry->d_name.len,
|
2008-11-12 23:43:34 +00:00
|
|
|
inode, blkno, parent_fe_bh, lookup);
|
2007-09-08 01:21:26 +00:00
|
|
|
}
|
2007-09-12 00:21:56 +00:00
|
|
|
int ocfs2_update_entry(struct inode *dir, handle_t *handle,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *res,
|
2007-09-12 00:21:56 +00:00
|
|
|
struct inode *new_entry_inode);
|
2007-09-08 01:21:26 +00:00
|
|
|
|
2005-12-15 22:31:24 +00:00
|
|
|
int ocfs2_check_dir_for_entry(struct inode *dir,
|
|
|
|
const char *name,
|
|
|
|
int namelen);
|
2007-09-12 18:19:00 +00:00
|
|
|
int ocfs2_empty_dir(struct inode *inode);
|
2008-11-12 23:43:34 +00:00
|
|
|
|
2005-12-15 22:31:24 +00:00
|
|
|
int ocfs2_find_files_on_disk(const char *name,
|
|
|
|
int namelen,
|
|
|
|
u64 *blkno,
|
|
|
|
struct inode *inode,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *res);
|
2007-09-11 22:22:06 +00:00
|
|
|
int ocfs2_lookup_ino_from_name(struct inode *dir, const char *name,
|
|
|
|
int namelen, u64 *blkno);
|
2013-05-23 01:06:00 +00:00
|
|
|
int ocfs2_readdir(struct file *file, struct dir_context *ctx);
|
|
|
|
int ocfs2_dir_foreach(struct inode *inode, struct dir_context *ctx);
|
2005-12-15 22:31:24 +00:00
|
|
|
int ocfs2_prepare_dir_for_insert(struct ocfs2_super *osb,
|
|
|
|
struct inode *dir,
|
|
|
|
struct buffer_head *parent_fe_bh,
|
|
|
|
const char *name,
|
|
|
|
int namelen,
|
2008-11-12 23:43:34 +00:00
|
|
|
struct ocfs2_dir_lookup_result *lookup);
|
2005-12-15 22:31:24 +00:00
|
|
|
struct ocfs2_alloc_context;
|
2007-09-08 01:21:26 +00:00
|
|
|
int ocfs2_fill_new_dir(struct ocfs2_super *osb,
|
|
|
|
handle_t *handle,
|
|
|
|
struct inode *parent,
|
|
|
|
struct inode *inode,
|
|
|
|
struct buffer_head *fe_bh,
|
2008-11-13 00:27:44 +00:00
|
|
|
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);
|
2007-09-08 01:21:26 +00:00
|
|
|
|
2008-12-11 01:58:22 +00:00
|
|
|
struct ocfs2_dir_block_trailer *ocfs2_dir_trailer_from_size(int blocksize,
|
|
|
|
void *data);
|
2005-12-15 22:31:24 +00:00
|
|
|
#endif /* OCFS2_DIR_H */
|