summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@nuclecu.unam.mx>1997-08-01 21:45:05 +0000
committerMiguel de Icaza <miguel@nuclecu.unam.mx>1997-08-01 21:45:05 +0000
commitdbacf4028db08dd44bda48f4d4662270865e0f9a (patch)
treec6a1d11779d35c530b189f0b2b39f0e27cfb4b8e /drivers
parent8d022be5b971aef36124d270500c6d56ed793a3e (diff)
Heh. I forgot to make vmalloc_prot use the argument, it was
still using PAGE_KERNEL, so the shmiq was getting cached pages, not the uncached ones. Get rid of the flush_cache_all upon even pushing. Thanks Ralf :-)
Diffstat (limited to 'drivers')
-rw-r--r--drivers/sgi/char/shmiq.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/sgi/char/shmiq.c b/drivers/sgi/char/shmiq.c
index 617c44cd1..9b3011873 100644
--- a/drivers/sgi/char/shmiq.c
+++ b/drivers/sgi/char/shmiq.c
@@ -111,7 +111,6 @@ shmiq_push_event (struct shmqevent *e)
e->un.time = jiffies;
s->events [s->tail] = *e;
- flush_cache_all ();
printk ("KERNEL: dev=%d which=%d type=%d flags=%d\n",
e->data.device, e->data.which, e->data.type, e->data.flags);
s->tail = tail_next;