From: Takashi Iwai <tiwai@suse.de>
To: Chris Rankin <rankincj@yahoo.com>
Cc: alsa-devel@lists.sourceforge.net
Subject: Re: "Cannot allocate memory" problem with latest CVS
Date: Mon, 28 Oct 2002 16:15:41 +0100 [thread overview]
Message-ID: <s5h4rb64msi.wl@alsa2.suse.de> (raw)
In-Reply-To: <20021028132148.74586.qmail@web40607.mail.yahoo.com>
[-- Attachment #1: Type: text/plain, Size: 515 bytes --]
At Mon, 28 Oct 2002 13:21:48 +0000 (GMT),
Chris Rankin wrote:
>
> Ouch. This means that this problem will always appear
> eventually, and the only way to clear it is waiting
> for Linux to free a large amount of cache memory.
> <flamebait>Or I could reboot my machine.</flamebait>
could you try the attached patch?
as mentioned in my previous mail, this is really a hack, but if it
works...
> In the meantime, I have no PCM playback via my
> SB-Live!. Is this a 2.4 or a SB-Live limitation?
both :)
Takashi
[-- Attachment #2: sgbuf-getpage.dif --]
[-- Type: application/octet-stream, Size: 1211 bytes --]
Index: alsa-kernel/core/pcm_sgbuf.c
===================================================================
RCS file: /suse/tiwai/cvs/alsa/alsa-kernel/core/pcm_sgbuf.c,v
retrieving revision 1.7
diff -u -r1.7 pcm_sgbuf.c
--- alsa-kernel/core/pcm_sgbuf.c 10 Sep 2002 10:20:00 -0000 1.7
+++ alsa-kernel/core/pcm_sgbuf.c 28 Oct 2002 14:35:43 -0000
@@ -128,7 +128,32 @@
while (sgbuf->pages < pages) {
void *ptr;
dma_addr_t addr;
+#ifdef __i386__
+ /* HACK! we try to allocate with GFP_KERNEL */
+ unsigned long rmask;
+ if (sgbuf->pci)
+ rmask = ~(unsigned long)sgbuf->pci->dma_mask;
+ else
+ rmask = 0;
+ ptr = (void *)__get_free_pages(GFP_KERNEL, 1);
+ if (ptr) {
+ addr = virt_to_phys(ptr);
+ if (((unsigned long)addr + PAGE_SIZE - 1) & rmask) {
+ /* reallocate with the proper mask */
+ free_pages((unsigned long)ptr, PAGE_SIZE);
+ ptr = (void *)__get_free_pages(GFP_KERNEL | GFP_DMA, 1);
+ if (ptr)
+ addr = virt_to_phys(ptr);
+ else
+ addr = 0;
+ }
+ } else
+ addr = 0;
+ if (ptr)
+ memset(ptr, 0, PAGE_SIZE);
+#else
ptr = snd_malloc_pci_pages(sgbuf->pci, PAGE_SIZE, &addr);
+#endif
if (! ptr)
return -ENOMEM;
sgbuf->table[sgbuf->pages].buf = ptr;
next prev parent reply other threads:[~2002-10-28 15:15 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-10-27 18:05 "Cannot allocate memory" problem with latest CVS Chris Rankin
2002-10-28 12:08 ` Takashi Iwai
2002-10-28 13:21 ` Chris Rankin
2002-10-28 15:15 ` Takashi Iwai [this message]
2002-10-28 20:26 ` Chris Rankin
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=s5h4rb64msi.wl@alsa2.suse.de \
--to=tiwai@suse.de \
--cc=alsa-devel@lists.sourceforge.net \
--cc=rankincj@yahoo.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.