2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
11 * Implements Extendible Hashing as described in:
12 * "Extendible Hashing" by Fagin, et al in
13 * __ACM Trans. on Database Systems__, Sept 1979.
16 * Here's the layout of dirents which is essentially the same as that of ext2
17 * within a single block. The field de_name_len is the number of bytes
18 * actually required for the name (no null terminator). The field de_rec_len
19 * is the number of bytes allocated to the dirent. The offset of the next
20 * dirent in the block is (dirent + dirent->de_rec_len). When a dirent is
21 * deleted, the preceding dirent inherits its allocated space, ie
22 * prev->de_rec_len += deleted->de_rec_len. Since the next dirent is obtained
23 * by adding de_rec_len to the current dirent, this essentially causes the
24 * deleted dirent to get jumped over when iterating through all the dirents.
26 * When deleting the first dirent in a block, there is no previous dirent so
27 * the field de_ino is set to zero to designate it as deleted. When allocating
28 * a dirent, gfs2_dirent_alloc iterates through the dirents in a block. If the
29 * first dirent has (de_ino == 0) and de_rec_len is large enough, this first
30 * dirent is allocated. Otherwise it must go through all the 'used' dirents
31 * searching for one in which the amount of total space minus the amount of
32 * used space will provide enough space for the new dirent.
34 * There are two types of blocks in which dirents reside. In a stuffed dinode,
35 * the dirents begin at offset sizeof(struct gfs2_dinode) from the beginning of
36 * the block. In leaves, they begin at offset sizeof(struct gfs2_leaf) from the
37 * beginning of the leaf block. The dirents reside in leaves when
39 * dip->i_di.di_flags & GFS2_DIF_EXHASH is true
41 * Otherwise, the dirents are "linear", within a single stuffed dinode block.
43 * When the dirents are in leaves, the actual contents of the directory file are
44 * used as an array of 64-bit block pointers pointing to the leaf blocks. The
45 * dirents are NOT in the directory file itself. There can be more than one
46 * block pointer in the array that points to the same leaf. In fact, when a
47 * directory is first converted from linear to exhash, all of the pointers
48 * point to the same leaf.
50 * When a leaf is completely full, the size of the hash table can be
51 * doubled unless it is already at the maximum size which is hard coded into
52 * GFS2_DIR_MAX_DEPTH. After that, leaves are chained together in a linked list,
53 * but never before the maximum hash table size has been reached.
56 #include <linux/sched.h>
57 #include <linux/slab.h>
58 #include <linux/spinlock.h>
59 #include <linux/buffer_head.h>
60 #include <linux/sort.h>
61 #include <linux/gfs2_ondisk.h>
62 #include <linux/crc32.h>
63 #include <linux/vmalloc.h>
66 #include "lm_interface.h"
78 #define IS_LEAF 1 /* Hashed (leaf) directory */
79 #define IS_DINODE 2 /* Linear (stuffed dinode block) directory */
81 #define gfs2_disk_hash2offset(h) (((u64)(h)) >> 1)
82 #define gfs2_dir_offset2hash(p) ((u32)(((u64)(p)) << 1))
84 typedef int (*leaf_call_t) (struct gfs2_inode *dip, u32 index, u32 len,
85 u64 leaf_no, void *data);
86 typedef int (*gfs2_dscan_t)(const struct gfs2_dirent *dent,
87 const struct qstr *name, void *opaque);
90 int gfs2_dir_get_new_buffer(struct gfs2_inode *ip, u64 block,
91 struct buffer_head **bhp)
93 struct buffer_head *bh;
95 bh = gfs2_meta_new(ip->i_gl, block);
96 gfs2_trans_add_bh(ip->i_gl, bh, 1);
97 gfs2_metatype_set(bh, GFS2_METATYPE_JD, GFS2_FORMAT_JD);
98 gfs2_buffer_clear_tail(bh, sizeof(struct gfs2_meta_header));
103 static int gfs2_dir_get_existing_buffer(struct gfs2_inode *ip, u64 block,
104 struct buffer_head **bhp)
106 struct buffer_head *bh;
109 error = gfs2_meta_read(ip->i_gl, block, DIO_START | DIO_WAIT, &bh);
112 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), bh, GFS2_METATYPE_JD)) {
120 static int gfs2_dir_write_stuffed(struct gfs2_inode *ip, const char *buf,
121 unsigned int offset, unsigned int size)
124 struct buffer_head *dibh;
127 error = gfs2_meta_inode_buffer(ip, &dibh);
131 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
132 memcpy(dibh->b_data + offset + sizeof(struct gfs2_dinode), buf, size);
133 if (ip->i_di.di_size < offset + size)
134 ip->i_di.di_size = offset + size;
135 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
136 gfs2_dinode_out(&ip->i_di, dibh->b_data);
146 * gfs2_dir_write_data - Write directory information to the inode
147 * @ip: The GFS2 inode
148 * @buf: The buffer containing information to be written
149 * @offset: The file offset to start writing at
150 * @size: The amount of data to write
152 * Returns: The number of bytes correctly written or error code
154 static int gfs2_dir_write_data(struct gfs2_inode *ip, const char *buf,
155 u64 offset, unsigned int size)
157 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
158 struct buffer_head *dibh;
168 if (gfs2_is_stuffed(ip) &&
169 offset + size <= sdp->sd_sb.sb_bsize - sizeof(struct gfs2_dinode))
170 return gfs2_dir_write_stuffed(ip, buf, (unsigned int)offset,
173 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
176 if (gfs2_is_stuffed(ip)) {
177 error = gfs2_unstuff_dinode(ip, NULL);
183 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
185 while (copied < size) {
187 struct buffer_head *bh;
190 amount = size - copied;
191 if (amount > sdp->sd_sb.sb_bsize - o)
192 amount = sdp->sd_sb.sb_bsize - o;
196 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
201 if (gfs2_assert_withdraw(sdp, dblock))
205 if (amount == sdp->sd_jbsize || new)
206 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
208 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
213 gfs2_trans_add_bh(ip->i_gl, bh, 1);
214 memcpy(bh->b_data + o, buf, amount);
225 o = sizeof(struct gfs2_meta_header);
229 error = gfs2_meta_inode_buffer(ip, &dibh);
233 if (ip->i_di.di_size < offset + copied)
234 ip->i_di.di_size = offset + copied;
235 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
237 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
238 gfs2_dinode_out(&ip->i_di, dibh->b_data);
248 static int gfs2_dir_read_stuffed(struct gfs2_inode *ip, char *buf,
249 unsigned int offset, unsigned int size)
251 struct buffer_head *dibh;
254 error = gfs2_meta_inode_buffer(ip, &dibh);
256 offset += sizeof(struct gfs2_dinode);
257 memcpy(buf, dibh->b_data + offset, size);
261 return (error) ? error : size;
266 * gfs2_dir_read_data - Read a data from a directory inode
267 * @ip: The GFS2 Inode
268 * @buf: The buffer to place result into
269 * @offset: File offset to begin jdata_readng from
270 * @size: Amount of data to transfer
272 * Returns: The amount of data actually copied or the error
274 static int gfs2_dir_read_data(struct gfs2_inode *ip, char *buf,
275 u64 offset, unsigned int size)
277 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
284 if (offset >= ip->i_di.di_size)
287 if (offset + size > ip->i_di.di_size)
288 size = ip->i_di.di_size - offset;
293 if (gfs2_is_stuffed(ip))
294 return gfs2_dir_read_stuffed(ip, buf, (unsigned int)offset,
297 if (gfs2_assert_warn(sdp, gfs2_is_jdata(ip)))
301 o = do_div(lblock, sdp->sd_jbsize) + sizeof(struct gfs2_meta_header);
303 while (copied < size) {
305 struct buffer_head *bh;
308 amount = size - copied;
309 if (amount > sdp->sd_sb.sb_bsize - o)
310 amount = sdp->sd_sb.sb_bsize - o;
314 error = gfs2_extent_map(&ip->i_inode, lblock, &new,
321 gfs2_meta_ra(ip->i_gl, dblock, extlen);
325 error = gfs2_dir_get_new_buffer(ip, dblock, &bh);
327 error = gfs2_dir_get_existing_buffer(ip, dblock, &bh);
335 memcpy(buf, bh->b_data + o, amount);
344 o = sizeof(struct gfs2_meta_header);
349 return (copied) ? copied : error;
352 static inline int __gfs2_dirent_find(const struct gfs2_dirent *dent,
353 const struct qstr *name, int ret)
355 if (dent->de_inum.no_addr != 0 &&
356 be32_to_cpu(dent->de_hash) == name->hash &&
357 be16_to_cpu(dent->de_name_len) == name->len &&
358 memcmp(dent+1, name->name, name->len) == 0)
363 static int gfs2_dirent_find(const struct gfs2_dirent *dent,
364 const struct qstr *name,
367 return __gfs2_dirent_find(dent, name, 1);
370 static int gfs2_dirent_prev(const struct gfs2_dirent *dent,
371 const struct qstr *name,
374 return __gfs2_dirent_find(dent, name, 2);
378 * name->name holds ptr to start of block.
379 * name->len holds size of block.
381 static int gfs2_dirent_last(const struct gfs2_dirent *dent,
382 const struct qstr *name,
385 const char *start = name->name;
386 const char *end = (const char *)dent + be16_to_cpu(dent->de_rec_len);
387 if (name->len == (end - start))
392 static int gfs2_dirent_find_space(const struct gfs2_dirent *dent,
393 const struct qstr *name,
396 unsigned required = GFS2_DIRENT_SIZE(name->len);
397 unsigned actual = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
398 unsigned totlen = be16_to_cpu(dent->de_rec_len);
400 if (!dent->de_inum.no_addr)
401 actual = GFS2_DIRENT_SIZE(0);
402 if (totlen - actual >= required)
407 struct dirent_gather {
408 const struct gfs2_dirent **pdent;
412 static int gfs2_dirent_gather(const struct gfs2_dirent *dent,
413 const struct qstr *name,
416 struct dirent_gather *g = opaque;
417 if (dent->de_inum.no_addr) {
418 g->pdent[g->offset++] = dent;
424 * Other possible things to check:
425 * - Inode located within filesystem size (and on valid block)
426 * - Valid directory entry type
427 * Not sure how heavy-weight we want to make this... could also check
428 * hash is correct for example, but that would take a lot of extra time.
429 * For now the most important thing is to check that the various sizes
432 static int gfs2_check_dirent(struct gfs2_dirent *dent, unsigned int offset,
433 unsigned int size, unsigned int len, int first)
435 const char *msg = "gfs2_dirent too small";
436 if (unlikely(size < sizeof(struct gfs2_dirent)))
438 msg = "gfs2_dirent misaligned";
439 if (unlikely(offset & 0x7))
441 msg = "gfs2_dirent points beyond end of block";
442 if (unlikely(offset + size > len))
444 msg = "zero inode number";
445 if (unlikely(!first && !dent->de_inum.no_addr))
447 msg = "name length is greater than space in dirent";
448 if (dent->de_inum.no_addr &&
449 unlikely(sizeof(struct gfs2_dirent)+be16_to_cpu(dent->de_name_len) >
454 printk(KERN_WARNING "gfs2_check_dirent: %s (%s)\n", msg,
455 first ? "first in block" : "not first in block");
459 static int gfs2_dirent_offset(const void *buf)
461 const struct gfs2_meta_header *h = buf;
466 switch(be32_to_cpu(h->mh_type)) {
467 case GFS2_METATYPE_LF:
468 offset = sizeof(struct gfs2_leaf);
470 case GFS2_METATYPE_DI:
471 offset = sizeof(struct gfs2_dinode);
478 printk(KERN_WARNING "gfs2_scan_dirent: wrong block type %u\n",
479 be32_to_cpu(h->mh_type));
483 static struct gfs2_dirent *gfs2_dirent_scan(struct inode *inode, void *buf,
484 unsigned int len, gfs2_dscan_t scan,
485 const struct qstr *name,
488 struct gfs2_dirent *dent, *prev;
493 ret = gfs2_dirent_offset(buf);
500 size = be16_to_cpu(dent->de_rec_len);
501 if (gfs2_check_dirent(dent, offset, size, len, 1))
504 ret = scan(dent, name, opaque);
512 size = be16_to_cpu(dent->de_rec_len);
513 if (gfs2_check_dirent(dent, offset, size, len, 0))
523 return prev ? prev : dent;
530 gfs2_consist_inode(GFS2_I(inode));
531 return ERR_PTR(-EIO);
536 * dirent_first - Return the first dirent
537 * @dip: the directory
539 * @dent: Pointer to list of dirents
541 * return first dirent whether bh points to leaf or stuffed dinode
543 * Returns: IS_LEAF, IS_DINODE, or -errno
546 static int dirent_first(struct gfs2_inode *dip, struct buffer_head *bh,
547 struct gfs2_dirent **dent)
549 struct gfs2_meta_header *h = (struct gfs2_meta_header *)bh->b_data;
551 if (be32_to_cpu(h->mh_type) == GFS2_METATYPE_LF) {
552 if (gfs2_meta_check(GFS2_SB(&dip->i_inode), bh))
554 *dent = (struct gfs2_dirent *)(bh->b_data +
555 sizeof(struct gfs2_leaf));
558 if (gfs2_metatype_check(GFS2_SB(&dip->i_inode), bh, GFS2_METATYPE_DI))
560 *dent = (struct gfs2_dirent *)(bh->b_data +
561 sizeof(struct gfs2_dinode));
566 static int dirent_check_reclen(struct gfs2_inode *dip,
567 const struct gfs2_dirent *d, const void *end_p)
570 u16 rec_len = be16_to_cpu(d->de_rec_len);
572 if (unlikely(rec_len < sizeof(struct gfs2_dirent)))
580 gfs2_consist_inode(dip);
585 * dirent_next - Next dirent
586 * @dip: the directory
588 * @dent: Pointer to list of dirents
590 * Returns: 0 on success, error code otherwise
593 static int dirent_next(struct gfs2_inode *dip, struct buffer_head *bh,
594 struct gfs2_dirent **dent)
596 struct gfs2_dirent *cur = *dent, *tmp;
597 char *bh_end = bh->b_data + bh->b_size;
600 ret = dirent_check_reclen(dip, cur, bh_end);
604 tmp = (void *)cur + ret;
605 ret = dirent_check_reclen(dip, tmp, bh_end);
609 /* Only the first dent could ever have de_inum.no_addr == 0 */
610 if (!tmp->de_inum.no_addr) {
611 gfs2_consist_inode(dip);
620 * dirent_del - Delete a dirent
621 * @dip: The GFS2 inode
623 * @prev: The previous dirent
624 * @cur: The current dirent
628 static void dirent_del(struct gfs2_inode *dip, struct buffer_head *bh,
629 struct gfs2_dirent *prev, struct gfs2_dirent *cur)
631 u16 cur_rec_len, prev_rec_len;
633 if (!cur->de_inum.no_addr) {
634 gfs2_consist_inode(dip);
638 gfs2_trans_add_bh(dip->i_gl, bh, 1);
640 /* If there is no prev entry, this is the first entry in the block.
641 The de_rec_len is already as big as it needs to be. Just zero
642 out the inode number and return. */
645 cur->de_inum.no_addr = 0; /* No endianess worries */
649 /* Combine this dentry with the previous one. */
651 prev_rec_len = be16_to_cpu(prev->de_rec_len);
652 cur_rec_len = be16_to_cpu(cur->de_rec_len);
654 if ((char *)prev + prev_rec_len != (char *)cur)
655 gfs2_consist_inode(dip);
656 if ((char *)cur + cur_rec_len > bh->b_data + bh->b_size)
657 gfs2_consist_inode(dip);
659 prev_rec_len += cur_rec_len;
660 prev->de_rec_len = cpu_to_be16(prev_rec_len);
664 * Takes a dent from which to grab space as an argument. Returns the
665 * newly created dent.
667 static struct gfs2_dirent *gfs2_init_dirent(struct inode *inode,
668 struct gfs2_dirent *dent,
669 const struct qstr *name,
670 struct buffer_head *bh)
672 struct gfs2_inode *ip = GFS2_I(inode);
673 struct gfs2_dirent *ndent;
674 unsigned offset = 0, totlen;
676 if (dent->de_inum.no_addr)
677 offset = GFS2_DIRENT_SIZE(be16_to_cpu(dent->de_name_len));
678 totlen = be16_to_cpu(dent->de_rec_len);
679 BUG_ON(offset + name->len > totlen);
680 gfs2_trans_add_bh(ip->i_gl, bh, 1);
681 ndent = (struct gfs2_dirent *)((char *)dent + offset);
682 dent->de_rec_len = cpu_to_be16(offset);
683 gfs2_qstr2dirent(name, totlen - offset, ndent);
687 static struct gfs2_dirent *gfs2_dirent_alloc(struct inode *inode,
688 struct buffer_head *bh,
689 const struct qstr *name)
691 struct gfs2_dirent *dent;
692 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
693 gfs2_dirent_find_space, name, NULL);
694 if (!dent || IS_ERR(dent))
696 return gfs2_init_dirent(inode, dent, name, bh);
699 static int get_leaf(struct gfs2_inode *dip, u64 leaf_no,
700 struct buffer_head **bhp)
704 error = gfs2_meta_read(dip->i_gl, leaf_no, DIO_START | DIO_WAIT, bhp);
705 if (!error && gfs2_metatype_check(GFS2_SB(&dip->i_inode), *bhp, GFS2_METATYPE_LF)) {
706 /* printk(KERN_INFO "block num=%llu\n", leaf_no); */
714 * get_leaf_nr - Get a leaf number associated with the index
715 * @dip: The GFS2 inode
719 * Returns: 0 on success, error code otherwise
722 static int get_leaf_nr(struct gfs2_inode *dip, u32 index,
728 error = gfs2_dir_read_data(dip, (char *)&leaf_no,
731 if (error != sizeof(u64))
732 return (error < 0) ? error : -EIO;
734 *leaf_out = be64_to_cpu(leaf_no);
739 static int get_first_leaf(struct gfs2_inode *dip, u32 index,
740 struct buffer_head **bh_out)
745 error = get_leaf_nr(dip, index, &leaf_no);
747 error = get_leaf(dip, leaf_no, bh_out);
752 static struct gfs2_dirent *gfs2_dirent_search(struct inode *inode,
753 const struct qstr *name,
755 struct buffer_head **pbh)
757 struct buffer_head *bh;
758 struct gfs2_dirent *dent;
759 struct gfs2_inode *ip = GFS2_I(inode);
762 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
763 struct gfs2_leaf *leaf;
764 unsigned hsize = 1 << ip->i_di.di_depth;
767 if (hsize * sizeof(u64) != ip->i_di.di_size) {
768 gfs2_consist_inode(ip);
769 return ERR_PTR(-EIO);
772 index = name->hash >> (32 - ip->i_di.di_depth);
773 error = get_first_leaf(ip, index, &bh);
775 return ERR_PTR(error);
777 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
781 leaf = (struct gfs2_leaf *)bh->b_data;
782 ln = be64_to_cpu(leaf->lf_next);
787 error = get_leaf(ip, ln, &bh);
790 return error ? ERR_PTR(error) : NULL;
794 error = gfs2_meta_inode_buffer(ip, &bh);
796 return ERR_PTR(error);
797 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size, scan, name, NULL);
799 if (unlikely(dent == NULL || IS_ERR(dent))) {
807 static struct gfs2_leaf *new_leaf(struct inode *inode, struct buffer_head **pbh, u16 depth)
809 struct gfs2_inode *ip = GFS2_I(inode);
810 u64 bn = gfs2_alloc_meta(ip);
811 struct buffer_head *bh = gfs2_meta_new(ip->i_gl, bn);
812 struct gfs2_leaf *leaf;
813 struct gfs2_dirent *dent;
814 struct qstr name = { .name = "", .len = 0, .hash = 0 };
818 gfs2_trans_add_bh(ip->i_gl, bh, 1);
819 gfs2_metatype_set(bh, GFS2_METATYPE_LF, GFS2_FORMAT_LF);
820 leaf = (struct gfs2_leaf *)bh->b_data;
821 leaf->lf_depth = cpu_to_be16(depth);
822 leaf->lf_entries = 0;
823 leaf->lf_dirent_format = cpu_to_be16(GFS2_FORMAT_DE);
825 memset(leaf->lf_reserved, 0, sizeof(leaf->lf_reserved));
826 dent = (struct gfs2_dirent *)(leaf+1);
827 gfs2_qstr2dirent(&name, bh->b_size - sizeof(struct gfs2_leaf), dent);
833 * dir_make_exhash - Convert a stuffed directory into an ExHash directory
834 * @dip: The GFS2 inode
836 * Returns: 0 on success, error code otherwise
839 static int dir_make_exhash(struct inode *inode)
841 struct gfs2_inode *dip = GFS2_I(inode);
842 struct gfs2_sbd *sdp = GFS2_SB(inode);
843 struct gfs2_dirent *dent;
845 struct buffer_head *bh, *dibh;
846 struct gfs2_leaf *leaf;
852 error = gfs2_meta_inode_buffer(dip, &dibh);
856 /* Turn over a new leaf */
858 leaf = new_leaf(inode, &bh, 0);
863 gfs2_assert(sdp, dip->i_di.di_entries < (1 << 16));
864 leaf->lf_entries = cpu_to_be16(dip->i_di.di_entries);
868 gfs2_buffer_copy_tail(bh, sizeof(struct gfs2_leaf), dibh,
869 sizeof(struct gfs2_dinode));
871 /* Find last entry */
874 args.len = bh->b_size - sizeof(struct gfs2_dinode) +
875 sizeof(struct gfs2_leaf);
876 args.name = bh->b_data;
877 dent = gfs2_dirent_scan(&dip->i_inode, bh->b_data, bh->b_size,
878 gfs2_dirent_last, &args, NULL);
887 return PTR_ERR(dent);
890 /* Adjust the last dirent's record length
891 (Remember that dent still points to the last entry.) */
893 dent->de_rec_len = cpu_to_be16(be16_to_cpu(dent->de_rec_len) +
894 sizeof(struct gfs2_dinode) -
895 sizeof(struct gfs2_leaf));
899 /* We're done with the new leaf block, now setup the new
902 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
903 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
905 lp = (u64 *)(dibh->b_data + sizeof(struct gfs2_dinode));
907 for (x = sdp->sd_hash_ptrs; x--; lp++)
908 *lp = cpu_to_be64(bn);
910 dip->i_di.di_size = sdp->sd_sb.sb_bsize / 2;
911 dip->i_di.di_blocks++;
912 dip->i_di.di_flags |= GFS2_DIF_EXHASH;
913 dip->i_di.di_payload_format = 0;
915 for (x = sdp->sd_hash_ptrs, y = -1; x; x >>= 1, y++) ;
916 dip->i_di.di_depth = y;
918 gfs2_dinode_out(&dip->i_di, dibh->b_data);
926 * dir_split_leaf - Split a leaf block into two
927 * @dip: The GFS2 inode
931 * Returns: 0 on success, error code on failure
934 static int dir_split_leaf(struct inode *inode, const struct qstr *name)
936 struct gfs2_inode *dip = GFS2_I(inode);
937 struct buffer_head *nbh, *obh, *dibh;
938 struct gfs2_leaf *nleaf, *oleaf;
939 struct gfs2_dirent *dent = NULL, *prev = NULL, *next = NULL, *new;
940 u32 start, len, half_len, divider;
941 u64 bn, *lp, leaf_no;
946 index = name->hash >> (32 - dip->i_di.di_depth);
947 error = get_leaf_nr(dip, index, &leaf_no);
951 /* Get the old leaf block */
952 error = get_leaf(dip, leaf_no, &obh);
956 oleaf = (struct gfs2_leaf *)obh->b_data;
957 if (dip->i_di.di_depth == be16_to_cpu(oleaf->lf_depth)) {
959 return 1; /* can't split */
962 gfs2_trans_add_bh(dip->i_gl, obh, 1);
964 nleaf = new_leaf(inode, &nbh, be16_to_cpu(oleaf->lf_depth) + 1);
971 /* Compute the start and len of leaf pointers in the hash table. */
972 len = 1 << (dip->i_di.di_depth - be16_to_cpu(oleaf->lf_depth));
975 printk(KERN_WARNING "di_depth %u lf_depth %u index %u\n", dip->i_di.di_depth, be16_to_cpu(oleaf->lf_depth), index);
976 gfs2_consist_inode(dip);
981 start = (index & ~(len - 1));
983 /* Change the pointers.
984 Don't bother distinguishing stuffed from non-stuffed.
985 This code is complicated enough already. */
986 lp = kmalloc(half_len * sizeof(u64), GFP_NOFS | __GFP_NOFAIL);
987 /* Change the pointers */
988 for (x = 0; x < half_len; x++)
989 lp[x] = cpu_to_be64(bn);
991 error = gfs2_dir_write_data(dip, (char *)lp, start * sizeof(u64),
992 half_len * sizeof(u64));
993 if (error != half_len * sizeof(u64)) {
1001 /* Compute the divider */
1002 divider = (start + half_len) << (32 - dip->i_di.di_depth);
1004 /* Copy the entries */
1005 dirent_first(dip, obh, &dent);
1009 if (dirent_next(dip, obh, &next))
1012 if (dent->de_inum.no_addr &&
1013 be32_to_cpu(dent->de_hash) < divider) {
1015 str.name = (char*)(dent+1);
1016 str.len = be16_to_cpu(dent->de_name_len);
1017 str.hash = be32_to_cpu(dent->de_hash);
1018 new = gfs2_dirent_alloc(inode, nbh, &str);
1020 error = PTR_ERR(new);
1024 new->de_inum = dent->de_inum; /* No endian worries */
1025 new->de_type = dent->de_type; /* No endian worries */
1026 nleaf->lf_entries = cpu_to_be16(be16_to_cpu(nleaf->lf_entries)+1);
1028 dirent_del(dip, obh, prev, dent);
1030 if (!oleaf->lf_entries)
1031 gfs2_consist_inode(dip);
1032 oleaf->lf_entries = cpu_to_be16(be16_to_cpu(oleaf->lf_entries)-1);
1044 oleaf->lf_depth = nleaf->lf_depth;
1046 error = gfs2_meta_inode_buffer(dip, &dibh);
1047 if (!gfs2_assert_withdraw(GFS2_SB(&dip->i_inode), !error)) {
1048 dip->i_di.di_blocks++;
1049 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1068 * dir_double_exhash - Double size of ExHash table
1069 * @dip: The GFS2 dinode
1071 * Returns: 0 on success, error code on failure
1074 static int dir_double_exhash(struct gfs2_inode *dip)
1076 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1077 struct buffer_head *dibh;
1085 hsize = 1 << dip->i_di.di_depth;
1086 if (hsize * sizeof(u64) != dip->i_di.di_size) {
1087 gfs2_consist_inode(dip);
1091 /* Allocate both the "from" and "to" buffers in one big chunk */
1093 buf = kcalloc(3, sdp->sd_hash_bsize, GFP_KERNEL | __GFP_NOFAIL);
1095 for (block = dip->i_di.di_size >> sdp->sd_hash_bsize_shift; block--;) {
1096 error = gfs2_dir_read_data(dip, (char *)buf,
1097 block * sdp->sd_hash_bsize,
1098 sdp->sd_hash_bsize);
1099 if (error != sdp->sd_hash_bsize) {
1106 to = (u64 *)((char *)buf + sdp->sd_hash_bsize);
1108 for (x = sdp->sd_hash_ptrs; x--; from++) {
1109 *to++ = *from; /* No endianess worries */
1113 error = gfs2_dir_write_data(dip,
1114 (char *)buf + sdp->sd_hash_bsize,
1115 block * sdp->sd_sb.sb_bsize,
1116 sdp->sd_sb.sb_bsize);
1117 if (error != sdp->sd_sb.sb_bsize) {
1126 error = gfs2_meta_inode_buffer(dip, &dibh);
1127 if (!gfs2_assert_withdraw(sdp, !error)) {
1128 dip->i_di.di_depth++;
1129 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1141 * compare_dents - compare directory entries by hash value
1145 * When comparing the hash entries of @a to @b:
1151 static int compare_dents(const void *a, const void *b)
1153 const struct gfs2_dirent *dent_a, *dent_b;
1157 dent_a = *(const struct gfs2_dirent **)a;
1158 hash_a = be32_to_cpu(dent_a->de_hash);
1160 dent_b = *(const struct gfs2_dirent **)b;
1161 hash_b = be32_to_cpu(dent_b->de_hash);
1163 if (hash_a > hash_b)
1165 else if (hash_a < hash_b)
1168 unsigned int len_a = be16_to_cpu(dent_a->de_name_len);
1169 unsigned int len_b = be16_to_cpu(dent_b->de_name_len);
1173 else if (len_a < len_b)
1176 ret = memcmp(dent_a + 1, dent_b + 1, len_a);
1183 * do_filldir_main - read out directory entries
1184 * @dip: The GFS2 inode
1185 * @offset: The offset in the file to read from
1186 * @opaque: opaque data to pass to filldir
1187 * @filldir: The function to pass entries to
1188 * @darr: an array of struct gfs2_dirent pointers to read
1189 * @entries: the number of entries in darr
1190 * @copied: pointer to int that's non-zero if a entry has been copied out
1192 * Jump through some hoops to make sure that if there are hash collsions,
1193 * they are read out at the beginning of a buffer. We want to minimize
1194 * the possibility that they will fall into different readdir buffers or
1195 * that someone will want to seek to that location.
1197 * Returns: errno, >0 on exception from filldir
1200 static int do_filldir_main(struct gfs2_inode *dip, u64 *offset,
1201 void *opaque, gfs2_filldir_t filldir,
1202 const struct gfs2_dirent **darr, u32 entries,
1205 const struct gfs2_dirent *dent, *dent_next;
1206 struct gfs2_inum inum;
1212 sort(darr, entries, sizeof(struct gfs2_dirent *), compare_dents, NULL);
1214 dent_next = darr[0];
1215 off_next = be32_to_cpu(dent_next->de_hash);
1216 off_next = gfs2_disk_hash2offset(off_next);
1218 for (x = 0, y = 1; x < entries; x++, y++) {
1223 dent_next = darr[y];
1224 off_next = be32_to_cpu(dent_next->de_hash);
1225 off_next = gfs2_disk_hash2offset(off_next);
1231 if (off_next == off) {
1232 if (*copied && !run)
1243 gfs2_inum_in(&inum, (char *)&dent->de_inum);
1245 error = filldir(opaque, (const char *)(dent + 1),
1246 be16_to_cpu(dent->de_name_len),
1248 be16_to_cpu(dent->de_type));
1255 /* Increment the *offset by one, so the next time we come into the
1256 do_filldir fxn, we get the next entry instead of the last one in the
1264 static int gfs2_dir_read_leaf(struct inode *inode, u64 *offset, void *opaque,
1265 gfs2_filldir_t filldir, int *copied,
1266 unsigned *depth, u64 leaf_no)
1268 struct gfs2_inode *ip = GFS2_I(inode);
1269 struct buffer_head *bh;
1270 struct gfs2_leaf *lf;
1271 unsigned entries = 0;
1272 unsigned leaves = 0;
1273 const struct gfs2_dirent **darr, *dent;
1274 struct dirent_gather g;
1275 struct buffer_head **larr;
1281 error = get_leaf(ip, lfn, &bh);
1284 lf = (struct gfs2_leaf *)bh->b_data;
1286 *depth = be16_to_cpu(lf->lf_depth);
1287 entries += be16_to_cpu(lf->lf_entries);
1289 lfn = be64_to_cpu(lf->lf_next);
1297 larr = vmalloc((leaves + entries) * sizeof(void *));
1300 darr = (const struct gfs2_dirent **)(larr + leaves);
1306 error = get_leaf(ip, lfn, &bh);
1309 lf = (struct gfs2_leaf *)bh->b_data;
1310 lfn = be64_to_cpu(lf->lf_next);
1311 if (lf->lf_entries) {
1312 dent = gfs2_dirent_scan(inode, bh->b_data, bh->b_size,
1313 gfs2_dirent_gather, NULL, &g);
1314 error = PTR_ERR(dent);
1325 error = do_filldir_main(ip, offset, opaque, filldir, darr,
1328 for(i = 0; i < leaf; i++)
1336 * dir_e_read - Reads the entries from a directory into a filldir buffer
1337 * @dip: dinode pointer
1338 * @offset: the hash of the last entry read shifted to the right once
1339 * @opaque: buffer for the filldir function to fill
1340 * @filldir: points to the filldir function to use
1345 static int dir_e_read(struct inode *inode, u64 *offset, void *opaque,
1346 gfs2_filldir_t filldir)
1348 struct gfs2_inode *dip = GFS2_I(inode);
1349 struct gfs2_sbd *sdp = GFS2_SB(inode);
1351 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1358 hsize = 1 << dip->i_di.di_depth;
1359 if (hsize * sizeof(u64) != dip->i_di.di_size) {
1360 gfs2_consist_inode(dip);
1364 hash = gfs2_dir_offset2hash(*offset);
1365 index = hash >> (32 - dip->i_di.di_depth);
1367 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1371 while (index < hsize) {
1372 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1373 ht_offset = index - lp_offset;
1375 if (ht_offset_cur != ht_offset) {
1376 error = gfs2_dir_read_data(dip, (char *)lp,
1377 ht_offset * sizeof(u64),
1378 sdp->sd_hash_bsize);
1379 if (error != sdp->sd_hash_bsize) {
1384 ht_offset_cur = ht_offset;
1387 error = gfs2_dir_read_leaf(inode, offset, opaque, filldir,
1389 be64_to_cpu(lp[lp_offset]));
1393 len = 1 << (dip->i_di.di_depth - depth);
1394 index = (index & ~(len - 1)) + len;
1404 int gfs2_dir_read(struct inode *inode, u64 *offset, void *opaque,
1405 gfs2_filldir_t filldir)
1407 struct gfs2_inode *dip = GFS2_I(inode);
1408 struct dirent_gather g;
1409 const struct gfs2_dirent **darr, *dent;
1410 struct buffer_head *dibh;
1414 if (!dip->i_di.di_entries)
1417 if (dip->i_di.di_flags & GFS2_DIF_EXHASH)
1418 return dir_e_read(inode, offset, opaque, filldir);
1420 if (!gfs2_is_stuffed(dip)) {
1421 gfs2_consist_inode(dip);
1425 error = gfs2_meta_inode_buffer(dip, &dibh);
1430 darr = kmalloc(dip->i_di.di_entries * sizeof(struct gfs2_dirent *),
1435 dent = gfs2_dirent_scan(inode, dibh->b_data, dibh->b_size,
1436 gfs2_dirent_gather, NULL, &g);
1438 error = PTR_ERR(dent);
1441 error = do_filldir_main(dip, offset, opaque, filldir, darr,
1442 dip->i_di.di_entries, &copied);
1456 * gfs2_dir_search - Search a directory
1457 * @dip: The GFS2 inode
1461 * This routine searches a directory for a file or another directory.
1462 * Assumes a glock is held on dip.
1467 int gfs2_dir_search(struct inode *dir, const struct qstr *name,
1468 struct gfs2_inum *inum, unsigned int *type)
1470 struct buffer_head *bh;
1471 struct gfs2_dirent *dent;
1473 dent = gfs2_dirent_search(dir, name, gfs2_dirent_find, &bh);
1476 return PTR_ERR(dent);
1478 gfs2_inum_in(inum, (char *)&dent->de_inum);
1480 *type = be16_to_cpu(dent->de_type);
1487 static int dir_new_leaf(struct inode *inode, const struct qstr *name)
1489 struct buffer_head *bh, *obh;
1490 struct gfs2_inode *ip = GFS2_I(inode);
1491 struct gfs2_leaf *leaf, *oleaf;
1496 index = name->hash >> (32 - ip->i_di.di_depth);
1497 error = get_first_leaf(ip, index, &obh);
1501 oleaf = (struct gfs2_leaf *)obh->b_data;
1502 bn = be64_to_cpu(oleaf->lf_next);
1506 error = get_leaf(ip, bn, &obh);
1511 gfs2_trans_add_bh(ip->i_gl, obh, 1);
1513 leaf = new_leaf(inode, &bh, be16_to_cpu(oleaf->lf_depth));
1518 oleaf->lf_next = cpu_to_be64(bh->b_blocknr);
1522 error = gfs2_meta_inode_buffer(ip, &bh);
1525 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1526 ip->i_di.di_blocks++;
1527 gfs2_dinode_out(&ip->i_di, bh->b_data);
1533 * gfs2_dir_add - Add new filename into directory
1534 * @dip: The GFS2 inode
1535 * @filename: The new name
1536 * @inode: The inode number of the entry
1537 * @type: The type of the entry
1539 * Returns: 0 on success, error code on failure
1542 int gfs2_dir_add(struct inode *inode, const struct qstr *name,
1543 const struct gfs2_inum *inum, unsigned type)
1545 struct gfs2_inode *ip = GFS2_I(inode);
1546 struct buffer_head *bh;
1547 struct gfs2_dirent *dent;
1548 struct gfs2_leaf *leaf;
1552 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space,
1556 return PTR_ERR(dent);
1557 dent = gfs2_init_dirent(inode, dent, name, bh);
1558 gfs2_inum_out(inum, (char *)&dent->de_inum);
1559 dent->de_type = cpu_to_be16(type);
1560 if (ip->i_di.di_flags & GFS2_DIF_EXHASH) {
1561 leaf = (struct gfs2_leaf *)bh->b_data;
1562 leaf->lf_entries = cpu_to_be16(be16_to_cpu(leaf->lf_entries) + 1);
1565 error = gfs2_meta_inode_buffer(ip, &bh);
1568 gfs2_trans_add_bh(ip->i_gl, bh, 1);
1569 ip->i_di.di_entries++;
1570 ip->i_di.di_mtime = ip->i_di.di_ctime = get_seconds();
1571 gfs2_dinode_out(&ip->i_di, bh->b_data);
1576 if (!(ip->i_di.di_flags & GFS2_DIF_EXHASH)) {
1577 error = dir_make_exhash(inode);
1582 error = dir_split_leaf(inode, name);
1587 if (ip->i_di.di_depth < GFS2_DIR_MAX_DEPTH) {
1588 error = dir_double_exhash(ip);
1591 error = dir_split_leaf(inode, name);
1597 error = dir_new_leaf(inode, name);
1608 * gfs2_dir_del - Delete a directory entry
1609 * @dip: The GFS2 inode
1610 * @filename: The filename
1612 * Returns: 0 on success, error code on failure
1615 int gfs2_dir_del(struct gfs2_inode *dip, const struct qstr *name)
1617 struct gfs2_dirent *dent, *prev = NULL;
1618 struct buffer_head *bh;
1621 /* Returns _either_ the entry (if its first in block) or the
1622 previous entry otherwise */
1623 dent = gfs2_dirent_search(&dip->i_inode, name, gfs2_dirent_prev, &bh);
1625 gfs2_consist_inode(dip);
1629 gfs2_consist_inode(dip);
1630 return PTR_ERR(dent);
1632 /* If not first in block, adjust pointers accordingly */
1633 if (gfs2_dirent_find(dent, name, NULL) == 0) {
1635 dent = (struct gfs2_dirent *)((char *)dent + be16_to_cpu(prev->de_rec_len));
1638 dirent_del(dip, bh, prev, dent);
1639 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1640 struct gfs2_leaf *leaf = (struct gfs2_leaf *)bh->b_data;
1641 u16 entries = be16_to_cpu(leaf->lf_entries);
1643 gfs2_consist_inode(dip);
1644 leaf->lf_entries = cpu_to_be16(--entries);
1648 error = gfs2_meta_inode_buffer(dip, &bh);
1652 if (!dip->i_di.di_entries)
1653 gfs2_consist_inode(dip);
1654 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1655 dip->i_di.di_entries--;
1656 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1657 gfs2_dinode_out(&dip->i_di, bh->b_data);
1659 mark_inode_dirty(&dip->i_inode);
1665 * gfs2_dir_mvino - Change inode number of directory entry
1666 * @dip: The GFS2 inode
1670 * This routine changes the inode number of a directory entry. It's used
1671 * by rename to change ".." when a directory is moved.
1672 * Assumes a glock is held on dvp.
1677 int gfs2_dir_mvino(struct gfs2_inode *dip, const struct qstr *filename,
1678 struct gfs2_inum *inum, unsigned int new_type)
1680 struct buffer_head *bh;
1681 struct gfs2_dirent *dent;
1684 dent = gfs2_dirent_search(&dip->i_inode, filename, gfs2_dirent_find, &bh);
1686 gfs2_consist_inode(dip);
1690 return PTR_ERR(dent);
1692 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1693 gfs2_inum_out(inum, (char *)&dent->de_inum);
1694 dent->de_type = cpu_to_be16(new_type);
1696 if (dip->i_di.di_flags & GFS2_DIF_EXHASH) {
1698 error = gfs2_meta_inode_buffer(dip, &bh);
1701 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1704 dip->i_di.di_mtime = dip->i_di.di_ctime = get_seconds();
1705 gfs2_dinode_out(&dip->i_di, bh->b_data);
1711 * foreach_leaf - call a function for each leaf in a directory
1712 * @dip: the directory
1713 * @lc: the function to call for each each
1714 * @data: private data to pass to it
1719 static int foreach_leaf(struct gfs2_inode *dip, leaf_call_t lc, void *data)
1721 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1722 struct buffer_head *bh;
1723 struct gfs2_leaf *leaf;
1725 u32 ht_offset, lp_offset, ht_offset_cur = -1;
1731 hsize = 1 << dip->i_di.di_depth;
1732 if (hsize * sizeof(u64) != dip->i_di.di_size) {
1733 gfs2_consist_inode(dip);
1737 lp = kmalloc(sdp->sd_hash_bsize, GFP_KERNEL);
1741 while (index < hsize) {
1742 lp_offset = index & (sdp->sd_hash_ptrs - 1);
1743 ht_offset = index - lp_offset;
1745 if (ht_offset_cur != ht_offset) {
1746 error = gfs2_dir_read_data(dip, (char *)lp,
1747 ht_offset * sizeof(u64),
1748 sdp->sd_hash_bsize);
1749 if (error != sdp->sd_hash_bsize) {
1754 ht_offset_cur = ht_offset;
1757 leaf_no = be64_to_cpu(lp[lp_offset]);
1759 error = get_leaf(dip, leaf_no, &bh);
1762 leaf = (struct gfs2_leaf *)bh->b_data;
1763 len = 1 << (dip->i_di.di_depth - be16_to_cpu(leaf->lf_depth));
1766 error = lc(dip, index, len, leaf_no, data);
1770 index = (index & ~(len - 1)) + len;
1775 if (index != hsize) {
1776 gfs2_consist_inode(dip);
1787 * leaf_dealloc - Deallocate a directory leaf
1788 * @dip: the directory
1789 * @index: the hash table offset in the directory
1790 * @len: the number of pointers to this leaf
1791 * @leaf_no: the leaf number
1797 static int leaf_dealloc(struct gfs2_inode *dip, u32 index, u32 len,
1798 u64 leaf_no, void *data)
1800 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1801 struct gfs2_leaf *tmp_leaf;
1802 struct gfs2_rgrp_list rlist;
1803 struct buffer_head *bh, *dibh;
1805 unsigned int rg_blocks = 0, l_blocks = 0;
1807 unsigned int x, size = len * sizeof(u64);
1810 memset(&rlist, 0, sizeof(struct gfs2_rgrp_list));
1812 ht = kzalloc(size, GFP_KERNEL);
1816 gfs2_alloc_get(dip);
1818 error = gfs2_quota_hold(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
1822 error = gfs2_rindex_hold(sdp, &dip->i_alloc.al_ri_gh);
1826 /* Count the number of leaves */
1828 for (blk = leaf_no; blk; blk = nblk) {
1829 error = get_leaf(dip, blk, &bh);
1832 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1833 nblk = be64_to_cpu(tmp_leaf->lf_next);
1836 gfs2_rlist_add(sdp, &rlist, blk);
1840 gfs2_rlist_alloc(&rlist, LM_ST_EXCLUSIVE, 0);
1842 for (x = 0; x < rlist.rl_rgrps; x++) {
1843 struct gfs2_rgrpd *rgd;
1844 rgd = rlist.rl_ghs[x].gh_gl->gl_object;
1845 rg_blocks += rgd->rd_ri.ri_length;
1848 error = gfs2_glock_nq_m(rlist.rl_rgrps, rlist.rl_ghs);
1852 error = gfs2_trans_begin(sdp,
1853 rg_blocks + (DIV_ROUND_UP(size, sdp->sd_jbsize) + 1) +
1854 RES_DINODE + RES_STATFS + RES_QUOTA, l_blocks);
1856 goto out_rg_gunlock;
1858 for (blk = leaf_no; blk; blk = nblk) {
1859 error = get_leaf(dip, blk, &bh);
1862 tmp_leaf = (struct gfs2_leaf *)bh->b_data;
1863 nblk = be64_to_cpu(tmp_leaf->lf_next);
1866 gfs2_free_meta(dip, blk, 1);
1868 if (!dip->i_di.di_blocks)
1869 gfs2_consist_inode(dip);
1870 dip->i_di.di_blocks--;
1873 error = gfs2_dir_write_data(dip, ht, index * sizeof(u64), size);
1874 if (error != size) {
1880 error = gfs2_meta_inode_buffer(dip, &dibh);
1884 gfs2_trans_add_bh(dip->i_gl, dibh, 1);
1885 gfs2_dinode_out(&dip->i_di, dibh->b_data);
1889 gfs2_trans_end(sdp);
1891 gfs2_glock_dq_m(rlist.rl_rgrps, rlist.rl_ghs);
1893 gfs2_rlist_free(&rlist);
1894 gfs2_glock_dq_uninit(&dip->i_alloc.al_ri_gh);
1896 gfs2_quota_unhold(dip);
1898 gfs2_alloc_put(dip);
1904 * gfs2_dir_exhash_dealloc - free all the leaf blocks in a directory
1905 * @dip: the directory
1907 * Dealloc all on-disk directory leaves to FREEMETA state
1908 * Change on-disk inode type to "regular file"
1913 int gfs2_dir_exhash_dealloc(struct gfs2_inode *dip)
1915 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
1916 struct buffer_head *bh;
1919 /* Dealloc on-disk leaves to FREEMETA state */
1920 error = foreach_leaf(dip, leaf_dealloc, NULL);
1924 /* Make this a regular file in case we crash.
1925 (We don't want to free these blocks a second time.) */
1927 error = gfs2_trans_begin(sdp, RES_DINODE, 0);
1931 error = gfs2_meta_inode_buffer(dip, &bh);
1933 gfs2_trans_add_bh(dip->i_gl, bh, 1);
1934 ((struct gfs2_dinode *)bh->b_data)->di_mode =
1935 cpu_to_be32(S_IFREG);
1939 gfs2_trans_end(sdp);
1945 * gfs2_diradd_alloc_required - find if adding entry will require an allocation
1946 * @ip: the file being written to
1947 * @filname: the filename that's going to be added
1949 * Returns: 1 if alloc required, 0 if not, -ve on error
1952 int gfs2_diradd_alloc_required(struct inode *inode, const struct qstr *name)
1954 struct gfs2_dirent *dent;
1955 struct buffer_head *bh;
1957 dent = gfs2_dirent_search(inode, name, gfs2_dirent_find_space, &bh);
1962 return PTR_ERR(dent);