linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: "Nitin Gupta" <nitingupta910@gmail.com>
To: Will Newton <will.newton@gmail.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: [PATCH 2/6] compcache: block device - internal defs
Date: Mon, 24 Mar 2008 23:20:59 +0530	[thread overview]
Message-ID: <4cefeab80803241050y1ee7c22fi73234f24e65f958a@mail.gmail.com> (raw)
In-Reply-To: <87a5b0800803240905g705a8ea3p11c415ad37fc3cbb@mail.gmail.com>

On Mon, Mar 24, 2008 at 9:35 PM, Will Newton <will.newton@gmail.com> wrote:
> On Mon, Mar 24, 2008 at 3:03 PM, Nitin Gupta <nitingupta910@gmail.com> wrote:
>
>  Hi Nitin,
>
>
>
>  > This contains header to be used internally by block device code.
>  >  It contains flags to enable/disable debugging, stats collection and also
>  >  defines default disk size (25% of total RAM).
>  >
>  >  Signed-off-by: Nitin Gupta <nitingupta910 at gmail dot com>
>  >  ---
>  >   drivers/block/compcache.h |  147 +++++++++++++++++++++++++++++++++++++++++++++
>  >   1 files changed, 147 insertions(+), 0 deletions(-)
>  >
>  >  diff --git a/drivers/block/compcache.h b/drivers/block/compcache.h
>  >  new file mode 100644
>  >  index 0000000..b84b5d3
>  >  --- /dev/null
>  >  +++ b/drivers/block/compcache.h
>  >  @@ -0,0 +1,147 @@
>  >  +/*
>  >  + * Compressed RAM based swap device
>  >  + *
>  >  + * (C) Nitin Gupta
>  >  + *
>  >  + * This RAM based block device acts as swap disk.
>  >  + * Pages swapped to this device are compressed and
>  >  + * stored in memory.
>  >  + *
>  >  + * Project home: http://code.google.com/p/compcache
>  >  + */
>  >  +
>  >  +#ifndef _COMPCACHE_H_
>  >  +#define _COMPCACHE_H_
>  >  +
>  >  +#define K(x)   ((x) >> 10)
>  >  +#define KB(x)  ((x) << 10)
>  >  +
>  >  +#define SECTOR_SHIFT           9
>  >  +#define SECTOR_SIZE            (1 << SECTOR_SHIFT)
>  >  +#define SECTORS_PER_PAGE_SHIFT (PAGE_SHIFT - SECTOR_SHIFT)
>  >  +#define SECTORS_PER_PAGE       (1 << SECTORS_PER_PAGE_SHIFT)
>  >  +
>  >  +/*-- Configurable parameters */
>  >  +/* Default compcache size: 25% of total RAM */
>  >  +#define DEFAULT_COMPCACHE_PERCENT      25
>  >  +#define INIT_SIZE                      KB(16)
>  >  +#define GROW_SIZE                      INIT_SIZE
>
>  Maybe these could be renamed to INIT_SIZE_BYTES/GROW_SIZE_BYTES to
>  make the units clearer?
>


Sounds better. I will rename these.


>
>  >  +/*-- */
>  >  +
>  >  +/* Message prefix */
>  >  +#define C "compcache: "
>  >  +
>  >  +/* Debugging and Stats */
>  >  +#define NOP    do { } while(0)
>  >  +
>  >  +#if (1 || defined(CONFIG_DEBUG_COMPCACHE))
>  >  +#define DEBUG  1
>  >  +#define STATS  1
>  >  +#else
>  >  +#define DEBUG  0
>  >  +#define STATS  0
>  >  +#endif
>
>  If DEBUG is defined unconditionally what is the point of CONFIG_DEBUG_COMPCACHE?
>
>

For now I have not added DEBUG_COMPCACHE as make option (menuconfig)
so its unconditional for now. I am now adding this option and then it
will not be unconditional.

>  >  +
>  >  +/* Create /proc/compcache? */
>  >  +/* If STATS is disabled, this will give minimal compcache info */
>  >  +#define CONFIG_COMPCACHE_PROC
>  >  +
>  >  +#if DEBUG
>  >  +#define CC_DEBUG(fmt,arg...) \
>  >  +       printk(KERN_DEBUG C fmt,##arg)
>  >  +#else
>  >  +#define CC_DEBUG(fmt,arg...) NOP
>  >  +#endif
>
>  Have you thought about using pr_debug() for this? It looks like it
>  would simplify this file at the cost of a little flexibility.
>

I want to enable/disable this debugging based on DEBUG_COMPCACHE flag.
Thats why I added these macros. I will do 'printk(KERN_DEBUG' ->
pr_debug


>
>  >  +
>  >  +/*
>  >  + * Verbose debugging:
>  >  + * Enable basic debugging + verbose messages spread all over code
>  >  + */
>  >  +#define DEBUG2 0
>  >  +
>  >  +#if DEBUG2
>  >  +#define DEBUG  1
>  >  +#define STATS  1
>  >  +#define CONFIG_COMPCACHE_PROC  1
>  >  +#define CC_DEBUG2((fmt,arg...) \
>  >  +       printk(KERN_DEBUG C fmt,##arg)
>  >  +#else /* DEBUG2 */
>  >  +#define CC_DEBUG2(fmt,arg...) NOP
>  >  +#endif
>  >  +
>  >  +/* Its useless to collect stats if there is no way to export it */
>  >  +#if (STATS && !defined(CONFIG_COMPCACHE_PROC))
>  >  +#error "compcache stats is enabled but not /proc/compcache."
>  >  +#endif
>
>  So it appears that if we want DEBUG we also get STATS, which requires
>  /proc support enabled, so it is impossible to have just DEBUG and no
>  STATS or /proc support?
>

I will decouple debug and stats so each can be enabled/disabled individually.

Thanks,
Nitin

--
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>

  reply	other threads:[~2008-03-24 17:51 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-24 15:03 Nitin Gupta
2008-03-24 16:05 ` Will Newton
2008-03-24 17:50   ` Nitin Gupta [this message]
2008-03-24 20:36     ` Will Newton
2008-03-24 20:39       ` Nitin Gupta
2008-03-24 16:25 ` Mariusz Kozlowski
2008-03-24 17:39   ` Nitin Gupta

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=4cefeab80803241050y1ee7c22fi73234f24e65f958a@mail.gmail.com \
    --to=nitingupta910@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=will.newton@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox