All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] 2.4.4 breaks VMware
@ 2001-05-02  1:42 tpepper
  2001-05-02  1:52 ` David S. Miller
  2001-05-02  1:56 ` Mohammad A. Haque
  0 siblings, 2 replies; 5+ messages in thread
From: tpepper @ 2001-05-02  1:42 UTC (permalink / raw)
  To: linux-kernel

Despite VMware's webpage claiming compatibility issues with 2.4.x kernels I'd
been using it without any problem until I upgraded to 2.4.4.  I couldn't use
their precompiled modules of course but compiling to match the running kernel
worked fine previously.

This patch replaces a wee bit of code vmware wanted in include/linux/skbuff.h
although I'm guessing it was removed for a reason and vmware should be patched
to use the new method.

--- skbuff.h.orig       Tue May  1 18:41:50 2001
+++ skbuff.h    Tue May  1 18:41:55 2001
@@ -244,6 +244,11 @@
 
 /* Internal */
 #define skb_shinfo(SKB)                ((struct skb_shared_info *)((SKB)->end))
+/* for vmware */
+static inline atomic_t *skb_datarefp(struct sk_buff *skb)
+{
+	return (atomic_t *)(skb->end);
+}
 
 /**
  *     skb_queue_empty - check if a queue is empty


Tim

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-05-03  1:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-02  1:42 [PATCH] 2.4.4 breaks VMware tpepper
2001-05-02  1:52 ` David S. Miller
2001-05-02  1:56 ` Mohammad A. Haque
2001-05-02  4:53   ` Bjoern A. Zeeb
2001-05-03  1:25     ` Gregory T. Norris

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.