• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/fs/ext3/

Lines Matching refs:is

40  * The header is followed by multiple entry descriptors. In disk blocks, the
46 * EXT3_I(inode)->i_file_acl is protected by EXT3_I(inode)->xattr_sem.
311 * Buffer is NULL to compute the size of the buffer required.
425 * Buffer is NULL to compute the size of the buffer required.
453 * If the EXT3_FEATURE_COMPAT_EXT_ATTR feature of this file system is
470 * Release the xattr block BH: If the reference count is > 1, decrement
774 /* The old block is released after updating
873 struct ext3_xattr_ibody_find *is)
881 raw_inode = ext3_raw_inode(&is->iloc);
883 is->s.base = is->s.first = IFIRST(header);
884 is->s.here = is->s.first;
885 is->s.end = (void *)raw_inode + EXT3_SB(inode->i_sb)->s_inode_size;
887 error = ext3_xattr_check_names(IFIRST(header), is->s.end);
891 error = ext3_xattr_find_entry(&is->s.here, i->name_index,
892 i->name, is->s.end -
893 (void *)is->s.base, 0);
896 is->s.not_found = error;
904 struct ext3_xattr_ibody_find *is)
907 struct ext3_xattr_search *s = &is->s;
915 header = IHDR(inode, ext3_raw_inode(&is->iloc));
930 * is NULL to remove an existing extended attribute, and non-NULL to
950 struct ext3_xattr_ibody_find is = {
963 error = ext3_get_inode_loc(inode, &is.iloc);
968 struct ext3_inode *raw_inode = ext3_raw_inode(&is.iloc);
973 error = ext3_xattr_ibody_find(inode, &i, &is);
976 if (is.s.not_found)
980 if (is.s.not_found && bs.s.not_found) {
992 error = ext3_journal_get_write_access(handle, is.iloc.bh);
996 if (!is.s.not_found)
997 error = ext3_xattr_ibody_set(handle, inode, &i, &is);
1001 error = ext3_xattr_ibody_set(handle, inode, &i, &is);
1009 if (!is.s.not_found) {
1012 &is);
1019 error = ext3_mark_iloc_dirty(handle, inode, &is.iloc);
1021 * The bh is consumed by ext3_mark_iloc_dirty, even with
1024 is.iloc.bh = NULL;
1030 brelse(is.iloc.bh);
1040 * attribute modification is a filesystem transaction by itself.
1075 * is called immediately before an inode is freed. We have exclusive
1109 * This is called when a file system is unmounted.
1121 * it unless such an entry is already in the cache.
1294 /* Block is not shared if an entry's hash value == 0 */