diff options
author | Doug Gilbert <dgilbert@us.ibm.com> | 2011-12-16 15:52:35 -0600 |
---|---|---|
committer | Douglas R. Gilbert <dgilbert@us.ibm.com> | 2012-01-03 10:50:46 -0600 |
commit | 4251b56d6cf0474aca73b1d7f4c34f33dce42d20 (patch) | |
tree | c60cbc1ea62464cdae0928a30fb3220943c178dc /src/include/sys | |
parent | 0b377b7e0bf55dca1c220c9fbca497ff76e49f65 (diff) | |
download | talos-hostboot-4251b56d6cf0474aca73b1d7f4c34f33dce42d20.tar.gz talos-hostboot-4251b56d6cf0474aca73b1d7f4c34f33dce42d20.zip |
Change VFS to return non page aligned size in types
Change-Id: Id4d7c03b65a2c15e434e8282691d0cc4c9961267
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/584
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/sys')
-rw-r--r-- | src/include/sys/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/sys/vfs.h b/src/include/sys/vfs.h index d427c0abb..155851398 100644 --- a/src/include/sys/vfs.h +++ b/src/include/sys/vfs.h @@ -81,7 +81,7 @@ struct VfsSystemModule void (*fini)(void*); //!< ptr to fini() uint64_t * text; //!< ptr to text (code) section uint64_t * data; //!< ptr to data section - uint64_t page_count; //!< no. of memory pages used + uint64_t byte_count; //!< no. of memory pages used }; extern VfsSystemModule VFS_MODULES[VFS_MODULE_MAX]; |