All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] include: linux: pid: Update documentation.
       [not found] <cover.1490516333.git.rvarsha016@gmail.com>
@ 2017-03-26 10:04 ` Varsha Rao
  2017-03-26 10:49   ` [Outreachy kernel] " Julia Lawall
  2017-03-26 10:05 ` [PATCH 2/5] include: linux: pid: Move open brace to previous line Varsha Rao
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 10:04 UTC (permalink / raw)
  To: mawilcox; +Cc: outreachy-kernel

This patch adds comments to update documentation. Also remove extra
space between full stop and and new sentence, of existing comments.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 include/linux/pid.h | 43 ++++++++++++++++++++++++++++++++-----------
 1 file changed, 32 insertions(+), 11 deletions(-)

diff --git a/include/linux/pid.h b/include/linux/pid.h
index 4d17931..c2bea47 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -5,32 +5,32 @@
 
 enum pid_type
 {
-	PIDTYPE_PID,
-	PIDTYPE_PGID,
-	PIDTYPE_SID,
-	PIDTYPE_MAX
+	PIDTYPE_PID, /* Process ID */
+	PIDTYPE_PGID, /* Process group ID */
+	PIDTYPE_SID, /* Process session ID */
+	PIDTYPE_MAX /* Number of ID types */
 };
 
 /*
  * What is struct pid?
  *
  * A struct pid is the kernel's internal notion of a process identifier.
- * It refers to individual tasks, process groups, and sessions.  While
+ * It refers to individual tasks, process groups, and sessions. While
  * there are processes attached to it the struct pid lives in a hash
  * table, so it and then the processes that it refers to can be found
- * quickly from the numeric pid value.  The attached processes may be
+ * quickly from the numeric pid value. The attached processes may be
  * quickly accessed by following pointers from struct pid.
  *
  * Storing pid_t values in the kernel and referring to them later has a
- * problem.  The process originally with that pid may have exited and the
+ * problem. The process originally with that pid may have exited and the
  * pid allocator wrapped, and another process could have come along
  * and been assigned that pid.
  *
  * Referring to user space processes by holding a reference to struct
- * task_struct has a problem.  When the user space process exits
- * the now useless task_struct is still kept.  A task_struct plus a
- * stack consumes around 10K of low kernel memory.  More precisely
- * this is THREAD_SIZE + sizeof(struct task_struct).  By comparison
+ * task_struct has a problem. When the user space process exits
+ * the now useless task_struct is still kept. A task_struct plus a
+ * stack consumes around 10K of low kernel memory. More precisely
+ * this is THREAD_SIZE + sizeof(struct task_struct). By comparison
  * a struct pid is about 64 bytes.
  *
  * Holding a reference to struct pid solves both of these problems.
@@ -45,6 +45,10 @@ enum pid_type
  * struct upid is used to get the id of the struct pid, as it is
  * seen in particular namespace. Later the struct pid is found with
  * find_pid_ns() using the int nr and struct pid_namespace *ns.
+ *
+ * @nr: Pid value.
+ * @ns: Represents the namespace to which pid value belongs.
+ * @pid_chain: Hash chain.
  */
 
 struct upid {
@@ -54,6 +58,15 @@ struct upid {
 	struct hlist_node pid_chain;
 };
 
+/*
+ * struct pid
+ * @count: Reference counter.
+ * @level: Number of namespaces in which the process is visible.
+ * @tasks: Lists of tasks.
+ * @rcu: RCU helper.
+ * @numbers: Instance of upid for each level.
+ */
+
 struct pid
 {
 	atomic_t count;
@@ -66,12 +79,20 @@ struct pid
 
 extern struct pid init_struct_pid;
 
+/*
+ * struct pid_link is used for per process linkage into hash tables.
+ * @node: List element.
+ * @pid: Pointer to the struct pid of the process.
+ */
 struct pid_link
 {
 	struct hlist_node node;
 	struct pid *pid;
 };
 
+/* get_pid() checks availability of process id and if available assigns
+ * process ID.
+ */
 static inline struct pid *get_pid(struct pid *pid)
 {
 	if (pid)
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 2/5] include: linux: pid: Move open brace to previous line.
       [not found] <cover.1490516333.git.rvarsha016@gmail.com>
  2017-03-26 10:04 ` [PATCH 1/5] include: linux: pid: Update documentation Varsha Rao
