From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Rothwell Subject: Re: linux-next: manual merge of the vfs tree with the fscrypt tree Date: Wed, 8 May 2019 11:04:04 +1000 Message-ID: <20190508110404.1e9f823e@canb.auug.org.au> References: <20190503110951.2df97b8c@canb.auug.org.au> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/6Td3SDucDvHsj3+BWYMfs7e"; protocol="application/pgp-signature" Return-path: In-Reply-To: <20190503110951.2df97b8c@canb.auug.org.au> Sender: linux-kernel-owner@vger.kernel.org To: Theodore Ts'o , Eric Biggers Cc: Al Viro , Linux Next Mailing List , Linux Kernel Mailing List List-Id: linux-next.vger.kernel.org --Sig_/6Td3SDucDvHsj3+BWYMfs7e Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Hi all, On Fri, 3 May 2019 11:09:51 +1000 Stephen Rothwell w= rote: > > Today's linux-next merge of the vfs tree got a conflict in: >=20 > fs/ext4/super.c > fs/f2fs/super.c >=20 > between commit: >=20 > 2c58d548f570 ("fscrypt: cache decrypted symlink target in ->i_link") >=20 > from the fscrypt tree and commits: >=20 > 94053139d482 ("ext4: make use of ->free_inode()") > d01718a050d0 ("f2fs: switch to ->free_inode()") >=20 > from the vfs tree. >=20 > I fixed it up (see below) and can carry the fix as necessary. This > is now fixed as far as linux-next is concerned, but any non trivial > conflicts should be mentioned to your upstream maintainer when your tree > is submitted for merging. You may also want to consider cooperating > with the maintainer of the conflicting tree to minimise any particularly > complex conflicts. >=20 > Thanks, Al, for the heads up and example merge. >=20 > --=20 > Cheers, > Stephen Rothwell >=20 > diff --cc fs/ext4/super.c > index 489cdeeab789,981f702848e7..000000000000 > --- a/fs/ext4/super.c > +++ b/fs/ext4/super.c > @@@ -1111,12 -1107,8 +1111,9 @@@ static int ext4_drop_inode(struct inod > return drop; > } > =20 > - static void ext4_i_callback(struct rcu_head *head) > + static void ext4_free_in_core_inode(struct inode *inode) > { > - struct inode *inode =3D container_of(head, struct inode, i_rcu); > -=20 > + fscrypt_free_inode(inode); > -=20 > kmem_cache_free(ext4_inode_cachep, EXT4_I(inode)); > } > =20 > diff --cc fs/f2fs/super.c > index f7605b3ff1f9,9924eac76254..000000000000 > --- a/fs/f2fs/super.c > +++ b/fs/f2fs/super.c > @@@ -1000,12 -1000,8 +1000,9 @@@ static void f2fs_dirty_inode(struct ino > f2fs_inode_dirtied(inode, false); > } > =20 > - static void f2fs_i_callback(struct rcu_head *head) > + static void f2fs_free_inode(struct inode *inode) > { > - struct inode *inode =3D container_of(head, struct inode, i_rcu); > -=20 > + fscrypt_free_inode(inode); > -=20 > kmem_cache_free(f2fs_inode_cachep, F2FS_I(inode)); > } > =20 This is now a conflict between the fscrypt tree and Linus' tree. --=20 Cheers, Stephen Rothwell --Sig_/6Td3SDucDvHsj3+BWYMfs7e Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEENIC96giZ81tWdLgKAVBC80lX0GwFAlzSKwQACgkQAVBC80lX 0Gw/9gf/fHsJodGjCS6j7dxLcZX0XPCyx1oirunp3jw3JtZdfMce1pYaHKyOhFr/ rMUl1+i/0+JtJU5R5dIwfA3+mQvDTyNERgAjloHHMQeKNj59GTAA2CC/YgmE8NX9 UOshFr3jhhDCCinrruespZvQX5wHJ2fY5L+nokhq4sbnbm2hj/A0XeDspLmka5D8 fFikoQDBa/Y0pVjLphSkm/Do06ZaksAecrLjD4liCCEmJwXS6oepWvBSgrXZ0RNy iAmaLid5msoQCjF3wClN8YNEpaItMJ6kXOikLM/+B7Couc+IcWVbACQ4nc/tz4Nx GwqXd2Rvay6O5aM/up0/vG5FJdDStA== =aVsW -----END PGP SIGNATURE----- --Sig_/6Td3SDucDvHsj3+BWYMfs7e--