提交 c36316b7 编写于 作者: M Mike Marshall

Orangefs: large integer implicitly truncated to unsigned type

make.cross ARCH=tile doesn't like "inode->i_bytes = PAGE_CACHE_SIZE;",
so cast PAGE_CACHE_SIZE to unsigned short.
Signed-off-by: NMike Marshall <hubcap@omnibond.com>
上级 eeaa3d44
......@@ -163,7 +163,7 @@ static int copy_attributes_to_inode(struct inode *inode,
/*FALLTHRU*/
default:
pvfs2_lock_inode(inode);
inode->i_bytes = PAGE_CACHE_SIZE;
inode->i_bytes = (unsigned short)PAGE_CACHE_SIZE;
inode->i_blocks = (unsigned long)(PAGE_CACHE_SIZE / 512);
pvfs2_unlock_inode(inode);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册