Lines Matching refs:entry
469 * entry onto the work queue to write the uncompressed bytes. This
3006 * This creates an orphan entry for the given inode in case something goes wrong
3100 "Error removing orphan entry, stopping orphan cleanup");
3433 * try to precache a NULL acl entry for files that don't have
3834 * Instead simply lookup the dir_index_item for this entry so we can
3942 struct btrfs_inode *entry;
3955 entry = rb_entry(node, struct btrfs_inode, rb_node);
3957 if (objectid < btrfs_ino(entry))
3959 else if (objectid > btrfs_ino(entry))
3966 entry = rb_entry(prev, struct btrfs_inode, rb_node);
3967 if (objectid <= btrfs_ino(entry)) {
3975 entry = rb_entry(node, struct btrfs_inode, rb_node);
3976 objectid = btrfs_ino(entry) + 1;
3977 inode = igrab(&entry->vfs_inode);
5220 * Return the key found in the dir entry in the location pointer, fill @type
5224 * If found a corrupted location in dir entry, returns -EUCLEAN.
5333 struct btrfs_inode *entry;
5346 entry = rb_entry(parent, struct btrfs_inode, rb_node);
5348 if (ino < btrfs_ino(entry))
5350 else if (ino > btrfs_ino(entry))
5353 WARN_ON(!(entry->vfs_inode.i_state &
5642 struct dir_entry *entry = addr;
5643 char *name = (char *)(entry + 1);
5645 ctx->pos = get_unaligned(&entry->offset);
5646 if (!dir_emit(ctx, name, get_unaligned(&entry->name_len),
5647 get_unaligned(&entry->ino),
5648 get_unaligned(&entry->type)))
5651 get_unaligned(&entry->name_len);
5703 struct dir_entry *entry;
5740 entry = addr;
5741 put_unaligned(name_len, &entry->name_len);
5742 name_ptr = (char *)(entry + 1);
5746 &entry->type);
5748 put_unaligned(location.objectid, &entry->ino);
5749 put_unaligned(found_key.offset, &entry->offset);
5768 * entry.
5780 * last entry requires it because doing so has broken 32bit apps
9956 * 5 units required for adding orphan entry
10027 * Add an entry indicating a block group or device which is pinned by a
10028 * swapfile. Returns 0 on success, 1 if there is already an entry for it, or a
10035 struct btrfs_swapfile_pin *sp, *entry;
10051 entry = rb_entry(parent, struct btrfs_swapfile_pin, node);
10052 if (sp->ptr < entry->ptr ||
10053 (sp->ptr == entry->ptr && sp->inode < entry->inode)) {
10055 } else if (sp->ptr > entry->ptr ||
10056 (sp->ptr == entry->ptr && sp->inode > entry->inode)) {
10060 entry->bg_extent_count++;