@@ -731,9 +731,9 @@ struct list_chunks_entry {
731
731
u64 lstart ;
732
732
u64 length ;
733
733
u64 flags ;
734
- u64 age ;
734
+ u64 lnumber ;
735
735
u64 used ;
736
- u32 pnumber ;
736
+ u32 number ;
737
737
};
738
738
739
739
struct list_chunks_ctx {
@@ -843,7 +843,7 @@ static int print_list_chunks(struct list_chunks_ctx *ctx, unsigned sort_mode,
843
843
int i ;
844
844
int chidx ;
845
845
u64 lastend ;
846
- u64 age ;
846
+ u64 number ;
847
847
u32 gaps ;
848
848
u32 tabidx ;
849
849
@@ -853,17 +853,17 @@ static int print_list_chunks(struct list_chunks_ctx *ctx, unsigned sort_mode,
853
853
*/
854
854
qsort (ctx -> stats , ctx -> length , sizeof (ctx -> stats [0 ]), cmp_cse_devid_start );
855
855
devid = 0 ;
856
- age = 0 ;
856
+ number = 0 ;
857
857
gaps = 0 ;
858
858
lastend = 0 ;
859
859
for (i = 0 ; i < ctx -> length ; i ++ ) {
860
860
e = ctx -> stats [i ];
861
861
if (e .devid != devid ) {
862
862
devid = e .devid ;
863
- age = 0 ;
863
+ number = 0 ;
864
864
}
865
- ctx -> stats [i ].pnumber = age ;
866
- age ++ ;
865
+ ctx -> stats [i ].number = number ;
866
+ number ++ ;
867
867
if (with_empty && sort_mode == CHUNK_SORT_PSTART && e .start != lastend )
868
868
gaps ++ ;
869
869
lastend = e .start + e .length ;
@@ -937,7 +937,7 @@ static int print_list_chunks(struct list_chunks_ctx *ctx, unsigned sort_mode,
937
937
table_printf (table , 2 , tabidx , ">%s" , pretty_size_mode (e .start , unit_mode ));
938
938
table_printf (table , 3 , tabidx , ">%s" , pretty_size_mode (e .length , unit_mode ));
939
939
table_printf (table , 4 , tabidx , ">%s" , pretty_size_mode (e .start + e .length , unit_mode ));
940
- table_printf (table , 5 , tabidx , ">%llu" , e .age );
940
+ table_printf (table , 5 , tabidx , ">%llu" , e .lnumber + 1 );
941
941
table_printf (table , 6 , tabidx , ">%s" , pretty_size_mode (e .lstart , unit_mode ));
942
942
if (with_usage )
943
943
table_printf (table , 7 , tabidx , ">%6.2f" ,
@@ -995,8 +995,8 @@ static int cmd_inspect_list_chunks(const struct cmd_struct *cmd,
995
995
struct btrfs_ioctl_search_key * sk = & args .key ;
996
996
struct btrfs_ioctl_search_header sh ;
997
997
unsigned long off = 0 ;
998
- u64 * age = NULL ;
999
- unsigned age_size = 128 ;
998
+ u64 * lnumber = NULL ;
999
+ unsigned lnumber_size = 128 ;
1000
1000
int ret ;
1001
1001
int fd ;
1002
1002
int i ;
@@ -1091,8 +1091,8 @@ static int cmd_inspect_list_chunks(const struct cmd_struct *cmd,
1091
1091
sk -> max_type = BTRFS_CHUNK_ITEM_KEY ;
1092
1092
sk -> max_offset = (u64 )- 1 ;
1093
1093
sk -> max_transid = (u64 )- 1 ;
1094
- age = calloc (age_size , sizeof (u64 ));
1095
- if (!age ) {
1094
+ lnumber = calloc (lnumber_size , sizeof (u64 ));
1095
+ if (!lnumber ) {
1096
1096
ret = 1 ;
1097
1097
error_msg (ERROR_MSG_MEMORY , NULL );
1098
1098
goto out_nomem ;
@@ -1133,22 +1133,22 @@ static int cmd_inspect_list_chunks(const struct cmd_struct *cmd,
1133
1133
e -> lstart = sh .offset ;
1134
1134
e -> length = item -> length ;
1135
1135
e -> flags = item -> type ;
1136
- e -> pnumber = -1 ;
1137
- while (devid > age_size ) {
1136
+ e -> number = -1 ;
1137
+ while (devid > lnumber_size ) {
1138
1138
u64 * tmp ;
1139
- unsigned old_size = age_size ;
1139
+ unsigned old_size = lnumber_size ;
1140
1140
1141
- age_size += 128 ;
1142
- tmp = calloc (age_size , sizeof (u64 ));
1141
+ lnumber_size += 128 ;
1142
+ tmp = calloc (lnumber_size , sizeof (u64 ));
1143
1143
if (!tmp ) {
1144
1144
ret = 1 ;
1145
1145
error_msg (ERROR_MSG_MEMORY , NULL );
1146
1146
goto out_nomem ;
1147
1147
}
1148
- memcpy (tmp , age , sizeof (u64 ) * old_size );
1149
- age = tmp ;
1148
+ memcpy (tmp , lnumber , sizeof (u64 ) * old_size );
1149
+ lnumber = tmp ;
1150
1150
}
1151
- e -> age = age [devid ]++ ;
1151
+ e -> lnumber = lnumber [devid ]++ ;
1152
1152
if (with_usage ) {
1153
1153
if (used == (u64 )- 1 )
1154
1154
used = fill_usage (fd , sh .offset );
@@ -1186,7 +1186,7 @@ static int cmd_inspect_list_chunks(const struct cmd_struct *cmd,
1186
1186
1187
1187
out_nomem :
1188
1188
free (ctx .stats );
1189
- free (age );
1189
+ free (lnumber );
1190
1190
1191
1191
return !!ret ;
1192
1192
}
0 commit comments