public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* ppp and parport waitqueue changes for pre-2.3.1
@ 1999-05-12  9:02 Luca Lizzeri
  0 siblings, 0 replies; only message in thread
From: Luca Lizzeri @ 1999-05-12  9:02 UTC (permalink / raw)
  To: linux-kernel


Plenty of places (especially sound) are still missing the waitqueue changes.

The ones I made for ppp and parport follow.

Bye,
	Luca


diff -ur linux-vanilla/drivers/misc/parport_share.c linux/drivers/misc/parport_share.c
--- linux-vanilla/drivers/misc/parport_share.c	Wed May 12 10:49:49 1999
+++ linux/drivers/misc/parport_share.c	Wed May 12 10:05:22 1999
@@ -277,7 +277,7 @@
 	inc_parport_count();
 	port->ops->inc_use_count();
 
-	init_waitqueue(&tmp->wait_q);
+	init_waitqueue_head(&tmp->wait_q);
 	tmp->timeslice = PARPORT_DEFAULT_TIMESLICE;
 	tmp->waitnext = tmp->waitprev = NULL;
 
diff -ur linux-vanilla/drivers/net/ppp.c linux/drivers/net/ppp.c
--- linux-vanilla/drivers/net/ppp.c	Wed May 12 10:49:36 1999
+++ linux/drivers/net/ppp.c	Wed May 12 10:43:59 1999
@@ -2834,7 +2834,7 @@
 	ppp->magic = PPP_MAGIC;
 	ppp->next = NULL;
 	ppp->inuse = 1;
-	ppp->read_wait = NULL;
+	init_waitqueue_head(&ppp->read_wait);
 
 	/*
 	 * Make up a suitable name for this device
diff -ur linux-vanilla/include/linux/if_pppvar.h linux/include/linux/if_pppvar.h
--- linux-vanilla/include/linux/if_pppvar.h	Wed May 12 10:49:27 1999
+++ linux/include/linux/if_pppvar.h	Wed May 12 10:40:16 1999
@@ -109,7 +109,7 @@
 	__u16		rfcs;		/* FCS so far of rpkt		*/
 
 	/* Queues for select() functionality */
-	struct wait_queue *read_wait;	/* queue for reading processes	*/
+	wait_queue_head_t	read_wait;	/* queue for reading processes	*/
 
 	/* info for detecting idle channels */
 	unsigned long	last_xmit;	/* time of last transmission	*/
diff -ur linux-vanilla/include/linux/parport.h linux/include/linux/parport.h
--- linux-vanilla/include/linux/parport.h	Wed May 12 10:49:27 1999
+++ linux/include/linux/parport.h	Wed May 12 10:33:48 1999
@@ -163,7 +163,7 @@
 	struct pardevice *next;
 	struct pardevice *prev;
 	struct parport_state *state;     /* saved status over preemption */
-	struct wait_queue *wait_q;
+	wait_queue_head_t wait_q;
 	unsigned long int time;
 	unsigned long int timeslice;
 	unsigned int waiting;


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~1999-05-12 17:56 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
1999-05-12  9:02 ppp and parport waitqueue changes for pre-2.3.1 Luca Lizzeri

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox