2018-07-23 05:13:31

by Stephen Rothwell

[permalink] [raw]
Subject: linux-next: manual merge of the driver-core tree with the net-next tree

Hi Greg,

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

fs/sysfs/group.c

between commit:

5f81880d5204 ("sysfs, kobject: allow creating kobject belonging to arbitrary users")

from the net-next tree and commit:

c855cf2759d2 ("sysfs: Fix internal_create_group() for named group updates")

from the driver-core tree.

I fixed it up (I think - 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.

--
Cheers,
Stephen Rothwell

diff --cc fs/sysfs/group.c
index c7a716c4acc9,38240410f831..000000000000
--- a/fs/sysfs/group.c
+++ b/fs/sysfs/group.c
@@@ -122,15 -118,23 +122,24 @@@ static int internal_create_group(struc
kobj->name, grp->name ?: "");
return -EINVAL;
}
+ kobject_get_ownership(kobj, &uid, &gid);
if (grp->name) {
- kn = kernfs_create_dir_ns(kobj->sd, grp->name,
- S_IRWXU | S_IRUGO | S_IXUGO,
- uid, gid, kobj, NULL);
- if (IS_ERR(kn)) {
- if (PTR_ERR(kn) == -EEXIST)
- sysfs_warn_dup(kobj->sd, grp->name);
- return PTR_ERR(kn);
+ if (update) {
+ kn = kernfs_find_and_get(kobj->sd, grp->name);
+ if (!kn) {
+ pr_warn("Can't update unknown attr grp name: %s/%s\n",
+ kobj->name, grp->name);
+ return -EINVAL;
+ }
+ } else {
- kn = kernfs_create_dir(kobj->sd, grp->name,
- S_IRWXU | S_IRUGO | S_IXUGO,
- kobj);
++ kn = kernfs_create_dir_ns(kobj->sd, grp->name,
++ S_IRWXU | S_IRUGO | S_IXUGO,
++ uid, gid, kobj, NULL);
+ if (IS_ERR(kn)) {
+ if (PTR_ERR(kn) == -EEXIST)
+ sysfs_warn_dup(kobj->sd, grp->name);
+ return PTR_ERR(kn);
+ }
}
} else
kn = kobj->sd;


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

2018-07-23 06:21:54

by Greg KH

[permalink] [raw]
Subject: Re: linux-next: manual merge of the driver-core tree with the net-next tree

On Mon, Jul 23, 2018 at 03:12:24PM +1000, Stephen Rothwell wrote:
> Hi Greg,
>
> Today's linux-next merge of the driver-core tree got a conflict in:
>
> fs/sysfs/group.c
>
> between commit:
>
> 5f81880d5204 ("sysfs, kobject: allow creating kobject belonging to arbitrary users")
>
> from the net-next tree and commit:
>
> c855cf2759d2 ("sysfs: Fix internal_create_group() for named group updates")
>
> from the driver-core tree.
>
> I fixed it up (I think - 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.
>
> --
> Cheers,
> Stephen Rothwell
>
> diff --cc fs/sysfs/group.c
> index c7a716c4acc9,38240410f831..000000000000
> --- a/fs/sysfs/group.c
> +++ b/fs/sysfs/group.c
> @@@ -122,15 -118,23 +122,24 @@@ static int internal_create_group(struc
> kobj->name, grp->name ?: "");
> return -EINVAL;
> }
> + kobject_get_ownership(kobj, &uid, &gid);
> if (grp->name) {
> - kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> - S_IRWXU | S_IRUGO | S_IXUGO,
> - uid, gid, kobj, NULL);
> - if (IS_ERR(kn)) {
> - if (PTR_ERR(kn) == -EEXIST)
> - sysfs_warn_dup(kobj->sd, grp->name);
> - return PTR_ERR(kn);
> + if (update) {
> + kn = kernfs_find_and_get(kobj->sd, grp->name);
> + if (!kn) {
> + pr_warn("Can't update unknown attr grp name: %s/%s\n",
> + kobj->name, grp->name);
> + return -EINVAL;
> + }
> + } else {
> - kn = kernfs_create_dir(kobj->sd, grp->name,
> - S_IRWXU | S_IRUGO | S_IXUGO,
> - kobj);
> ++ kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> ++ S_IRWXU | S_IRUGO | S_IXUGO,
> ++ uid, gid, kobj, NULL);
> + if (IS_ERR(kn)) {
> + if (PTR_ERR(kn) == -EEXIST)
> + sysfs_warn_dup(kobj->sd, grp->name);
> + return PTR_ERR(kn);
> + }
> }
> } else
> kn = kobj->sd;


I think this is correct. Rajat, can you verify it please?

thanks,

greg k-h

2018-08-16 01:25:40

by Stephen Rothwell

[permalink] [raw]
Subject: Re: linux-next: manual merge of the driver-core tree with the net-next tree

Hi all,

