All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexander Stein <alexander.stein@systec-electronic.com>
To: Julia Cartwright <julia@ni.com>
Cc: linux-rt-users@vger.kernel.org, bigeasy@linutronix.de,
	tglx@linutronix.de
Subject: Re: [PATCH 1/1] squashfs: Disable "percpu multiple decompressor" on RT
Date: Mon, 07 May 2018 08:09:18 +0200	[thread overview]
Message-ID: <4064553.Shs7ScuBS6@ws-stein> (raw)
In-Reply-To: <20180503154834.GF967@jcartwri.amer.corp.natinst.com>

Hello Julia,

On Thursday, May 3, 2018, 5:48:34 PM CEST Julia Cartwright wrote:
> [...]
> Hrmph.  I was lost in the percpu arithmetic.  Should have built with
> sparse, it clearly tells me I screwed up.  Are you able to give this a
> try?  It's sparse-clean now :)

That does the trick. The max latency stays at 80µs in my test case. Thanks.
Tested-by: Alexander Stein <alexander.stein@systec-electronic.com>

Best regards,
Alexander

> diff --git a/fs/squashfs/decompressor_multi_percpu.c b/fs/squashfs/decompressor_multi_percpu.c
> index 23a9c28ad8ea..6a73c4fa88e7 100644
> --- a/fs/squashfs/decompressor_multi_percpu.c
> +++ b/fs/squashfs/decompressor_multi_percpu.c
> @@ -10,6 +10,7 @@
>  #include <linux/slab.h>
>  #include <linux/percpu.h>
>  #include <linux/buffer_head.h>
> +#include <linux/locallock.h>
>  
>  #include "squashfs_fs.h"
>  #include "squashfs_fs_sb.h"
> @@ -25,6 +26,8 @@ struct squashfs_stream {
>  	void		*stream;
>  };
>  
> +static DEFINE_LOCAL_IRQ_LOCK(stream_lock);
> +
>  void *squashfs_decompressor_create(struct squashfs_sb_info *msblk,
>  						void *comp_opts)
>  {
> @@ -79,10 +82,15 @@ int squashfs_decompress(struct squashfs_sb_info *msblk, struct buffer_head **bh,
>  {
>  	struct squashfs_stream __percpu *percpu =
>  			(struct squashfs_stream __percpu *) msblk->stream;
> -	struct squashfs_stream *stream = get_cpu_ptr(percpu);
> -	int res = msblk->decompressor->decompress(msblk, stream->stream, bh, b,
> -		offset, length, output);
> -	put_cpu_ptr(stream);
> +	struct squashfs_stream *stream;
> +	int res;
> +
> +	stream = get_locked_ptr(stream_lock, percpu);
> +
> +	res = msblk->decompressor->decompress(msblk, stream->stream, bh, b,
> +			offset, length, output);
> +
> +	put_locked_ptr(stream_lock, stream);
>  
>  	if (res < 0)
>  		ERROR("%s decompression failed, data probably corrupt\n",
> diff --git a/include/linux/locallock.h b/include/linux/locallock.h
> index d658c2552601..c3ab5183a6a1 100644
> --- a/include/linux/locallock.h
> +++ b/include/linux/locallock.h
> @@ -222,6 +222,14 @@ static inline int __local_unlock_irqrestore(struct local_irq_lock *lv,
>  
>  #define put_locked_var(lvar, var)	local_unlock(lvar);
>  
> +#define get_locked_ptr(lvar, var)					\
> +	({								\
> +		local_lock(lvar);					\
> +		this_cpu_ptr(var);					\
> +	})
> +
> +#define put_locked_ptr(lvar, var)	local_unlock(lvar);
> +
>  #define local_lock_cpu(lvar)						\
>  	({								\
>  		local_lock(lvar);					\
> 
> 




  reply	other threads:[~2018-05-07  6:09 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-02 13:12 [PATCH 1/1] squashfs: Disable "percpu multiple decompressor" on RT Alexander Stein
2018-05-02 14:37 ` Julia Cartwright
2018-05-03  6:36   ` Alexander Stein
2018-05-03 15:48     ` Julia Cartwright
2018-05-07  6:09       ` Alexander Stein [this message]
2018-05-07 13:58         ` [PATCH RT 1/2] locallock: provide {get,put}_locked_ptr() variants Julia Cartwright
2018-05-07 13:58           ` [PATCH RT 2/2] squashfs: make use of local lock in multi_cpu decompressor Julia Cartwright

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4064553.Shs7ScuBS6@ws-stein \
    --to=alexander.stein@systec-electronic.com \
    --cc=bigeasy@linutronix.de \
    --cc=julia@ni.com \
    --cc=linux-rt-users@vger.kernel.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.