X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ffilesys%2Ffile.c;h=e8818c0029383a7d3a0f139963874bf81021dbc2;hb=c4e88f1eb0c51304635bceeee490df8a928fc908;hp=cd5fe3ee05ace31b9981805862fb72260a89f0d8;hpb=73d87f4d52231edc186c428daf3cebc7755c54ce;p=pintos-anon diff --git a/src/filesys/file.c b/src/filesys/file.c index cd5fe3e..e8818c0 100644 --- a/src/filesys/file.c +++ b/src/filesys/file.c @@ -45,6 +45,7 @@ file_close (struct file *file) inode_close (file->inode); free (file->bounce); + free (file); } /* Reads SIZE bytes from FILE into BUFFER, @@ -75,7 +76,7 @@ file_read_at (struct file *file, void *buffer_, off_t size, while (size > 0) { /* Disk sector to read, starting byte offset within sector. */ - off_t sector_idx = inode_byte_to_sector (file->inode, file_ofs); + disk_sector_t sector_idx; int sector_ofs = file_ofs % DISK_SECTOR_SIZE; /* Bytes left in file, bytes left in sector, lesser of the two. */ @@ -90,6 +91,7 @@ file_read_at (struct file *file, void *buffer_, off_t size, /* Read sector into bounce buffer, then copy into caller's buffer. */ + sector_idx = inode_byte_to_sector (file->inode, file_ofs); disk_read (filesys_disk, sector_idx, file->bounce); memcpy (buffer + bytes_read, file->bounce + sector_ofs, chunk_size); @@ -133,8 +135,8 @@ file_write_at (struct file *file, const void *buffer_, off_t size, while (size > 0) { - /* Starting byte offset within sector to read. */ - off_t sector_idx = inode_byte_to_sector (file->inode, file_ofs); + /* Sector to write, starting byte offset within sector. */ + off_t sector_idx; int sector_ofs = file_ofs % DISK_SECTOR_SIZE; /* Bytes left in file, bytes left in sector, lesser of the two. */ @@ -150,6 +152,7 @@ file_write_at (struct file *file, const void *buffer_, off_t size, /* If the sector contains data before or after the chunk we're writing, then we need to read in the sector first. Otherwise we start with a sector of all zeros. */ + sector_idx = inode_byte_to_sector (file->inode, file_ofs); if (sector_ofs > 0 || chunk_size < sector_left) disk_read (filesys_disk, sector_idx, file->bounce); else