From: Andrew Morton <akpm@osdl.org>
To: Amol Lad <amol@verismonetworks.com>
Cc: linux kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 1/5] ioremap balanced with iounmap for drivers/char/epca.c
Date: Fri, 6 Oct 2006 13:35:16 -0700 [thread overview]
Message-ID: <20061006133516.c5cbf43b.akpm@osdl.org> (raw)
In-Reply-To: <1160110625.19143.83.camel@amol.verismonetworks.com>
On Fri, 06 Oct 2006 10:27:05 +0530
Amol Lad <amol@verismonetworks.com> wrote:
> ioremap must be balanced by an iounmap and failing to do so can result
> in a memory leak.
>
> Tested (compilation only):
> - using allmodconfig
> - making sure the files are compiling without any warning/error due to
> new changes
>
> Signed-off-by: Amol Lad <amol@verismonetworks.com>
> ---
> epca.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletion(-)
> ---
> diff -uprN -X linux-2.6.19-rc1-orig/Documentation/dontdiff linux-2.6.19-rc1-orig/drivers/char/epca.c linux-2.6.19-rc1/drivers/char/epca.c
> --- linux-2.6.19-rc1-orig/drivers/char/epca.c 2006-10-05 14:00:42.000000000 +0530
> +++ linux-2.6.19-rc1/drivers/char/epca.c 2006-10-05 14:50:00.000000000 +0530
> @@ -1474,8 +1474,11 @@ static void post_fep_init(unsigned int c
> if ((bd->type == PCXEVE || bd->type == PCXE) && (readw(memaddr + XEPORTS) < 3))
> shrinkmem = 1;
> if (bd->type < PCIXEM)
> - if (!request_region((int)bd->port, 4, board_desc[bd->type]))
> + if (!request_region((int)bd->port, 4, board_desc[bd->type])) {
> + iounmap(bd->re_map_membase);
> + bd->re_map_membase = NULL;
> return;
> + }
> memwinon(bd, 0);
>
I think this will do the wrong thing if (bd->type >= PCIXEM). Maybe it's
OK, but it's not immediately obvious from a quick reading.
I'm quite worried about changes in crufty old drivers like these - if we
break them, the breakage will take a *long* time to be discovered. Too
late for us to fix them.
Plus a lot of them are just plain badly coded, so extra care is needed to
understand the tricks which they're playing.
next prev parent reply other threads:[~2006-10-06 20:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-10-06 4:57 [PATCH 1/5] ioremap balanced with iounmap for drivers/char/epca.c Amol Lad
2006-10-06 20:35 ` Andrew Morton [this message]
2006-10-07 5:56 ` Amol Lad
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=20061006133516.c5cbf43b.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=amol@verismonetworks.com \
--cc=linux-kernel@vger.kernel.org \
/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