You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This not only leaves total_sectors completely unused but recalculates the division which is inefficient and introduces a bug if I'm not mistaken. This was also outlined in this PR from last year: #7 .
Note that the - 1 is missing in comparison to the PR, otherwise fread doesn't seem to work.
I just bring this up, so it's not overlooked when revising the code for part 2 of the course and people see it's gonna be addressed as not everybody is going to check the closed PRs.
The text was updated successfully, but these errors were encountered:
In the function
fat16_get_root_directory
we first calculate thetotal_sectors
(https://github.com/nibblebits/PeachOS/blob/master/src/fs/fat/fat16.c#L215-L219):and then at the end of the function set the
ending_sector_pos
like so (https://github.com/nibblebits/PeachOS/blob/master/src/fs/fat/fat16.c#L246):This not only leaves
total_sectors
completely unused but recalculates the division which is inefficient and introduces a bug if I'm not mistaken. This was also outlined in this PR from last year: #7 .This should be fixed by changing the assignment similar to what the PR suggests to(https://github.com/nibblebits/PeachOS/pull/7/files):
Note that the
- 1
is missing in comparison to the PR, otherwisefread
doesn't seem to work.I just bring this up, so it's not overlooked when revising the code for part 2 of the course and people see it's gonna be addressed as not everybody is going to check the closed PRs.
The text was updated successfully, but these errors were encountered: