Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1327975 > unrolled thread

[RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info

Started byJohn Stultz <john.stultz@linaro.org>
First post2016-02-05 19:10 +0100
Last post2016-02-06 03:50 +0100
Articles 4 — 3 participants

Back to article view | Back to linux.kernel


Contents

  [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info John Stultz <john.stultz@linaro.org> - 2016-02-05 19:10 +0100
    Re: [RESEND x2][PATCH v2] block: partition: Add partition specific  uevent callbacks for partition info Andrew Morton <akpm@linux-foundation.org> - 2016-02-05 19:20 +0100
      Re: [RESEND x2][PATCH v2] block: partition: Add partition specific  uevent callbacks for partition info John Stultz <john.stultz@linaro.org> - 2016-02-05 20:00 +0100
        RE: [RESEND x2][PATCH v2] block: partition: Add partition specific  uevent callbacks for partition info Caizhiyong <caizhiyong@hisilicon.com> - 2016-02-06 03:50 +0100

#1327975 — [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info

FromJohn Stultz <john.stultz@linaro.org>
Date2016-02-05 19:10 +0100
Subject[RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info
Message-ID<qYSZr-3G7-5@gated-at.bofh.it>
From: San Mehat <san@google.com>

This patch has been carried in the Android tree for quite some
time and is one of the few patches required to get a mainline
kernel up and running with an exsiting Android userspace. So I
wanted to submit it for review and consideration if it should
be merged.

For partitions, add new uevent parameters 'PARTN' which
specifies the partitions index in the table, and 'PARTNAME',
which specifies PARTNAME specifices the partition name of a
partition device.

Android's userspace uses this for creating device node links from the
partition name and number: ie:
	/dev/block/platform/soc/by-name/system
or
	/dev/block/platform/soc/by-num/p1

One can see its usage here:
https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#355
and
https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#494

Cc: Jens Axboe <axboe@kernel.dk>
Cc: Rom Lemarchand <romlem@google.com>
Cc: Android Kernel Team <kernel-team@android.com>
Cc: Jeff Moyer <jmoyer@redhat.com>
Cc: harald@redhat.com
Cc: Kees Cook <keescook@chromium.org>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Kay Sievers <kay@vrfy.org>
Signed-off-by: Dima Zavin <dima@android.com>
[Dropped NPARTS and reworded commit message for context]
Signed-off-by: John Stultz <john.stultz@linaro.org>
---
v2: Dropped NPARTS thanks to Jeff noticing it wasn't used

 block/partition-generic.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/block/partition-generic.c b/block/partition-generic.c
index 746935a..ae95e96 100644
--- a/block/partition-generic.c
+++ b/block/partition-generic.c
@@ -216,10 +216,21 @@ static void part_release(struct device *dev)
 	kfree(p);
 }
 
+static int part_uevent(struct device *dev, struct kobj_uevent_env *env)
+{
+	struct hd_struct *part = dev_to_part(dev);
+
+	add_uevent_var(env, "PARTN=%u", part->partno);
+	if (part->info && part->info->volname[0])
+		add_uevent_var(env, "PARTNAME=%s", part->info->volname);
+	return 0;
+}
+
 struct device_type part_type = {
 	.name		= "partition",
 	.groups		= part_attr_groups,
 	.release	= part_release,
+	.uevent		= part_uevent,
 };
 
 static void delete_partition_rcu_cb(struct rcu_head *head)
-- 
1.9.1

[toc] | [next] | [standalone]


#1327981 — Re: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info

FromAndrew Morton <akpm@linux-foundation.org>
Date2016-02-05 19:20 +0100
SubjectRe: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info
Message-ID<qYT98-3Jt-17@gated-at.bofh.it>
In reply to#1327975
On Fri,  5 Feb 2016 10:01:43 -0800 John Stultz <john.stultz@linaro.org> wrote:

> From: San Mehat <san@google.com>
> 
> This patch has been carried in the Android tree for quite some
> time and is one of the few patches required to get a mainline
> kernel up and running with an exsiting Android userspace. So I
> wanted to submit it for review and consideration if it should
> be merged.
> 
> For partitions, add new uevent parameters 'PARTN' which
> specifies the partitions index in the table, and 'PARTNAME',
> which specifies PARTNAME specifices the partition name of a
> partition device.
> 
> Android's userspace uses this for creating device node links from the
> partition name and number: ie:
> 	/dev/block/platform/soc/by-name/system
> or
> 	/dev/block/platform/soc/by-num/p1
> 
> One can see its usage here:
> https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#355
> and
> https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#494
> 
> ...
>
> --- a/block/partition-generic.c
> +++ b/block/partition-generic.c
> @@ -216,10 +216,21 @@ static void part_release(struct device *dev)
>  	kfree(p);
>  }
>  
> +static int part_uevent(struct device *dev, struct kobj_uevent_env *env)
> +{
> +	struct hd_struct *part = dev_to_part(dev);
> +
> +	add_uevent_var(env, "PARTN=%u", part->partno);
> +	if (part->info && part->info->volname[0])
> +		add_uevent_var(env, "PARTNAME=%s", part->info->volname);
> +	return 0;
> +}
> +
>  struct device_type part_type = {
>  	.name		= "partition",
>  	.groups		= part_attr_groups,
>  	.release	= part_release,
> +	.uevent		= part_uevent,
>  };
>  
>  static void delete_partition_rcu_cb(struct rcu_head *head)

Interestingly, this feature appears to already be documented in
Documentation/block/cmdline-partition.txt.  I wonder how that happened.
Maybe we used to do this but it got taken away?

It seems bad that we don't document uevents in any organized fashion. 
But the audience is very small and knows how to find kernel source code
so I guess it doesn't matter.

Anyway, please do check that the conveniently self-adding documentation
is accurate and complete.

[toc] | [prev] | [next] | [standalone]


#1328003 — Re: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info

FromJohn Stultz <john.stultz@linaro.org>
Date2016-02-05 20:00 +0100
SubjectRe: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info
Message-ID<qYTLQ-3XC-7@gated-at.bofh.it>
In reply to#1327981
On Fri, Feb 5, 2016 at 10:18 AM, Andrew Morton
<akpm@linux-foundation.org> wrote:
> On Fri,  5 Feb 2016 10:01:43 -0800 John Stultz <john.stultz@linaro.org> wrote:
>
>> From: San Mehat <san@google.com>
>>
>> This patch has been carried in the Android tree for quite some
>> time and is one of the few patches required to get a mainline
>> kernel up and running with an exsiting Android userspace. So I
>> wanted to submit it for review and consideration if it should
>> be merged.
>>
>> For partitions, add new uevent parameters 'PARTN' which
>> specifies the partitions index in the table, and 'PARTNAME',
>> which specifies PARTNAME specifices the partition name of a
>> partition device.
>>
>> Android's userspace uses this for creating device node links from the
>> partition name and number: ie:
>>       /dev/block/platform/soc/by-name/system
>> or
>>       /dev/block/platform/soc/by-num/p1
>>
>> One can see its usage here:
>> https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#355
>> and
>> https://android.googlesource.com/platform/system/core/+/master/init/devices.cpp#494
>>
>> ...
>>
>> --- a/block/partition-generic.c
>> +++ b/block/partition-generic.c
>> @@ -216,10 +216,21 @@ static void part_release(struct device *dev)
>>       kfree(p);
>>  }
>>
>> +static int part_uevent(struct device *dev, struct kobj_uevent_env *env)
>> +{
>> +     struct hd_struct *part = dev_to_part(dev);
>> +
>> +     add_uevent_var(env, "PARTN=%u", part->partno);
>> +     if (part->info && part->info->volname[0])
>> +             add_uevent_var(env, "PARTNAME=%s", part->info->volname);
>> +     return 0;
>> +}
>> +
>>  struct device_type part_type = {
>>       .name           = "partition",
>>       .groups         = part_attr_groups,
>>       .release        = part_release,
>> +     .uevent         = part_uevent,
>>  };
>>
>>  static void delete_partition_rcu_cb(struct rcu_head *head)
>
> Interestingly, this feature appears to already be documented in
> Documentation/block/cmdline-partition.txt.  I wonder how that happened.
> Maybe we used to do this but it got taken away?

Heh. Looks like the documentation was added not too long ago (by Cai -
cc'ed). I suspect they had been working w/ the Android tree and
assumed the functionality was already upstream?

> It seems bad that we don't document uevents in any organized fashion.
> But the audience is very small and knows how to find kernel source code
> so I guess it doesn't matter.
>
> Anyway, please do check that the conveniently self-adding documentation
> is accurate and complete.

It does match the behavior this patch provides from Android. It is
somewhat tangential to the functionality described in the
documentation, so I'm not sure of its measure of completeness (for
example, it doesn't talk about PARTN parameter, but again, the
documentation is covering how to specify partition info via the boot
cmdline, and isn't really covering the uevents - the uevent was just a
mentioned side-effect for the partition name portion of the cmdline
option).

thanks
-john

[toc] | [prev] | [next] | [standalone]


#1328195 — RE: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info

FromCaizhiyong <caizhiyong@hisilicon.com>
Date2016-02-06 03:50 +0100
SubjectRE: [RESEND x2][PATCH v2] block: partition: Add partition specific uevent callbacks for partition info
Message-ID<qZ16G-LB-3@gated-at.bofh.it>
In reply to#1328003
> > Interestingly, this feature appears to already be documented in
> > Documentation/block/cmdline-partition.txt.  I wonder how that happened.
> > Maybe we used to do this but it got taken away?

This documentation talk about the partition name usages, 
my patch support get partition name from android userspace.
the mainline kernel appears does not support the 'PARTNAME' uevent, but this feature is very convenient.

> 
> Heh. Looks like the documentation was added not too long ago (by Cai -
> cc'ed). I suspect they had been working w/ the Android tree and
> assumed the functionality was already upstream?
> 
> > It seems bad that we don't document uevents in any organized fashion.
> > But the audience is very small and knows how to find kernel source code
> > so I guess it doesn't matter.
> >
> > Anyway, please do check that the conveniently self-adding documentation
> > is accurate and complete.
> 
> It does match the behavior this patch provides from Android. It is
> somewhat tangential to the functionality described in the
> documentation, so I'm not sure of its measure of completeness (for
> example, it doesn't talk about PARTN parameter, but again, the
> documentation is covering how to specify partition info via the boot
> cmdline, and isn't really covering the uevents - the uevent was just a
> mentioned side-effect for the partition name portion of the cmdline
> option).
> 
> thanks
> -john

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web