2021-12-16 12:43:29

by Mark Brown

[permalink] [raw]
Subject: linux-next: manual merge of the cifs tree with the fscache tree

Hi all,

Today's linux-next merge of the cifs tree got a conflict in:

fs/cifs/inode.c

between commit:

830c476f5eb82 ("cifs: Support fscache indexing rewrite (untested)")

from the fscache tree and commit:

68f87ec9c1ce3 ("cifs: ignore resource_id while getting fscache super cookie")

from the cifs tree.

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.

diff --cc fs/cifs/inode.c
index dc2fe76450b96,279622e4eb1c2..0000000000000
--- a/fs/cifs/inode.c
+++ b/fs/cifs/inode.c
@@@ -1372,20 -1370,6 +1367,7 @@@ iget_no_retry
iget_failed(inode);
inode = ERR_PTR(rc);
}
+
- if (!rc) {
- /*
- * The cookie is initialized from volume info returned above.
- * Inside cifs_fscache_get_super_cookie it checks
- * that we do not get super cookie twice.
- */
- rc = cifs_fscache_get_super_cookie(tcon);
- if (rc < 0) {
- iget_failed(inode);
- inode = ERR_PTR(rc);
- }
- }
-
out:
kfree(path);
free_xid(xid);


2021-12-17 19:38:15

by Steve French

[permalink] [raw]
Subject: Re: linux-next: manual merge of the cifs tree with the fscache tree

David,
This cifs fscache fix should be upstream soon, so you should be able
to update the fscache series ontop of updated kernel soon

On Thu, Dec 16, 2021 at 6:43 AM <[email protected]> wrote:
>
> Hi all,
>
> Today's linux-next merge of the cifs tree got a conflict in:
>
> fs/cifs/inode.c
>
> between commit:
>
> 830c476f5eb82 ("cifs: Support fscache indexing rewrite (untested)")
>
> from the fscache tree and commit:
>
> 68f87ec9c1ce3 ("cifs: ignore resource_id while getting fscache super cookie")
>
> from the cifs tree.
>
> 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.
>
> diff --cc fs/cifs/inode.c
> index dc2fe76450b96,279622e4eb1c2..0000000000000
> --- a/fs/cifs/inode.c
> +++ b/fs/cifs/inode.c
> @@@ -1372,20 -1370,6 +1367,7 @@@ iget_no_retry
> iget_failed(inode);
> inode = ERR_PTR(rc);
> }
> +
> - if (!rc) {
> - /*
> - * The cookie is initialized from volume info returned above.
> - * Inside cifs_fscache_get_super_cookie it checks
> - * that we do not get super cookie twice.
> - */
> - rc = cifs_fscache_get_super_cookie(tcon);
> - if (rc < 0) {
> - iget_failed(inode);
> - inode = ERR_PTR(rc);
> - }
> - }
> -
> out:
> kfree(path);
> free_xid(xid);



--
Thanks,

Steve

2021-12-17 19:47:19

by David Howells

[permalink] [raw]
Subject: Re: linux-next: manual merge of the cifs tree with the fscache tree

Steve French <[email protected]> wrote:

> This cifs fscache fix should be upstream soon, so you should be able
> to update the fscache series ontop of updated kernel soon

Thanks.

David


2021-12-19 23:46:16

by Stephen Rothwell

[permalink] [raw]
Subject: Re: linux-next: manual merge of the cifs tree with the fscache tree

Hi all,

On Thu, 16 Dec 2021 12:43:17 +0000 [email protected] wrote:
>
> Today's linux-next merge of the cifs tree got a conflict in:
>
> fs/cifs/inode.c
>
> between commit:
>
> 830c476f5eb82 ("cifs: Support fscache indexing rewrite (untested)")
>
> from the fscache tree and commit:
>
> 68f87ec9c1ce3 ("cifs: ignore resource_id while getting fscache super cookie")

This is now commit

b774302e8856 ("cifs: ignore resource_id while getting fscache super cookie")

in Linus' tree.

> from the cifs tree.
>
> diff --cc fs/cifs/inode.c
> index dc2fe76450b96,279622e4eb1c2..0000000000000
> --- a/fs/cifs/inode.c
> +++ b/fs/cifs/inode.c
> @@@ -1372,20 -1370,6 +1367,7 @@@ iget_no_retry
> iget_failed(inode);
> inode = ERR_PTR(rc);
> }
> +
> - if (!rc) {
> - /*
> - * The cookie is initialized from volume info returned above.
> - * Inside cifs_fscache_get_super_cookie it checks
> - * that we do not get super cookie twice.
> - */
> - rc = cifs_fscache_get_super_cookie(tcon);
> - if (rc < 0) {
> - iget_failed(inode);
> - inode = ERR_PTR(rc);
> - }
> - }
> -
> out:
> kfree(path);
> free_xid(xid);

so this is now a conflict between the fscache tree and Linus's tree.

--
Cheers,
Stephen Rothwell


Attachments:
(No filename) (488.00 B)
OpenPGP digital signature

2021-12-20 04:31:42

by Shyam Prasad

[permalink] [raw]
Subject: RE: [EXTERNAL] Re: linux-next: manual merge of the cifs tree with the fscache tree


