Re: [linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread Bruce Ashfield
both patches are now merged Bruce On 06/19/2018 03:58 AM, He Zhe wrote: i_version in struct inode has changed to atomic64_t in mainline kernel. This patch handles i_version with proper atomic API. Signed-off-by: He Zhe --- fs/yaffs2/yaffs_vfs.c | 8 +--- 1 file changed, 5

Re: [linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread He Zhe
This is for linux-yocto-dev and v4.17+. Zhe On 2018年06月19日 15:58, He Zhe wrote: > i_version in struct inode has changed to atomic64_t in mainline kernel. > This patch handles i_version with proper atomic API. > > Signed-off-by: He Zhe > --- > fs/yaffs2/yaffs_vfs.c | 8 +--- > 1 file

Re: [linux-yocto] [PATCH 2/2] yaffs: Fix build failure by removing unused members of erase_info

2018-06-19 Thread He Zhe
This is for linux-yocto-dev and v4.17+. Zhe On 2018年06月19日 15:58, He Zhe wrote: > A few members of struct erase_info have been removed and no longer > used in mainline by the following commits. This patches removes > related useless initialization. > > 8f347c4232d5fc097599b711a3385722a6834005 >

[linux-yocto] [PATCH 1/2] yaffs: Fix build failure by handling inode i_version with proper atomic API

2018-06-19 Thread He Zhe
i_version in struct inode has changed to atomic64_t in mainline kernel. This patch handles i_version with proper atomic API. Signed-off-by: He Zhe --- fs/yaffs2/yaffs_vfs.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/fs/yaffs2/yaffs_vfs.c b/fs/yaffs2/yaffs_vfs.c

[linux-yocto] [PATCH 2/2] yaffs: Fix build failure by removing unused members of erase_info

2018-06-19 Thread He Zhe
A few members of struct erase_info have been removed and no longer used in mainline by the following commits. This patches removes related useless initialization. 8f347c4232d5fc097599b711a3385722a6834005 "mtd: Unconditionally update ->fail_addr and ->addr in part_erase()"