On Mon, 23 Jul 2018 08:20:46 +0200 Greg KH <[email protected]> wrote:
>
> On Mon, Jul 23, 2018 at 03:12:24PM +1000, Stephen Rothwell wrote:
> >
> > Today's linux-next merge of the driver-core tree got a conflict in:
> >
> > fs/sysfs/group.c
> >
> > between commit:
> >
> > 5f81880d5204 ("sysfs, kobject: allow creating kobject belonging to arbitrary users")
> >
> > from the net-next tree and commit:
> >
> > c855cf2759d2 ("sysfs: Fix internal_create_group() for named group updates")
> >
> > from the driver-core tree.
> >
> > I fixed it up (I think - 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.
> >
> > --
> > Cheers,
> > Stephen Rothwell
> >
> > diff --cc fs/sysfs/group.c
> > index c7a716c4acc9,38240410f831..000000000000
> > --- a/fs/sysfs/group.c
> > +++ b/fs/sysfs/group.c
> > @@@ -122,15 -118,23 +122,24 @@@ static int internal_create_group(struc
> > kobj->name, grp->name ?: "");
> > return -EINVAL;
> > }
> > + kobject_get_ownership(kobj, &uid, &gid);
> > if (grp->name) {
> > - kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> > - S_IRWXU | S_IRUGO | S_IXUGO,
> > - uid, gid, kobj, NULL);
> > - if (IS_ERR(kn)) {
> > - if (PTR_ERR(kn) == -EEXIST)
> > - sysfs_warn_dup(kobj->sd, grp->name);
> > - return PTR_ERR(kn);
> > + if (update) {
> > + kn = kernfs_find_and_get(kobj->sd, grp->name);
> > + if (!kn) {
> > + pr_warn("Can't update unknown attr grp name: %s/%s\n",
> > + kobj->name, grp->name);
> > + return -EINVAL;
> > + }
> > + } else {
> > - kn = kernfs_create_dir(kobj->sd, grp->name,
> > - S_IRWXU | S_IRUGO | S_IXUGO,
> > - kobj);
> > ++ kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> > ++ S_IRWXU | S_IRUGO | S_IXUGO,
> > ++ uid, gid, kobj, NULL);
> > + if (IS_ERR(kn)) {
> > + if (PTR_ERR(kn) == -EEXIST)
> > + sysfs_warn_dup(kobj->sd, grp->name);
> > + return PTR_ERR(kn);
> > + }
> > }
> > } else
> > kn = kobj->sd;
>
>
> I think this is correct. Rajat, can you verify it please?

This is now a conflict between Linus' tree and the driver-core tree.
--
Cheers,
Stephen Rothwell


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

2018-08-16 03:17:21

by Rajat Jain

[permalink] [raw]
Subject: Re: linux-next: manual merge of the driver-core tree with the net-next tree

On Wed, Aug 15, 2018 at 4:43 PM Stephen Rothwell <[email protected]> wrote:
>
> Hi all,
>
> On Mon, 23 Jul 2018 08:20:46 +0200 Greg KH <[email protected]> wrote:
> >
> > On Mon, Jul 23, 2018 at 03:12:24PM +1000, Stephen Rothwell wrote:
> > >
> > > Today's linux-next merge of the driver-core tree got a conflict in:
> > >
> > > fs/sysfs/group.c
> > >
> > > between commit:
> > >
> > > 5f81880d5204 ("sysfs, kobject: allow creating kobject belonging to arbitrary users")
> > >
> > > from the net-next tree and commit:
> > >
> > > c855cf2759d2 ("sysfs: Fix internal_create_group() for named group updates")
> > >
> > > from the driver-core tree.
> > >
> > > I fixed it up (I think - 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.
> > >
> > > --
> > > Cheers,
> > > Stephen Rothwell
> > >
> > > diff --cc fs/sysfs/group.c
> > > index c7a716c4acc9,38240410f831..000000000000
> > > --- a/fs/sysfs/group.c
> > > +++ b/fs/sysfs/group.c
> > > @@@ -122,15 -118,23 +122,24 @@@ static int internal_create_group(struc
> > > kobj->name, grp->name ?: "");
> > > return -EINVAL;
> > > }
> > > + kobject_get_ownership(kobj, &uid, &gid);
> > > if (grp->name) {
> > > - kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> > > - S_IRWXU | S_IRUGO | S_IXUGO,
> > > - uid, gid, kobj, NULL);
> > > - if (IS_ERR(kn)) {
> > > - if (PTR_ERR(kn) == -EEXIST)
> > > - sysfs_warn_dup(kobj->sd, grp->name);
> > > - return PTR_ERR(kn);
> > > + if (update) {
> > > + kn = kernfs_find_and_get(kobj->sd, grp->name);
> > > + if (!kn) {
> > > + pr_warn("Can't update unknown attr grp name: %s/%s\n",
> > > + kobj->name, grp->name);
> > > + return -EINVAL;
> > > + }
> > > + } else {
> > > - kn = kernfs_create_dir(kobj->sd, grp->name,
> > > - S_IRWXU | S_IRUGO | S_IXUGO,
> > > - kobj);
> > > ++ kn = kernfs_create_dir_ns(kobj->sd, grp->name,
> > > ++ S_IRWXU | S_IRUGO | S_IXUGO,
> > > ++ uid, gid, kobj, NULL);
> > > + if (IS_ERR(kn)) {
> > > + if (PTR_ERR(kn) == -EEXIST)
> > > + sysfs_warn_dup(kobj->sd, grp->name);
> > > + return PTR_ERR(kn);
> > > + }
> > > }
> > > } else
> > > kn = kobj->sd;
> >
> >
> > I think this is correct. Rajat, can you verify it please?

Sorry, I saw this very late. Yes, this is correct.

>
>
> This is now a conflict between Linus' tree and the driver-core tree.

Greg, please let me know if there is anything I need to do about this.

Thanks & Best Regards,

Rajat

> --
> Cheers,
> Stephen Rothwell