-----Original Message-----
From: Stephen Rothwell <[email protected]>
Sent: Monday, December 20, 2021 5:16 AM
To: David Howells <[email protected]>
Cc: [email protected]; Steve French <[email protected]>; CIFS <[email protected]>; Linux Kernel Mailing List <[email protected]>; Linux Next Mailing List <[email protected]>; Shyam Prasad <[email protected]>; Steven French <[email protected]>
Subject: [EXTERNAL] Re: linux-next: manual merge of the cifs tree with the fscache tree

Hi all,

On Thu, 16 Dec 2021 12:43:17 +0000 [email protected] wrote:
>
> Today's linux-next merge of the cifs tree got a conflict in:
>
> fs/cifs/inode.c
>
> between commit:
>
> 830c476f5eb82 ("cifs: Support fscache indexing rewrite (untested)")
>
> from the fscache tree and commit:
>
> 68f87ec9c1ce3 ("cifs: ignore resource_id while getting fscache super cookie")

This is now commit

b774302e8856 ("cifs: ignore resource_id while getting fscache super cookie")

in Linus' tree.

> from the cifs tree.
>
> diff --cc fs/cifs/inode.c
> index dc2fe76450b96,279622e4eb1c2..0000000000000
> --- a/fs/cifs/inode.c
> +++ b/fs/cifs/inode.c
> @@@ -1372,20 -1370,6 +1367,7 @@@ iget_no_retry
> iget_failed(inode);
> inode = ERR_PTR(rc);
> }
> +
> - if (!rc) {
> - /*
> - * The cookie is initialized from volume info returned above.
> - * Inside cifs_fscache_get_super_cookie it checks
> - * that we do not get super cookie twice.
> - */
> - rc = cifs_fscache_get_super_cookie(tcon);
> - if (rc < 0) {
> - iget_failed(inode);
> - inode = ERR_PTR(rc);
> - }
> - }
> -
> out:
> kfree(path);
> free_xid(xid);

so this is now a conflict between the fscache tree and Linus's tree.

--
Cheers,
Stephen Rothwell

=================================
> so this is now a conflict between the fscache tree and Linus's tree.

Hi David and Steve,

I think one of these two branches need to be rebased. Can one of you please do it?

Regards,
Shyam

2021-12-20 06:11:46

by Stephen Rothwell

[permalink] [raw]
Subject: Re: [EXTERNAL] Re: linux-next: manual merge of the cifs tree with the fscache tree

Hi Shyam,

On Mon, 20 Dec 2021 04:31:27 +0000 Shyam Prasad <[email protected]> wrote:
>
> -----Original Message-----
> From: Stephen Rothwell <[email protected]>
> Sent: Monday, December 20, 2021 5:16 AM
> To: David Howells <[email protected]>
> Cc: [email protected]; Steve French <[email protected]>; CIFS <[email protected]>; Linux Kernel Mailing List <[email protected]>; Linux Next Mailing List <[email protected]>; Shyam Prasad <[email protected]>; Steven French <[email protected]>
> Subject: [EXTERNAL] Re: linux-next: manual merge of the cifs tree with the fscache tree
>
> Hi all,
>
> On Thu, 16 Dec 2021 12:43:17 +0000 [email protected] wrote:
> >
> > Today's linux-next merge of the cifs tree got a conflict in:
> >
> > fs/cifs/inode.c
> >
> > between commit:
> >
> > 830c476f5eb82 ("cifs: Support fscache indexing rewrite (untested)")
> >
> > from the fscache tree and commit:
> >
> > 68f87ec9c1ce3 ("cifs: ignore resource_id while getting fscache super cookie")
>
> This is now commit
>
> b774302e8856 ("cifs: ignore resource_id while getting fscache super cookie")
>
> in Linus' tree.
>
> > from the cifs tree.
> >
> > diff --cc fs/cifs/inode.c
> > index dc2fe76450b96,279622e4eb1c2..0000000000000
> > --- a/fs/cifs/inode.c
> > +++ b/fs/cifs/inode.c
> > @@@ -1372,20 -1370,6 +1367,7 @@@ iget_no_retry
> > iget_failed(inode);
> > inode = ERR_PTR(rc);
> > }
> > +
> > - if (!rc) {
> > - /*
> > - * The cookie is initialized from volume info returned above.
> > - * Inside cifs_fscache_get_super_cookie it checks
> > - * that we do not get super cookie twice.
> > - */
> > - rc = cifs_fscache_get_super_cookie(tcon);
> > - if (rc < 0) {
> > - iget_failed(inode);
> > - inode = ERR_PTR(rc);
> > - }
> > - }
> > -
> > out:
> > kfree(path);
> > free_xid(xid);
>
> so this is now a conflict between the fscache tree and Linus's tree.
>
> --
> Cheers,
> Stephen Rothwell
>
> =================================
> > so this is now a conflict between the fscache tree and Linus's tree.
>
> Hi David and Steve,
>
> I think one of these two branches need to be rebased. Can one of you please do it?

Nothing needs t be done, the conflict is trivial.

--
Cheers,
Stephen Rothwell


Attachments:
(No filename) (488.00 B)
OpenPGP digital signature