aboutsummaryrefslogtreecommitdiffstats
path: root/xenolinux-2.4.16-sparse/include
diff options
context:
space:
mode:
authorakw27@boulderdash.cl.cam.ac.uk <akw27@boulderdash.cl.cam.ac.uk>2003-02-14 13:15:39 +0000
committerakw27@boulderdash.cl.cam.ac.uk <akw27@boulderdash.cl.cam.ac.uk>2003-02-14 13:15:39 +0000
commit26ebb5b27fe8a6773fe3660bd2ce84823637a3f9 (patch)
tree14113f1a684669cafe41319a6402d5bfcb9cf414 /xenolinux-2.4.16-sparse/include
parent073fcb53a75974c853658d897406b42c7ff4f97f (diff)
downloadxen-26ebb5b27fe8a6773fe3660bd2ce84823637a3f9.tar.gz
xen-26ebb5b27fe8a6773fe3660bd2ce84823637a3f9.tar.bz2
xen-26ebb5b27fe8a6773fe3660bd2ce84823637a3f9.zip
bitkeeper revision 1.22.1.13 (3e4cebfb6eonEmBxQR609x0DlVAf5Q)
updates to enable inter-domain communication. (this requires that the vif's be mapped appropriately by dom0) but now works correctly. Secondly, guest now dev_alloc_skbs the original way.
Diffstat (limited to 'xenolinux-2.4.16-sparse/include')
-rw-r--r--xenolinux-2.4.16-sparse/include/linux/skbuff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/xenolinux-2.4.16-sparse/include/linux/skbuff.h b/xenolinux-2.4.16-sparse/include/linux/skbuff.h
index 54963090f6..fb2e5f15d8 100644
--- a/xenolinux-2.4.16-sparse/include/linux/skbuff.h
+++ b/xenolinux-2.4.16-sparse/include/linux/skbuff.h
@@ -1066,8 +1066,8 @@ static inline struct sk_buff *__dev_alloc_skb(unsigned int length,
{
struct sk_buff *skb;
- //skb = alloc_skb(length+16, gfp_mask);
- skb = alloc_zc_skb(length+16, gfp_mask);
+ skb = alloc_skb(length+16, gfp_mask);
+ //skb = alloc_zc_skb(length+16, gfp_mask);
if (skb)
skb_reserve(skb,16);
return skb;