From: Anthony Liguori <aliguori@us.ibm.com>
To: christophe.devriese@eurid.eu
Cc: xen-devel@lists.xensource.com
Subject: Re: PATCH: Multicast support for linux-2.6.16-xen
Date: Tue, 02 May 2006 10:27:29 -0500 [thread overview]
Message-ID: <44577A61.5070405@us.ibm.com> (raw)
In-Reply-To: <200605021619.19771.christophe.devriese@eurid.eu>
Christophe Devriese wrote:
> On Tuesday 02 May 2006 16:11, Keir Fraser wrote:
>
>> On 2 May 2006, at 14:24, Christophe Devriese wrote:
>>
>>> I would really like this patch to be merged in. Linux's bridging code
>>> treats
>>> multicasts as broadcasts, so this very simple code enables linux to
>>> run stuff
>>> like vrrpd inside xen, allowing various kinds of failover scenarios not
>>> possible without this patch.
>>>
>> Send us a unified diff (diff -u) as an attachment or plain-text at the
>> end of your email, and we'll consider it.
>>
>
> Here you go :
>
You need a Signed-off-by line. Also, when creating patches, it's best
to do it from the very top of the tree. Better yet, use hg diff.
Regards,
Anthony Liguori
> --- netfront.c 2006-04-10 00:05:52.000000000 +0200
> +++ netfront-new.c 2006-05-02 15:21:17.000000000 +0200
> @@ -1096,6 +1096,14 @@
> .set_tx_csum = ethtool_op_set_tx_csum,
> };
>
> +/** Set the multicast list
> + * since this interface is going to be connected by the linux bridging
> + * code, which broadcasts any and all multicasts are broadcasted by the
> + * linux bridge, this does not actually the need to do anything
> + */
> +static void network_set_multicast_list(struct net_device *dev) {
> +}
> +
> /** Create a network device.
> * @param handle device handle
> * @param val return parameter for created device
> @@ -1165,6 +1173,7 @@
> netdev->stop = network_close;
> netdev->get_stats = network_get_stats;
> netdev->poll = netif_poll;
> + netdev->set_multicast_list = network_set_multicast_list;
> netdev->uninit = netif_uninit;
> netdev->weight = 64;
> netdev->features = NETIF_F_IP_CSUM;
>
>
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel
>
next prev parent reply other threads:[~2006-05-02 15:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-05-02 13:24 PATCH: Multicast support for linux-2.6.16-xen Christophe Devriese
2006-05-02 14:11 ` Keir Fraser
2006-05-02 14:19 ` Christophe Devriese
2006-05-02 15:27 ` Anthony Liguori [this message]
2006-05-03 8:47 ` Christophe Devriese
2006-05-03 9:30 ` Keir Fraser
2006-05-03 15:22 ` Nivedita Singhvi
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=44577A61.5070405@us.ibm.com \
--to=aliguori@us.ibm.com \
--cc=christophe.devriese@eurid.eu \
--cc=xen-devel@lists.xensource.com \
/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 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.