All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] livepatch: Small shadow variable documentation fixes
@ 2017-09-25 15:41 Petr Mladek
  2017-09-25 20:38 ` Joe Lawrence
  2017-10-02  9:58 ` Jiri Kosina
  0 siblings, 2 replies; 3+ messages in thread
From: Petr Mladek @ 2017-09-25 15:41 UTC (permalink / raw)
  To: Jiri Kosina, Joe Lawrence; +Cc: live-patching, linux-kernel, Petr Mladek

The description of the basic operations was a bit inconsistent
and based on older version of the patchset.

Also the size of the spinlock structure should be allocated
instead of the pointer.

Signed-off-by: Petr Mladek <pmladek@suse.com>
---
 Documentation/livepatch/shadow-vars.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/livepatch/shadow-vars.txt b/Documentation/livepatch/shadow-vars.txt
index e3ffc4301bfa..89c66634d600 100644
--- a/Documentation/livepatch/shadow-vars.txt
+++ b/Documentation/livepatch/shadow-vars.txt
@@ -6,7 +6,7 @@ Shadow variables are a simple way for livepatch modules to associate
 additional "shadow" data with existing data structures.  Shadow data is
 allocated separately from parent data structures, which are left
 unmodified.  The shadow variable API described in this document is used
-to allocate/attach and detach/release shadow variables to their parents.
+to allocate/add and remove/free shadow variables to/from their parents.
 
 The implementation introduces a global, in-kernel hashtable that
 associates pointers to parent objects and a numeric identifier of the
@@ -107,7 +107,7 @@ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
 	sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
 
 	/* Attach a corresponding shadow variable, then initialize it */
-	ps_lock = klp_shadow_alloc(sta, PS_LOCK, NULL, sizeof(ps_lock), gfp);
+	ps_lock = klp_shadow_alloc(sta, PS_LOCK, NULL, sizeof(*ps_lock), gfp);
 	if (!ps_lock)
 		goto shadow_fail;
 	spin_lock_init(ps_lock);
-- 
1.8.5.6

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

* Re: [PATCH] livepatch: Small shadow variable documentation fixes
  2017-09-25 15:41 [PATCH] livepatch: Small shadow variable documentation fixes Petr Mladek
@ 2017-09-25 20:38 ` Joe Lawrence
  2017-10-02  9:58 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Joe Lawrence @ 2017-09-25 20:38 UTC (permalink / raw)
  To: Petr Mladek; +Cc: Jiri Kosina, live-patching, linux-kernel

On Mon, Sep 25, 2017 at 05:41:59PM +0200, Petr Mladek wrote:
> The description of the basic operations was a bit inconsistent
> and based on older version of the patchset.
> 
> Also the size of the spinlock structure should be allocated
> instead of the pointer.
> 
> Signed-off-by: Petr Mladek <pmladek@suse.com>
> ---
>  Documentation/livepatch/shadow-vars.txt | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/Documentation/livepatch/shadow-vars.txt b/Documentation/livepatch/shadow-vars.txt
> index e3ffc4301bfa..89c66634d600 100644
> --- a/Documentation/livepatch/shadow-vars.txt
> +++ b/Documentation/livepatch/shadow-vars.txt
> @@ -6,7 +6,7 @@ Shadow variables are a simple way for livepatch modules to associate
>  additional "shadow" data with existing data structures.  Shadow data is
>  allocated separately from parent data structures, which are left
>  unmodified.  The shadow variable API described in this document is used
> -to allocate/attach and detach/release shadow variables to their parents.
> +to allocate/add and remove/free shadow variables to/from their parents.
>  
>  The implementation introduces a global, in-kernel hashtable that
>  associates pointers to parent objects and a numeric identifier of the
> @@ -107,7 +107,7 @@ struct sta_info *sta_info_alloc(struct ieee80211_sub_if_data *sdata,
>  	sta = kzalloc(sizeof(*sta) + hw->sta_data_size, gfp);
>  
>  	/* Attach a corresponding shadow variable, then initialize it */
> -	ps_lock = klp_shadow_alloc(sta, PS_LOCK, NULL, sizeof(ps_lock), gfp);
> +	ps_lock = klp_shadow_alloc(sta, PS_LOCK, NULL, sizeof(*ps_lock), gfp);
>  	if (!ps_lock)
>  		goto shadow_fail;
>  	spin_lock_init(ps_lock);
> -- 
> 1.8.5.6

Thanks, Petr!

Acked-by: Joe Lawrence <joe.lawrence@redhat.com>

-- Joe

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

* Re: [PATCH] livepatch: Small shadow variable documentation fixes
  2017-09-25 15:41 [PATCH] livepatch: Small shadow variable documentation fixes Petr Mladek
  2017-09-25 20:38 ` Joe Lawrence
@ 2017-10-02  9:58 ` Jiri Kosina
  1 sibling, 0 replies; 3+ messages in thread
From: Jiri Kosina @ 2017-10-02  9:58 UTC (permalink / raw)
  To: Petr Mladek; +Cc: Joe Lawrence, live-patching, linux-kernel

On Mon, 25 Sep 2017, Petr Mladek wrote:

> The description of the basic operations was a bit inconsistent
> and based on older version of the patchset.
> 
> Also the size of the spinlock structure should be allocated
> instead of the pointer.
> 
> Signed-off-by: Petr Mladek <pmladek@suse.com>

Applied, thanks.

-- 
Jiri Kosina
SUSE Labs

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

end of thread, other threads:[~2017-10-02  9:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-09-25 15:41 [PATCH] livepatch: Small shadow variable documentation fixes Petr Mladek
2017-09-25 20:38 ` Joe Lawrence
2017-10-02  9:58 ` Jiri Kosina

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.