* [patch 7/8] hci_usb: replace mb with smp_mb
@ 2008-09-22 21:50 akpm
2008-09-23 2:22 ` David Miller
0 siblings, 1 reply; 3+ messages in thread
From: akpm @ 2008-09-22 21:50 UTC (permalink / raw)
To: davem; +Cc: netdev, akpm, tom.leiming, hidave.darkstar, marcel
From: Ming Lei <tom.leiming@gmail.com>
smp_mb is enough for ordering memory operations among processors,and mb is
more expensive than smp_mb for UP machine, so replace it with smp_mb().
Signed-off-by: Ming Lei <tom.leiming@gmail.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Cc: Dave Young <hidave.darkstar@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/bluetooth/hci_usb.h | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff -puN drivers/bluetooth/hci_usb.h~hci_usb-replace-mb-with-smp_mb drivers/bluetooth/hci_usb.h
--- a/drivers/bluetooth/hci_usb.h~hci_usb-replace-mb-with-smp_mb
+++ a/drivers/bluetooth/hci_usb.h
@@ -70,8 +70,8 @@ static inline void _urb_queue_head(struc
{
unsigned long flags;
spin_lock_irqsave(&q->lock, flags);
- /* _urb_unlink needs to know which spinlock to use, thus mb(). */
- _urb->queue = q; mb(); list_add(&_urb->list, &q->head);
+ /* _urb_unlink needs to know which spinlock to use, thus smp_mb(). */
+ _urb->queue = q; smp_mb(); list_add(&_urb->list, &q->head);
spin_unlock_irqrestore(&q->lock, flags);
}
@@ -79,8 +79,8 @@ static inline void _urb_queue_tail(struc
{
unsigned long flags;
spin_lock_irqsave(&q->lock, flags);
- /* _urb_unlink needs to know which spinlock to use, thus mb(). */
- _urb->queue = q; mb(); list_add_tail(&_urb->list, &q->head);
+ /* _urb_unlink needs to know which spinlock to use, thus smp_mb(). */
+ _urb->queue = q; smp_mb(); list_add_tail(&_urb->list, &q->head);
spin_unlock_irqrestore(&q->lock, flags);
}
@@ -89,7 +89,7 @@ static inline void _urb_unlink(struct _u
struct _urb_queue *q;
unsigned long flags;
- mb();
+ smp_mb();
q = _urb->queue;
/* If q is NULL, it will die at easy-to-debug NULL pointer dereference.
No need to BUG(). */
_
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch 7/8] hci_usb: replace mb with smp_mb
2008-09-22 21:50 [patch 7/8] hci_usb: replace mb with smp_mb akpm
@ 2008-09-23 2:22 ` David Miller
2008-09-23 4:54 ` Marcel Holtmann
0 siblings, 1 reply; 3+ messages in thread
From: David Miller @ 2008-09-23 2:22 UTC (permalink / raw)
To: akpm; +Cc: netdev, tom.leiming, hidave.darkstar, marcel
From: akpm@linux-foundation.org
Date: Mon, 22 Sep 2008 14:50:42 -0700
> smp_mb is enough for ordering memory operations among processors,and mb is
> more expensive than smp_mb for UP machine, so replace it with smp_mb().
>
> Signed-off-by: Ming Lei <tom.leiming@gmail.com>
> Acked-by: Marcel Holtmann <marcel@holtmann.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Since this already ACK'd by Marcel, I've added this to net-next-2.6
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [patch 7/8] hci_usb: replace mb with smp_mb
2008-09-23 2:22 ` David Miller
@ 2008-09-23 4:54 ` Marcel Holtmann
0 siblings, 0 replies; 3+ messages in thread
From: Marcel Holtmann @ 2008-09-23 4:54 UTC (permalink / raw)
To: David Miller; +Cc: akpm, netdev, tom.leiming, hidave.darkstar
Hi Dave,
> > smp_mb is enough for ordering memory operations among processors,and mb is
> > more expensive than smp_mb for UP machine, so replace it with smp_mb().
> >
> > Signed-off-by: Ming Lei <tom.leiming@gmail.com>
> > Acked-by: Marcel Holtmann <marcel@holtmann.org>
> > Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
>
> Since this already ACK'd by Marcel, I've added this to net-next-2.6
that is absolutely fine by me. The hci_usb driver is a dead end and we
do have multiple people now looking at and testing btusb. So expect the
hci_usb driver to go away soon. Either 2.6.28 or 2.6.29.
Regards
Marcel
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-09-23 4:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-22 21:50 [patch 7/8] hci_usb: replace mb with smp_mb akpm
2008-09-23 2:22 ` David Miller
2008-09-23 4:54 ` Marcel Holtmann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).