@@ -4111,7 +4111,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4111
4111
4112
4112
/* Allocate and Read the Transaction Table. */
4113
4113
if (!rst -> transact_table_len )
4114
- goto check_dirty_page_table ;
4114
+ goto check_dirty_page_table ; /* reduce tab pressure. */
4115
4115
4116
4116
t64 = le64_to_cpu (rst -> transact_table_lsn );
4117
4117
err = read_log_rec_lcb (log , t64 , lcb_ctx_prev , & lcb );
@@ -4151,7 +4151,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4151
4151
check_dirty_page_table :
4152
4152
/* The next record back should be the Dirty Pages Table. */
4153
4153
if (!rst -> dirty_pages_len )
4154
- goto check_attribute_names ;
4154
+ goto check_attribute_names ; /* reduce tab pressure. */
4155
4155
4156
4156
t64 = le64_to_cpu (rst -> dirty_pages_table_lsn );
4157
4157
err = read_log_rec_lcb (log , t64 , lcb_ctx_prev , & lcb );
@@ -4187,7 +4187,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4187
4187
4188
4188
/* Convert Ra version '0' into version '1'. */
4189
4189
if (rst -> major_ver )
4190
- goto end_conv_1 ;
4190
+ goto end_conv_1 ; /* reduce tab pressure. */
4191
4191
4192
4192
dp = NULL ;
4193
4193
while ((dp = enum_rstbl (dptbl , dp ))) {
@@ -4207,8 +4207,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4207
4207
* remembering the oldest lsn values.
4208
4208
*/
4209
4209
if (sbi -> cluster_size <= log -> page_size )
4210
- goto trace_dp_table ;
4211
-
4210
+ goto trace_dp_table ; /* reduce tab pressure. */
4212
4211
dp = NULL ;
4213
4212
while ((dp = enum_rstbl (dptbl , dp ))) {
4214
4213
struct DIR_PAGE_ENTRY * next = dp ;
@@ -4229,7 +4228,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4229
4228
check_attribute_names :
4230
4229
/* The next record should be the Attribute Names. */
4231
4230
if (!rst -> attr_names_len )
4232
- goto check_attr_table ;
4231
+ goto check_attr_table ; /* reduce tab pressure. */
4233
4232
4234
4233
t64 = le64_to_cpu (rst -> attr_names_lsn );
4235
4234
err = read_log_rec_lcb (log , t64 , lcb_ctx_prev , & lcb );
@@ -4261,7 +4260,7 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4261
4260
check_attr_table :
4262
4261
/* The next record should be the attribute Table. */
4263
4262
if (!rst -> open_attr_len )
4264
- goto check_attribute_names2 ;
4263
+ goto check_attribute_names2 ; /* reduce tab pressure. */
4265
4264
4266
4265
t64 = le64_to_cpu (rst -> open_attr_table_lsn );
4267
4266
err = read_log_rec_lcb (log , t64 , lcb_ctx_prev , & lcb );
@@ -4550,7 +4549,6 @@ int log_replay(struct ntfs_inode *ni, bool *initialized)
4550
4549
}
4551
4550
}
4552
4551
goto next_log_record_analyze ;
4553
- ;
4554
4552
}
4555
4553
4556
4554
case OpenNonresidentAttribute :
0 commit comments