2011-06-10 Joel Sherrill <joel.sherrilL@OARcorp.com>

PR 1812/filesystem
	* libfs/src/imfs/imfs_stat.c: stat() implementation for IMFS did not
	set st_blksize field. Set it based upon user configuration.
This commit is contained in:
Joel Sherrill
2011-06-10 18:16:42 +00:00
parent fa2f4708d3
commit b5e273943e
2 changed files with 8 additions and 0 deletions
+6
View File
@@ -1,3 +1,9 @@
2011-06-10 Joel Sherrill <joel.sherrilL@OARcorp.com>
PR 1812/filesystem
* libfs/src/imfs/imfs_stat.c: stat() implementation for IMFS did not
set st_blksize field. Set it based upon user configuration.
2011-06-08 Joel Sherrill <joel.sherrill@oarcorp.com>
* score/src/smp.c: Fix typo so this compiles.
+2
View File
@@ -77,5 +77,7 @@ int IMFS_stat(
buf->st_mtime = the_jnode->stat_mtime;
buf->st_ctime = the_jnode->stat_ctime;
buf->st_blksize = imfs_rq_memfile_bytes_per_block;
return 0;
}