search for: old_objectid

Displaying 1 result from an estimated 1 matches for "old_objectid".

2010 Dec 11
1
[RFC] Improve btrfs subvolume find-new command
...item); + + printf("\tXATTR: namelen %llu datalen %llu name %.*s\n", + (unsigned long long)name_len, + (unsigned long long)data_len, + name_len, (char *)(item + 1)); + return 0; +} + + +static inline void print_filename_one_time( int fd, + struct btrfs_ioctl_search_header *sh, u64 *old_objectid, + int verbose) +{ + if ( sh->objectid != *old_objectid ){ + if(verbose >=50 ) + printf("inode %llu name ", + (unsigned long long)sh->objectid); + printf("%s\n", get_full_path(fd, sh)); + *old_objectid = sh->objectid; + } +} + + +BTRFS_SETGET_STACK_FU...