xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2ae8392a5c203a7b1bc5b8bff5eabc8b5eab8972
parent 792d83cad186c175d4dd5612b12a9db3d4258389
Author: Robert Morris <rtm@csail.mit.edu>
Date:   Tue, 28 Aug 2012 14:41:08 -0400

make the book happy

Diffstat:
Mide.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ide.c b/ide.c @@ -134,11 +134,11 @@ iderw(struct buf *b) if(b->dev != 0 && !havedisk1) panic("iderw: ide disk 1 not present"); - acquire(&idelock); //DOC: acquire-lock + acquire(&idelock); //DOC:acquire-lock // Append b to idequeue. b->qnext = 0; - for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC: insert-queue + for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue ; *pp = b;