[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <49AAB8B2.8060801@suse.de>
Date: Sun, 01 Mar 2009 17:32:50 +0100
From: Frank Seidel <fseidel@...e.de>
To: linux kernel <linux-kernel@...r.kernel.org>
Cc: akpm@...ux-foundation.org, kkeil@...e.de,
linux-isdn@...r.kernel.org, fseidel@...e.de,
Frank Seidel <frank@...eidel.de>,
Ilpo Järvinen
<ilpo.jarvinen@...sinki.fi>,
Andreas Eversberg <andreas@...rsberg.eu>,
Hannes Eder <hannes@...neseder.net>,
Adrian Bunk <bunk@...nel.org>
Subject: [PATCH] isdn: reduce stack size of mISDN_dsp
From: Frank Seidel <frank@...eidel.de>
Reduce stack size memory footprint of mISDN_dsp.
(From 1468 bytes for dsp_cmx_send on i386 down
to 44).
Signed-off-by: Frank Seidel <frank@...eidel.de>
---
drivers/isdn/mISDN/dsp_cmx.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
--- a/drivers/isdn/mISDN/dsp_cmx.c
+++ b/drivers/isdn/mISDN/dsp_cmx.c
@@ -1592,7 +1592,8 @@ dsp_cmx_send(void *arg)
struct dsp_conf_member *member;
struct dsp *dsp;
int mustmix, members;
- s32 mixbuffer[MAX_POLL+100], *c;
+ static s32 mixbuffer[MAX_POLL+100];
+ s32 *c;
u8 *p, *q;
int r, rr;
int jittercheck = 0, delay, i;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists