From: Andrew Morton <akpm@digeo.com>
To: Ed Tomlinson <tomlins@cam.org>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: 2.5.68-mm3
Date: Wed, 30 Apr 2003 17:04:46 -0700 [thread overview]
Message-ID: <20030430170446.6fe9b804.akpm@digeo.com> (raw)
In-Reply-To: <200304301957.58729.tomlins@cam.org>
Ed Tomlinson <tomlins@cam.org> wrote:
>
> On April 30, 2003 02:59 am, Andrew Morton wrote:
> > Bits and pieces. Nothing major, apart from the dynamic request allocation
> > patch. This arbitrarily increases the maximum requests/queue to 1024, and
> > could well make large (and usually bad) changes to various benchmarks.
> > However some will be helped.
>
> Here is something a little broken. Suspect it might be in 68-bk too:
>
> if [ -r System.map ]; then /sbin/depmod -ae -F System.map 2.5.68-mm3; fi
> WARNING: /lib/modules/2.5.68-mm3/kernel/sound/oss/cs46xx.ko needs unknown symbol cs4x_ClearPageReserved
>
Yes, thanks. It's a case of search-n-replace-n-dont-test.
diff -puN sound/oss/cs46xx.c~cs46xx-PageReserved-fix sound/oss/cs46xx.c
--- 25/sound/oss/cs46xx.c~cs46xx-PageReserved-fix Wed Apr 30 17:03:41 2003
+++ 25-akpm/sound/oss/cs46xx.c Wed Apr 30 17:03:48 2003
@@ -1247,7 +1247,7 @@ static void dealloc_dmabuf(struct cs_sta
mapend = virt_to_page(dmabuf->rawbuf +
(PAGE_SIZE << dmabuf->buforder) - 1);
for (map = virt_to_page(dmabuf->rawbuf); map <= mapend; map++)
- cs4x_ClearPageReserved(map);
+ ClearPageReserved(map);
free_dmabuf(state->card, dmabuf);
}
@@ -1256,7 +1256,7 @@ static void dealloc_dmabuf(struct cs_sta
mapend = virt_to_page(dmabuf->tmpbuff +
(PAGE_SIZE << dmabuf->buforder_tmpbuff) - 1);
for (map = virt_to_page(dmabuf->tmpbuff); map <= mapend; map++)
- cs4x_ClearPageReserved(map);
+ ClearPageReserved(map);
free_dmabuf2(state->card, dmabuf);
}
_
--
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:"aart@kvack.org"> aart@kvack.org </a>
next prev parent reply other threads:[~2003-05-01 0:04 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-04-30 6:59 2.5.68-mm3 Andrew Morton
2003-04-30 9:51 ` 2.5.68-mm3 Felipe Alfaro Solana
2003-04-30 9:59 ` 2.5.68-mm3 Andrew Morton
2003-04-30 18:35 ` 2.5.68-mm3 Greg KH
2003-04-30 22:58 ` 2.5.68-mm3 Felipe Alfaro Solana
2003-04-30 23:57 ` 2.5.68-mm3 Ed Tomlinson
2003-05-01 0:04 ` Andrew Morton [this message]
2003-05-01 3:18 ` 2.5.68-mm3 steven roemen
2003-05-01 17:47 ` 2.5.68-mm3 Greg KH
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=20030430170446.6fe9b804.akpm@digeo.com \
--to=akpm@digeo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=tomlins@cam.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