mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Petr Vandrovec <vandrove@vc.cvut.cz>
To: Chip Salzenberg <chip@pobox.com>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] restore skb_copy_datagram, removed from 2.6.11-rc2, breaking VMWare
Date: Sat, 22 Jan 2005 17:26:56 +0100	[thread overview]
Message-ID: <20050122162656.GA32149@vana.vc.cvut.cz> (raw)
In-Reply-To: <20050122160129.GA4693@perlsupport.com>

On Sat, Jan 22, 2005 at 11:01:29AM -0500, Chip Salzenberg wrote:
> Those of you who are using VMWare 4.5 will find that 2.6.11-rc2
> removes the public function "skb_copy_datagram", breaking VMWare
> (and any other module using that interface *sigh*).

There is no need for it.  It is fixed internally, and it will be
part of vmware-any-any-update89 and WS5.0 RC1.
						Petr Vandrovec

> The attached patch restores the (little harmless wrapper) function.
> -- 
> Chip Salzenberg            - a.k.a. -            <chip@pobox.com>
>  "What I cannot create, I do not understand." - Richard Feynman

> 
> --- x/include/linux/skbuff.h.old	2005-01-22 10:03:55.000000000 -0500
> +++ y/include/linux/skbuff.h	2005-01-22 10:42:33.000000000 -0500
> @@ -1087,4 +1087,6 @@
>  extern unsigned int    datagram_poll(struct file *file, struct socket *sock,
>  				     struct poll_table_struct *wait);
> +extern int	       skb_copy_datagram(const struct sk_buff *from,
> +					 int offset, char __user *to, int size);
>  extern int	       skb_copy_datagram_iovec(const struct sk_buff *from,
>  					       int offset, struct iovec *to,
> 
> --- x/net/core/datagram.c.old	2005-01-22 10:03:56.000000000 -0500
> +++ y/net/core/datagram.c	2005-01-22 10:43:40.000000000 -0500
> @@ -200,4 +200,17 @@
>  }
>  
> +/*
> + *	Copy a datagram to a linear buffer.
> + */
> +int skb_copy_datagram(const struct sk_buff *skb, int offset, char __user *to, int size)
> +{
> +	struct iovec iov = {
> +		.iov_base = to,
> +		.iov_len =size,
> +	};
> +
> +	return skb_copy_datagram_iovec(skb, offset, &iov, size);
> +}
> +
>  /**
>   *	skb_copy_datagram_iovec - Copy a datagram to an iovec.
> @@ -478,4 +491,5 @@
>  EXPORT_SYMBOL(datagram_poll);
>  EXPORT_SYMBOL(skb_copy_and_csum_datagram_iovec);
> +EXPORT_SYMBOL(skb_copy_datagram);
>  EXPORT_SYMBOL(skb_copy_datagram_iovec);
>  EXPORT_SYMBOL(skb_free_datagram);


      parent reply	other threads:[~2005-01-22 16:27 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-01-22 16:01 Chip Salzenberg
2005-01-22 16:16 ` Christoph Hellwig
2005-01-22 16:26 ` Petr Vandrovec [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20050122162656.GA32149@vana.vc.cvut.cz \
    --to=vandrove@vc.cvut.cz \
    --cc=chip@pobox.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®