aboutsummaryrefslogtreecommitdiffstats
path: root/xenolinux-2.4.21-pre4-sparse
diff options
context:
space:
mode:
authorkaf24@labyrinth.cl.cam.ac.uk <kaf24@labyrinth.cl.cam.ac.uk>2003-02-26 17:34:25 +0000
committerkaf24@labyrinth.cl.cam.ac.uk <kaf24@labyrinth.cl.cam.ac.uk>2003-02-26 17:34:25 +0000
commit5f8cbb69be187519af9ecee587d5152be1c00cc2 (patch)
tree41c092eecf11c0cef5fc0fa99bd4a99145f96c98 /xenolinux-2.4.21-pre4-sparse
parent9e7e9110cf9d6383873a825bd805cf8b0740a497 (diff)
downloadxen-5f8cbb69be187519af9ecee587d5152be1c00cc2.tar.gz
xen-5f8cbb69be187519af9ecee587d5152be1c00cc2.tar.bz2
xen-5f8cbb69be187519af9ecee587d5152be1c00cc2.zip
bitkeeper revision 1.105 (3e5cfaa1sTwHu-8MSxs6PpY5y9101Q)
network.c, dev.c: Add compiler barriers to ensure descriptor updates occur before index updates in network code.
Diffstat (limited to 'xenolinux-2.4.21-pre4-sparse')
-rw-r--r--xenolinux-2.4.21-pre4-sparse/arch/xeno/drivers/network/network.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xenolinux-2.4.21-pre4-sparse/arch/xeno/drivers/network/network.c b/xenolinux-2.4.21-pre4-sparse/arch/xeno/drivers/network/network.c
index 8e742007cf..c9acaf43ee 100644
--- a/xenolinux-2.4.21-pre4-sparse/arch/xeno/drivers/network/network.c
+++ b/xenolinux-2.4.21-pre4-sparse/arch/xeno/drivers/network/network.c
@@ -293,7 +293,7 @@ static void network_rx_int(int irq, void *dev_id, struct pt_regs *ptregs)
{
if (np->net_ring->rx_ring[i].status != RING_STATUS_OK)
{
- printk("bad buffer on RX ring!(%d)\n",
+ printk(KERN_ALERT "bad buffer on RX ring!(%d)\n",
np->net_ring->rx_ring[i].status);
continue;
}