DPDK patches and discussions
 help / color / mirror / Atom feed
From: Vijayakumar Muthuvel Manickam <mmvijay@gmail.com>
To: dev@dpdk.org
Subject: [dpdk-dev] [PATCH v2] kni: Add link status update
Date: Mon, 15 Jun 2015 04:21:43 -0400	[thread overview]
Message-ID: <1434356503-7747-1-git-send-email-mmvijay@gmail.com> (raw)
In-Reply-To: <F35DEAC7BCE34641BA9FAC6BCA4A12E70A881D40@SHSMSX104.ccr.corp.intel.com>

Implement .ndo_change_carrier to enable
DPDK applications to propagate link state changes to
kni virtual interfaces through sysfs

Signed-off-by: Vijayakumar Muthuvel Manickam <mmvijay@gmail.com>
---
Implemented .ndo_change_carrier instead of adding a new ioctl

 lib/librte_eal/linuxapp/kni/kni_net.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/lib/librte_eal/linuxapp/kni/kni_net.c b/lib/librte_eal/linuxapp/kni/kni_net.c
index dd95db5..10c94ce 100644
--- a/lib/librte_eal/linuxapp/kni/kni_net.c
+++ b/lib/librte_eal/linuxapp/kni/kni_net.c
@@ -632,6 +632,15 @@ static int kni_net_set_mac(struct net_device *netdev, void *p)
 	return 0;
 }
 
+static int kni_net_change_carrier(struct net_device *dev, bool new_carrier)
+{
+	if (new_carrier)
+		netif_carrier_on(dev);
+	else
+		netif_carrier_off(dev);
+	return 0;
+}
+
 static const struct header_ops kni_net_header_ops = {
 	.create  = kni_net_header,
 	.rebuild = kni_net_rebuild_header,
@@ -648,6 +657,7 @@ static const struct net_device_ops kni_net_netdev_ops = {
 	.ndo_get_stats = kni_net_stats,
 	.ndo_tx_timeout = kni_net_tx_timeout,
 	.ndo_set_mac_address = kni_net_set_mac,
+	.ndo_change_carrier = kni_net_change_carrier,
 };
 
 void
-- 
1.8.1.4

  reply	other threads:[~2015-06-15  8:22 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-18 23:33 [dpdk-dev] [PATCH] " Vijayakumar Muthuvel Manickam
2015-05-19  0:54 ` Zhang, Helin
2015-06-15  0:57   ` Zhang, Helin
2015-06-15  1:11     ` Vijayakumar Muthuvel Manickam
2015-06-15  1:12       ` Zhang, Helin
2015-06-15  8:21         ` Vijayakumar Muthuvel Manickam [this message]
2015-06-15 16:09           ` [dpdk-dev] [PATCH v2] " Stephen Hemminger
2015-06-16  6:39             ` [dpdk-dev] [PATCH v3] " Vijayakumar Muthuvel Manickam
2015-06-16  7:33               ` Zhang, Helin
2015-06-16 14:29                 ` Thomas Monjalon
2015-05-19  3:11 ` [dpdk-dev] [PATCH] " Stephen Hemminger

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=1434356503-7747-1-git-send-email-mmvijay@gmail.com \
    --to=mmvijay@gmail.com \
    --cc=dev@dpdk.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;
as well as URLs for NNTP newsgroup(s).