[PATCH] udf: fix the problem that the disc content is not displayed

2021-01-14 Thread lianzhi chang
"sbi->s_session << sb->s_blocksize_bits" will overflow. Therefore, it is necessary to convert the type of s_session to "loff_t" (when udf_check_vsd starts, assign a value to _sector, which is also converted in this way), so that the result will not overflow, and then the

[PATCH] udf: fix the problem that the disc content is not displayed

2021-01-14 Thread lianzhi chang
"sbi->s_session << sb->s_blocksize_bits" will overflow. Therefore, it is necessary to convert the type of s_session to "loff_t" (when udf_check_vsd starts, assign a value to _sector, which is also converted in this way), so that the result will not overflow, and then the

[PATCH] udf: fix the problem that the disc content is not displayed

2021-01-11 Thread lianzhi chang
"sbi->s_session << sb->s_blocksize_bits" will overflow. Therefore, it is necessary to convert the type of s_session to "loff_t" (when udf_check_vsd starts, assign a value to _sector, which is also converted in this way), so that the result will not overflow, and then the