Update of /cvsroot/linux-vax/kernel-2.4/drivers/vax/bus
In directory sc8-pr-cvs1:/tmp/cvs-serv24404
Modified Files:
qbus.c
Log Message:
DA: fix qbus.c so that it uses GFP_ATOMIC.. this fixes a crash
on the simulator
Index: qbus.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.4/drivers/vax/bus/qbus.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qbus.c 25 Oct 2002 14:04:35 -0000 1.1
+++ qbus.c 1 Feb 2003 05:09:35 -0000 1.2
@@ -85,7 +85,7 @@
{
struct vax_dmamap *map;
- map = kmalloc(sizeof(struct vax_dmamap), GFP_KERNEL);
+ map = kmalloc(sizeof(struct vax_dmamap), GFP_ATOMIC);
if (map != NULL) {
int reg;
unsigned int pagelets;
|