@ 2017-03-26 10:05 ` Varsha Rao
  2017-03-26 10:06 ` [PATCH 3/5] include: linux: pid: Add identifier to function definition argument Varsha Rao
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 10:05 UTC (permalink / raw)
  To: mawilcox; +Cc: outreachy-kernel

Move open braces to the same line, as that of struct and enum. This patch fixes
the checkpatch issue.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 include/linux/pid.h | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/include/linux/pid.h b/include/linux/pid.h
index c2bea47..a465173 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -3,8 +3,7 @@
 
 #include <linux/rculist.h>
 
-enum pid_type
-{
+enum pid_type {
 	PIDTYPE_PID, /* Process ID */
 	PIDTYPE_PGID, /* Process group ID */
 	PIDTYPE_SID, /* Process session ID */
@@ -67,8 +66,7 @@ struct upid {
  * @numbers: Instance of upid for each level.
  */
 
-struct pid
-{
+struct pid {
 	atomic_t count;
 	unsigned int level;
 	/* lists of tasks that use this pid */
@@ -84,8 +82,7 @@ extern struct pid init_struct_pid;
  * @node: List element.
  * @pid: Pointer to the struct pid of the process.
  */
-struct pid_link
-{
+struct pid_link {
 	struct hlist_node node;
 	struct pid *pid;
 };
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 3/5] include: linux: pid: Add identifier to function definition argument.
       [not found] <cover.1490516333.git.rvarsha016@gmail.com>
  2017-03-26 10:04 ` [PATCH 1/5] include: linux: pid: Update documentation Varsha Rao
  2017-03-26 10:05 ` [PATCH 2/5] include: linux: pid: Move open brace to previous line Varsha Rao
@ 2017-03-26 10:06 ` Varsha Rao
  2017-03-26 10:07 ` [PATCH 4/5] include: linux: pid: Add a blank line after declarations Varsha Rao
  2017-03-26 10:08 ` [PATCH 5/5] include: linux: pid: Remove space before tabs Varsha Rao
  4 siblings, 0 replies; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 10:06 UTC (permalink / raw)
  To: mawilcox; +Cc: outreachy-kernel

Add ns as the identifier to function definition argument struct
pid_namespace and this patch fixes the checkpatch issue.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 include/linux/pid.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/pid.h b/include/linux/pid.h
index a465173..b450100 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -132,7 +132,7 @@ extern struct pid *find_vpid(int nr);
  * Lookup a PID in the hash table, and return with it's count elevated.
  */
 extern struct pid *find_get_pid(int nr);
-extern struct pid *find_ge_pid(int nr, struct pid_namespace *);
+extern struct pid *find_ge_pid(int nr, struct pid_namespace *ns);
 int next_pidmap(struct pid_namespace *pid_ns, unsigned int last);
 
 extern struct pid *alloc_pid(struct pid_namespace *ns);
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 4/5] include: linux: pid: Add a blank line after declarations.
       [not found] <cover.1490516333.git.rvarsha016@gmail.com>
                   ` (2 preceding siblings ...)
  2017-03-26 10:06 ` [PATCH 3/5] include: linux: pid: Add identifier to function definition argument Varsha Rao
@ 2017-03-26 10:07 ` Varsha Rao
  2017-03-26 10:08 ` [PATCH 5/5] include: linux: pid: Remove space before tabs Varsha Rao
  4 siblings, 0 replies; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 10:07 UTC (permalink / raw)
  To: mawilcox; +Cc: outreachy-kernel

Add a blank line after declarations and this patch fixes the checkpatch
issue.

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 include/linux/pid.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/linux/pid.h b/include/linux/pid.h
index b450100..1de53e8 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -152,6 +152,7 @@ extern void disable_pid_allocation(struct pid_namespace *ns);
 static inline struct pid_namespace *ns_of_pid(struct pid *pid)
 {
 	struct pid_namespace *ns = NULL;
+
 	if (pid)
 		ns = pid->numbers[pid->level].ns;
 	return ns;
@@ -182,6 +183,7 @@ static inline bool is_child_reaper(struct pid *pid)
 static inline pid_t pid_nr(struct pid *pid)
 {
 	pid_t nr = 0;
+
 	if (pid)
 		nr = pid->numbers[0].nr;
 	return nr;
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 5/5] include: linux: pid: Remove space before tabs.
       [not found] <cover.1490516333.git.rvarsha016@gmail.com>
                   ` (3 preceding siblings ...)
  2017-03-26 10:07 ` [PATCH 4/5] include: linux: pid: Add a blank line after declarations Varsha Rao
@ 2017-03-26 10:08 ` Varsha Rao
  4 siblings, 0 replies; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 10:08 UTC (permalink / raw)
  To: mawilcox; +Cc: outreachy-kernel

Remove space before tabs. This patch fixes the following checkpatch
issue:

WARNING: please, no space before tabs

Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
---
 include/linux/pid.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/linux/pid.h b/include/linux/pid.h
index 1de53e8..43acbd4 100644
--- a/include/linux/pid.h
+++ b/include/linux/pid.h
@@ -144,10 +144,10 @@ extern void disable_pid_allocation(struct pid_namespace *ns);
  * allocated.
  *
  * NOTE:
- * 	ns_of_pid() is expected to be called for a process (task) that has
- * 	an attached 'struct pid' (see attach_pid(), detach_pid()) i.e @pid
- * 	is expected to be non-NULL. If @pid is NULL, caller should handle
- * 	the resulting NULL pid-ns.
+ *	ns_of_pid() is expected to be called for a process (task) that has
+ *	an attached 'struct pid' (see attach_pid(), detach_pid()) i.e @pid
+ *	is expected to be non-NULL. If @pid is NULL, caller should handle
+ *	the resulting NULL pid-ns.
  */
 static inline struct pid_namespace *ns_of_pid(struct pid *pid)
 {
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [Outreachy kernel] [PATCH 1/5] include: linux: pid: Update documentation.
  2017-03-26 10:04 ` [PATCH 1/5] include: linux: pid: Update documentation Varsha Rao
@ 2017-03-26 10:49   ` Julia Lawall
  2017-03-26 13:52     ` Matthew Wilcox
  0 siblings, 1 reply; 8+ messages in thread
From: Julia Lawall @ 2017-03-26 10:49 UTC (permalink / raw)
  To: Varsha Rao; +Cc: mawilcox, outreachy-kernel



On Sun, 26 Mar 2017, Varsha Rao wrote:

> This patch adds comments to update documentation. Also remove extra
> space between full stop and and new sentence, of existing comments.

Actually, at least in American English, a period should be followed by two
spaces.  Like in this email :)

julia

>
> Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
> ---
>  include/linux/pid.h | 43 ++++++++++++++++++++++++++++++++-----------
>  1 file changed, 32 insertions(+), 11 deletions(-)
>
> diff --git a/include/linux/pid.h b/include/linux/pid.h
> index 4d17931..c2bea47 100644
> --- a/include/linux/pid.h
> +++ b/include/linux/pid.h
> @@ -5,32 +5,32 @@
>
>  enum pid_type
>  {
> -	PIDTYPE_PID,
> -	PIDTYPE_PGID,
> -	PIDTYPE_SID,
> -	PIDTYPE_MAX
> +	PIDTYPE_PID, /* Process ID */
> +	PIDTYPE_PGID, /* Process group ID */
> +	PIDTYPE_SID, /* Process session ID */
> +	PIDTYPE_MAX /* Number of ID types */
>  };
>
>  /*
>   * What is struct pid?
>   *
>   * A struct pid is the kernel's internal notion of a process identifier.
> - * It refers to individual tasks, process groups, and sessions.  While
> + * It refers to individual tasks, process groups, and sessions. While
>   * there are processes attached to it the struct pid lives in a hash
>   * table, so it and then the processes that it refers to can be found
> - * quickly from the numeric pid value.  The attached processes may be
> + * quickly from the numeric pid value. The attached processes may be
>   * quickly accessed by following pointers from struct pid.
>   *
>   * Storing pid_t values in the kernel and referring to them later has a
> - * problem.  The process originally with that pid may have exited and the
> + * problem. The process originally with that pid may have exited and the
>   * pid allocator wrapped, and another process could have come along
>   * and been assigned that pid.
>   *
>   * Referring to user space processes by holding a reference to struct
> - * task_struct has a problem.  When the user space process exits
> - * the now useless task_struct is still kept.  A task_struct plus a
> - * stack consumes around 10K of low kernel memory.  More precisely
> - * this is THREAD_SIZE + sizeof(struct task_struct).  By comparison
> + * task_struct has a problem. When the user space process exits
> + * the now useless task_struct is still kept. A task_struct plus a
> + * stack consumes around 10K of low kernel memory. More precisely
> + * this is THREAD_SIZE + sizeof(struct task_struct). By comparison
>   * a struct pid is about 64 bytes.
>   *
>   * Holding a reference to struct pid solves both of these problems.
> @@ -45,6 +45,10 @@ enum pid_type
>   * struct upid is used to get the id of the struct pid, as it is
>   * seen in particular namespace. Later the struct pid is found with
>   * find_pid_ns() using the int nr and struct pid_namespace *ns.
> + *
> + * @nr: Pid value.
> + * @ns: Represents the namespace to which pid value belongs.
> + * @pid_chain: Hash chain.
>   */
>
>  struct upid {
> @@ -54,6 +58,15 @@ struct upid {
>  	struct hlist_node pid_chain;
>  };
>
> +/*
> + * struct pid
> + * @count: Reference counter.
> + * @level: Number of namespaces in which the process is visible.
> + * @tasks: Lists of tasks.
> + * @rcu: RCU helper.
> + * @numbers: Instance of upid for each level.
> + */
> +
>  struct pid
>  {
>  	atomic_t count;
> @@ -66,12 +79,20 @@ struct pid
>
>  extern struct pid init_struct_pid;
>
> +/*
> + * struct pid_link is used for per process linkage into hash tables.
> + * @node: List element.
> + * @pid: Pointer to the struct pid of the process.
> + */
>  struct pid_link
>  {
>  	struct hlist_node node;
>  	struct pid *pid;
>  };
>
> +/* get_pid() checks availability of process id and if available assigns
> + * process ID.
> + */
>  static inline struct pid *get_pid(struct pid *pid)
>  {
>  	if (pid)
> --
> 2.9.3
>
> --
> You received this message because you are subscribed to the Google Groups "outreachy-kernel" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to outreachy-kernel+unsubscribe@googlegroups.com.
> To post to this group, send email to outreachy-kernel@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/outreachy-kernel/58d79225.1bd1620a.579a7.5a9d%40mx.google.com.
> For more options, visit https://groups.google.com/d/optout.
>


^ permalink raw reply	[flat|nested] 8+ messages in thread

* RE: [Outreachy kernel] [PATCH 1/5] include: linux: pid: Update documentation.
  2017-03-26 10:49   ` [Outreachy kernel] " Julia Lawall
@ 2017-03-26 13:52     ` Matthew Wilcox
  2017-03-26 14:10       ` Varsha Rao
  0 siblings, 1 reply; 8+ messages in thread
From: Matthew Wilcox @ 2017-03-26 13:52 UTC (permalink / raw)
  To: Julia Lawall, Varsha Rao; +Cc: outreachy-kernel

It's not a hard and fast rule in any English dialect.  I always double-space after a full stop, but there are various style manuals that prohibit it, and others that require it.  Typesetters (amateur and professional) disagree intensely on it.  We should not change what the original author has done.

> -----Original Message-----
> From: Julia Lawall [mailto:julia.lawall@lip6.fr]
> Sent: Sunday, March 26, 2017 6:50 AM
> To: Varsha Rao <rvarsha016@gmail.com>
> Cc: Matthew Wilcox <mawilcox@microsoft.com>; outreachy-kernel
> <outreachy-kernel@googlegroups.com>
> Subject: Re: [Outreachy kernel] [PATCH 1/5] include: linux: pid: Update
> documentation.
> 
> 
> 
> On Sun, 26 Mar 2017, Varsha Rao wrote:
> 
> > This patch adds comments to update documentation. Also remove extra
> > space between full stop and and new sentence, of existing comments.
> 
> Actually, at least in American English, a period should be followed by two
> spaces.  Like in this email :)
> 
> julia
> 
> >
> > Signed-off-by: Varsha Rao <rvarsha016@gmail.com>
> > ---
> >  include/linux/pid.h | 43 ++++++++++++++++++++++++++++++++-----------
> >  1 file changed, 32 insertions(+), 11 deletions(-)
> >
> > diff --git a/include/linux/pid.h b/include/linux/pid.h
> > index 4d17931..c2bea47 100644
> > --- a/include/linux/pid.h
> > +++ b/include/linux/pid.h
> > @@ -5,32 +5,32 @@
> >
> >  enum pid_type
> >  {
> > -	PIDTYPE_PID,
> > -	PIDTYPE_PGID,
> > -	PIDTYPE_SID,
> > -	PIDTYPE_MAX
> > +	PIDTYPE_PID, /* Process ID */
> > +	PIDTYPE_PGID, /* Process group ID */
> > +	PIDTYPE_SID, /* Process session ID */
> > +	PIDTYPE_MAX /* Number of ID types */
> >  };
> >
> >  /*
> >   * What is struct pid?
> >   *
> >   * A struct pid is the kernel's internal notion of a process identifier.
> > - * It refers to individual tasks, process groups, and sessions.  While
> > + * It refers to individual tasks, process groups, and sessions. While
> >   * there are processes attached to it the struct pid lives in a hash
> >   * table, so it and then the processes that it refers to can be found
> > - * quickly from the numeric pid value.  The attached processes may be
> > + * quickly from the numeric pid value. The attached processes may be
> >   * quickly accessed by following pointers from struct pid.
> >   *
> >   * Storing pid_t values in the kernel and referring to them later has a
> > - * problem.  The process originally with that pid may have exited and the
> > + * problem. The process originally with that pid may have exited and the
> >   * pid allocator wrapped, and another process could have come along
> >   * and been assigned that pid.
> >   *
> >   * Referring to user space processes by holding a reference to struct
> > - * task_struct has a problem.  When the user space process exits
> > - * the now useless task_struct is still kept.  A task_struct plus a
> > - * stack consumes around 10K of low kernel memory.  More precisely
> > - * this is THREAD_SIZE + sizeof(struct task_struct).  By comparison
> > + * task_struct has a problem. When the user space process exits
> > + * the now useless task_struct is still kept. A task_struct plus a
> > + * stack consumes around 10K of low kernel memory. More precisely
> > + * this is THREAD_SIZE + sizeof(struct task_struct). By comparison
> >   * a struct pid is about 64 bytes.
> >   *
> >   * Holding a reference to struct pid solves both of these problems.
> > @@ -45,6 +45,10 @@ enum pid_type
> >   * struct upid is used to get the id of the struct pid, as it is
> >   * seen in particular namespace. Later the struct pid is found with
> >   * find_pid_ns() using the int nr and struct pid_namespace *ns.
> > + *
> > + * @nr: Pid value.
> > + * @ns: Represents the namespace to which pid value belongs.
> > + * @pid_chain: Hash chain.
> >   */
> >
> >  struct upid {
> > @@ -54,6 +58,15 @@ struct upid {
> >  	struct hlist_node pid_chain;
> >  };
> >
> > +/*
> > + * struct pid
> > + * @count: Reference counter.
> > + * @level: Number of namespaces in which the process is visible.
> > + * @tasks: Lists of tasks.
> > + * @rcu: RCU helper.
> > + * @numbers: Instance of upid for each level.
> > + */
> > +
> >  struct pid
> >  {
> >  	atomic_t count;
> > @@ -66,12 +79,20 @@ struct pid
> >
> >  extern struct pid init_struct_pid;
> >
> > +/*
> > + * struct pid_link is used for per process linkage into hash tables.
> > + * @node: List element.
> > + * @pid: Pointer to the struct pid of the process.
> > + */
> >  struct pid_link
> >  {
> >  	struct hlist_node node;
> >  	struct pid *pid;
> >  };
> >
> > +/* get_pid() checks availability of process id and if available assigns
> > + * process ID.
> > + */
> >  static inline struct pid *get_pid(struct pid *pid)
> >  {
> >  	if (pid)
> > --
> > 2.9.3
> >
> > --
> > You received this message because you are subscribed to the Google Groups
> "outreachy-kernel" group.
> > To unsubscribe from this group and stop receiving emails from it, send an
> email to outreachy-kernel+unsubscribe@googlegroups.com.
> > To post to this group, send email to outreachy-kernel@googlegroups.com.
> > To view this discussion on the web visit
> https://groups.google.com/d/msgid/outreachy-
> kernel/58d79225.1bd1620a.579a7.5a9d%40mx.google.com.
> > For more options, visit https://groups.google.com/d/optout.
> >

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [Outreachy kernel] [PATCH 1/5] include: linux: pid: Update documentation.
  2017-03-26 13:52     ` Matthew Wilcox
@ 2017-03-26 14:10       ` Varsha Rao
  0 siblings, 0 replies; 8+ messages in thread
From: Varsha Rao @ 2017-03-26 14:10 UTC (permalink / raw)
  To: outreachy-kernel; +Cc: julia.lawall, rvarsha016, mawilcox


[-- Attachment #1.1: Type: text/plain, Size: 389 bytes --]



> It's not a hard and fast rule in any English dialect.  I always 
> double-space after a full stop, but there are various style manuals that 
> prohibit it, and others that require it.  Typesetters (amateur and 
> professional) disagree intensely on it.  We should not change what the 
> original author has done. 


   Okay. I'll send the revised patchset.

   Regards,
   Varsha Rao 

[-- Attachment #1.2: Type: text/html, Size: 569 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-03-26 14:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <cover.1490516333.git.rvarsha016@gmail.com>
2017-03-26 10:04 ` [PATCH 1/5] include: linux: pid: Update documentation Varsha Rao
2017-03-26 10:49   ` [Outreachy kernel] " Julia Lawall
2017-03-26 13:52     ` Matthew Wilcox
2017-03-26 14:10       ` Varsha Rao
2017-03-26 10:05 ` [PATCH 2/5] include: linux: pid: Move open brace to previous line Varsha Rao
2017-03-26 10:06 ` [PATCH 3/5] include: linux: pid: Add identifier to function definition argument Varsha Rao
2017-03-26 10:07 ` [PATCH 4/5] include: linux: pid: Add a blank line after declarations Varsha Rao
2017-03-26 10:08 ` [PATCH 5/5] include: linux: pid: Remove space before tabs Varsha Rao

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.