From: "Robert P. J. Day" <rpjday@crashcourse.ca>
To: Jiri Slaby <jirislaby@gmail.com>
Cc: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>,
Andrew Morton <akpm@linux-foundation.org>,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Make shr to divide by power of 2 (resend)
Date: Sat, 15 Aug 2009 09:49:15 -0400 (EDT) [thread overview]
Message-ID: <alpine.LFD.2.00.0908150947260.14440@localhost> (raw)
In-Reply-To: <4A86BC96.9040702@gmail.com>
On Sat, 15 Aug 2009, Jiri Slaby wrote:
> On 08/15/2009 03:43 PM, Sergey Senozhatsky wrote:
> > Make an arithmetic right shift to divide by power of 2.
>
> Why? Is out there a compiler not doing that?
>
> Seems like it should be rather converted to DIV_ROUND_UP.
>
> > Signed-off-by: Sergey Senozhatsky <sergey.senozhatsky@gmail.com>
> > ---
> > diff --git a/drivers/video/console/bitblit.c b/drivers/video/console/bitblit.c
> > index 69864b1..b816151 100644
> > --- a/drivers/video/console/bitblit.c
> > +++ b/drivers/video/console/bitblit.c
> > @@ -144,7 +144,7 @@ static void bit_putcs(struct vc_data *vc, struct fb_info *info,
> > int fg, int bg)
> > {
> > struct fb_image image;
> > - u32 width = (vc->vc_font.width + 7)/8;
> > + u32 width = (vc->vc_font.width + 7) >> 3;
> > u32 cellsize = width * vc->vc_font.height;
> > u32 maxcnt = info->pixmap.size/cellsize;
> > u32 scan_align = info->pixmap.scan_align - 1;
it does seem like a DIV_ROUND_UP would be better but perhaps another
solution would be to define a meaningful macro name for that
operation. if that conversion is going to be done regularly, a macro
with an informative name might be in order. if it's a one-shot
operation, though, not much point.
rday
--
========================================================================
Robert P. J. Day Waterloo, Ontario, CANADA
Linux Consulting, Training and Annoying Kernel Pedantry.
Web page: http://crashcourse.ca
Twitter: http://twitter.com/rpjday
========================================================================
next prev parent reply other threads:[~2009-08-15 13:52 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-15 13:43 [PATCH] Make shr to divide by power of 2 (resend) Sergey Senozhatsky
2009-08-15 13:48 ` Jiri Slaby
2009-08-15 13:49 ` Robert P. J. Day [this message]
2009-08-15 14:12 ` Sergey Senozhatsky
2009-08-15 20:42 ` Jiri Slaby
2009-08-16 9:14 ` Sergey Senozhatsky
2009-08-17 7:15 ` Jiri Slaby
2009-08-17 7:31 ` Sergey Senozhatsky
2009-08-17 7:48 ` [PATCH 1/1] VIDEO: console, use DIV_ROUND_UP Jiri Slaby
2009-08-17 8:00 ` Sergey Senozhatsky
2009-08-17 8:00 ` Jiri Slaby
2009-08-17 8:08 ` Sergey Senozhatsky
2009-08-17 8:11 ` Jiri Slaby
2009-08-15 14:26 ` [PATCH] Make shr to divide by power of 2 (resend) Sergey Senozhatsky
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=alpine.LFD.2.00.0908150947260.14440@localhost \
--to=rpjday@crashcourse.ca \
--cc=akpm@linux-foundation.org \
--cc=jirislaby@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=sergey.senozhatsky@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 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.