LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: "Uwe Kleine-König" <u.kleine-koenig@pengutronix.de>
To: Jiri Slaby <jirislaby@gmail.com>
Cc: Greg KH <gregkh@suse.de>,
	devel@driverdev.osuosl.org,
	Haiyang Zhang <haiyangz@microsoft.com>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH] staging/hv/osd: don't reimplement ALIGN macro
Date: Wed, 19 Jan 2011 14:07:30 +0100	[thread overview]
Message-ID: <20110119130729.GO10686@pengutronix.de> (raw)
In-Reply-To: <4D36DC8D.50705@gmail.com>

Hello Jiri,

On Wed, Jan 19, 2011 at 01:43:57PM +0100, Jiri Slaby wrote:
> On 01/19/2011 09:54 AM, Uwe Kleine-König wrote:
> > On Tue, Jan 18, 2011 at 09:37:15PM -0800, Greg KH wrote:
> >> On Tue, Jan 18, 2011 at 04:39:11PM +0100, Uwe Kleine-König wrote:
> >>> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
> >>> ---
> >>>  drivers/staging/hv/osd.h |    5 ++---
> >>>  1 files changed, 2 insertions(+), 3 deletions(-)
> >>>
> >>> diff --git a/drivers/staging/hv/osd.h b/drivers/staging/hv/osd.h
> >>> index ce064e8..61ae54c 100644
> >>> --- a/drivers/staging/hv/osd.h
> >>> +++ b/drivers/staging/hv/osd.h
> >>> @@ -28,10 +28,9 @@
> >>>  #include <linux/workqueue.h>
> >>>  
> >>>  /* Defines */
> >>> -#define ALIGN_UP(value, align)	(((value) & (align-1)) ?		\
> >>> -				 (((value) + (align-1)) & ~(align-1)) :	\
> >>> -				 (value))
> >>> +#define ALIGN_UP(value, align)		ALIGN((value), (align))
> >>
> >> How about dropping ALIGN_UP entirely and just using the built-in ALIGN()
> >> macro instead?
> > Can do.
> > 
> >>>  #define ALIGN_DOWN(value, align)	((value) & ~(align-1))
> >>
> >> Any chance to get rid of this as well with the ALIGN() macro, or is that
> >> really not possible?
> > it would be
> > 
> > 	#define ALIGN_DOWN(value, align) ALIGN((value) - (align) + 1, (align))
> > 
> > I think, but as it's only used once it might be easier to just use ALIGN
> > there, too.
> > 
> > BTW, it's used as follows:
> > 
> > 	#define NUM_PAGES_SPANNED(addr, len)    ((ALIGN(addr+len, PAGE_SIZE) - \
> > 						 ALIGN_DOWN(addr, PAGE_SIZE)) >>  \
> > 						 PAGE_SHIFT)
> 
> (DIV_ROUND_UP(addr+len, PAGE_SIZE) - ((addr) >> PAGE_SHIFT)))
> 
> or maybe better
> 
> (PAGE_ALIGN(addr+len) >> PAGE_SHIFT - ((addr) >> PAGE_SHIFT))
> 
> > I wonder if there is already a function yielding this value?
> > Wouldn't
> > 
> > 	((addr + len) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT) + 1
> 
> No, this won't work (it's not equivalent).
Ah, this fails if addr + len is page aligned.

	((addr + len - 1) >> PAGE_SHIFT) - (addr >> PAGE_SHIFT) + 1

would work, but I like

	(PAGE_ALIGN(addr+len) >> PAGE_SHIFT - ((addr) >> PAGE_SHIFT))

better.  (In fact these two are equivalent:

	PAGE_ALIGN(addr+len) >> PAGE_SHIFT =
	__ALIGN_KERNEL(addr+len, PAGE_SIZE) >> PAGE_SHIFT =
	__ALIGN_KERNEL_MASK(addr+len, PAGE_SIZE - 1) >> PAGE_SHIFT =
	((addr + len + PAGE_SIZE - 1) & ~(PAGE_SIZE - 1)) >> PAGE_SHIFT =
	(addr + len + PAGE_SIZE - 1) >> PAGE_SHIFT =
	(addr + len - 1) >> PAGE_SHIFT + 1

Greg: should I send an updated patch or do you modify NUM_PAGES_SPANNED
accordingly?

Thanks
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

  reply	other threads:[~2011-01-19 13:07 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-01-18 15:39 Uwe Kleine-König
2011-01-19  5:37 ` Greg KH
2011-01-19  8:54   ` Uwe Kleine-König
2011-01-19 12:43     ` Jiri Slaby
2011-01-19 13:07       ` Uwe Kleine-König [this message]
2011-01-20  5:01         ` Greg KH
2011-01-20  8:32           ` Uwe Kleine-König

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=20110119130729.GO10686@pengutronix.de \
    --to=u.kleine-koenig@pengutronix.de \
    --cc=devel@driverdev.osuosl.org \
    --cc=gregkh@suse.de \
    --cc=haiyangz@microsoft.com \
    --cc=jirislaby@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --subject='Re: [PATCH] staging/hv/osd: don'\''t reimplement ALIGN macro' \
    /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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).