All of lore.kernel.org
 help / color / mirror / Atom feed
From: Avi Kivity <avi@redhat.com>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-fsdevel@vger.kernel.org, linux-mm@kvack.org,
	linux-kernel@vger.kernel.org, xfs@oss.sgi.com
Subject: Re: [PATCH 1/2] mm: add context argument to shrinker callback
Date: Wed, 28 Apr 2010 12:39:44 +0300	[thread overview]
Message-ID: <4BD80260.3050501@redhat.com> (raw)
In-Reply-To: <1271118255-21070-2-git-send-email-david@fromorbit.com>

On 04/13/2010 03:24 AM, Dave Chinner wrote:
> From: Dave Chinner<dchinner@redhat.com>
>
> The current shrinker implementation requires the registered callback
> to have global state to work from. This makes it difficult to shrink
> caches that are not global (e.g. per-filesystem caches). Add a
> context argument to the shrinker callback so that it can easily be
> used in such situations.
>    

> @@ -995,7 +995,8 @@ static inline void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
>    * querying the cache size, so a fastpath for that case is appropriate.
>    */
>   struct shrinker {
> -	int (*shrink)(int nr_to_scan, gfp_t gfp_mask);
> +	int (*shrink)(void *ctx, int nr_to_scan, gfp_t gfp_mask);
> +	void *ctx;	/* user callback context */
>   	int seeks;	/* seeks to recreate an obj */
>    


It's nicer (and slightly cheaper) to have

   int (*shrink)(struct shrinker *shrinker, int nr_to_scan, gfp_t gfp_mask);
   /* no void *ctx; */

Clients can use container_of() to reach their context from the shrinker 
argument.

-- 
error compiling committee.c: too many arguments to function

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-fsdevel@vger.kernel.org, xfs@oss.sgi.com
Subject: Re: [PATCH 1/2] mm: add context argument to shrinker callback
Date: Wed, 28 Apr 2010 12:39:44 +0300	[thread overview]
Message-ID: <4BD80260.3050501@redhat.com> (raw)
In-Reply-To: <1271118255-21070-2-git-send-email-david@fromorbit.com>

On 04/13/2010 03:24 AM, Dave Chinner wrote:
> From: Dave Chinner<dchinner@redhat.com>
>
> The current shrinker implementation requires the registered callback
> to have global state to work from. This makes it difficult to shrink
> caches that are not global (e.g. per-filesystem caches). Add a
> context argument to the shrinker callback so that it can easily be
> used in such situations.
>    

> @@ -995,7 +995,8 @@ static inline void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
>    * querying the cache size, so a fastpath for that case is appropriate.
>    */
>   struct shrinker {
> -	int (*shrink)(int nr_to_scan, gfp_t gfp_mask);
> +	int (*shrink)(void *ctx, int nr_to_scan, gfp_t gfp_mask);
> +	void *ctx;	/* user callback context */
>   	int seeks;	/* seeks to recreate an obj */
>    


It's nicer (and slightly cheaper) to have

   int (*shrink)(struct shrinker *shrinker, int nr_to_scan, gfp_t gfp_mask);
   /* no void *ctx; */

Clients can use container_of() to reach their context from the shrinker 
argument.

-- 
error compiling committee.c: too many arguments to function


WARNING: multiple messages have this Message-ID (diff)
From: Avi Kivity <avi@redhat.com>
To: Dave Chinner <david@fromorbit.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	linux-fsdevel@vger.kernel.org, xfs@oss.sgi.com
Subject: Re: [PATCH 1/2] mm: add context argument to shrinker callback
Date: Wed, 28 Apr 2010 12:39:44 +0300	[thread overview]
Message-ID: <4BD80260.3050501@redhat.com> (raw)
In-Reply-To: <1271118255-21070-2-git-send-email-david@fromorbit.com>

On 04/13/2010 03:24 AM, Dave Chinner wrote:
> From: Dave Chinner<dchinner@redhat.com>
>
> The current shrinker implementation requires the registered callback
> to have global state to work from. This makes it difficult to shrink
> caches that are not global (e.g. per-filesystem caches). Add a
> context argument to the shrinker callback so that it can easily be
> used in such situations.
>    

> @@ -995,7 +995,8 @@ static inline void sync_mm_rss(struct task_struct *task, struct mm_struct *mm)
>    * querying the cache size, so a fastpath for that case is appropriate.
>    */
>   struct shrinker {
> -	int (*shrink)(int nr_to_scan, gfp_t gfp_mask);
> +	int (*shrink)(void *ctx, int nr_to_scan, gfp_t gfp_mask);
> +	void *ctx;	/* user callback context */
>   	int seeks;	/* seeks to recreate an obj */
>    


It's nicer (and slightly cheaper) to have

   int (*shrink)(struct shrinker *shrinker, int nr_to_scan, gfp_t gfp_mask);
   /* no void *ctx; */

Clients can use container_of() to reach their context from the shrinker 
argument.

-- 
error compiling committee.c: too many arguments to function

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2010-04-28  9:37 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-04-13  0:24 [PATCH 0/2] Context sensitive memory shrinker support Dave Chinner
2010-04-13  0:24 ` Dave Chinner
2010-04-13  0:24 ` Dave Chinner
2010-04-13  0:24 ` [PATCH 1/2] mm: add context argument to shrinker callback Dave Chinner
2010-04-13  0:24   ` Dave Chinner
2010-04-13  0:24   ` Dave Chinner
2010-04-13  8:17   ` KOSAKI Motohiro
2010-04-13  8:17     ` KOSAKI Motohiro
2010-04-13  8:17     ` KOSAKI Motohiro
2010-04-18  0:15   ` Christoph Hellwig
2010-04-18  0:15     ` Christoph Hellwig
2010-04-18  0:15     ` Christoph Hellwig
2010-04-19 14:00     ` Nick Piggin
2010-04-19 14:00       ` Nick Piggin
2010-04-19 14:00       ` Nick Piggin
2010-04-20  0:41       ` Dave Chinner
2010-04-20  0:41         ` Dave Chinner
2010-04-20  0:41         ` Dave Chinner
2010-04-20  8:38         ` Nick Piggin
2010-04-20  8:38           ` Nick Piggin
2010-04-20  8:38           ` Nick Piggin
2010-04-20 10:32           ` Dave Chinner
2010-04-20 10:32             ` Dave Chinner
2010-04-20 10:32             ` Dave Chinner
2010-04-21  8:40             ` Nick Piggin
2010-04-21  8:40               ` Nick Piggin
2010-04-21  8:40               ` Nick Piggin
2010-04-22 16:32               ` Christoph Hellwig
2010-04-22 16:32                 ` Christoph Hellwig
2010-04-22 16:32                 ` Christoph Hellwig
2010-04-22 16:38                 ` Nick Piggin
2010-04-22 16:38                   ` Nick Piggin
2010-04-22 16:38                   ` Nick Piggin
2010-04-22 16:42                   ` Christoph Hellwig
2010-04-22 16:42                     ` Christoph Hellwig
2010-04-22 16:42                     ` Christoph Hellwig
2010-04-22 16:57                     ` Nick Piggin
2010-04-22 16:57                       ` Nick Piggin
2010-04-22 16:57                       ` Nick Piggin
2010-04-23  1:58                     ` Dave Chinner
2010-04-23  1:58                       ` Dave Chinner
2010-04-23  1:58                       ` Dave Chinner
2010-04-28  3:38                   ` Dave Chinner
2010-04-28  3:38                     ` Dave Chinner
2010-04-28  3:38                     ` Dave Chinner
2010-04-28  9:39   ` Avi Kivity [this message]
2010-04-28  9:39     ` Avi Kivity
2010-04-28  9:39     ` Avi Kivity
2010-04-28 13:45     ` Dave Chinner
2010-04-28 13:45       ` Dave Chinner
2010-04-28 13:45       ` Dave Chinner
2010-04-13  0:24 ` [PATCH 2/2] xfs: add a shrinker to background inode reclaim Dave Chinner
2010-04-13  0:24   ` Dave Chinner
2010-04-13  0:24   ` Dave Chinner

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=4BD80260.3050501@redhat.com \
    --to=avi@redhat.com \
    --cc=david@fromorbit.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=xfs@oss.sgi.com \
    /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.