From: Thomas Graf <tgraf@suug.ch>
To: davem@davemloft.net
Cc: netdev@vger.kernel.org, Thomas Graf <tgraf@suug.ch>
Subject: [PATCH 1/8] [TCP] vegas: Use type safe netlink interface
Date: Thu, 22 Mar 2007 23:18:05 +0100 [thread overview]
Message-ID: <20070322221849.272950310@lsx.localdomain> (raw)
In-Reply-To: 20070322221804.000124130@lsx.localdomain
[-- Attachment #1: nl_tcp_vegas --]
[-- Type: text/plain, Size: 985 bytes --]
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Index: net-2.6.22/net/ipv4/tcp_vegas.c
===================================================================
--- net-2.6.22.orig/net/ipv4/tcp_vegas.c 2007-03-22 23:08:48.000000000 +0100
+++ net-2.6.22/net/ipv4/tcp_vegas.c 2007-03-22 23:09:21.000000000 +0100
@@ -341,16 +341,14 @@ static void tcp_vegas_get_info(struct so
{
const struct vegas *ca = inet_csk_ca(sk);
if (ext & (1 << (INET_DIAG_VEGASINFO - 1))) {
- struct tcpvegas_info *info;
+ struct tcpvegas_info info = {
+ .tcpv_enabled = ca->doing_vegas_now,
+ .tcpv_rttcnt = ca->cntRTT,
+ .tcpv_rtt = ca->baseRTT,
+ .tcpv_minrtt = ca->minRTT,
+ };
- info = RTA_DATA(__RTA_PUT(skb, INET_DIAG_VEGASINFO,
- sizeof(*info)));
-
- info->tcpv_enabled = ca->doing_vegas_now;
- info->tcpv_rttcnt = ca->cntRTT;
- info->tcpv_rtt = ca->baseRTT;
- info->tcpv_minrtt = ca->minRTT;
- rtattr_failure: ;
+ nla_put(skb, INET_DIAG_VEGASINFO, sizeof(info), &info);
}
}
--
next prev parent reply other threads:[~2007-03-22 22:21 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-22 22:18 [PATCH 0/8] [RESEND] netlink error magngement + others Thomas Graf
2007-03-22 22:18 ` Thomas Graf [this message]
2007-03-22 22:18 ` [PATCH 2/8] [TCP] westwood: Use type safe netlink interface Thomas Graf
2007-03-22 22:18 ` [PATCH 3/8] [NETLINK]: Remove unused groups variable Thomas Graf
2007-03-22 22:18 ` [PATCH 4/8] [NETLINK]: Ignore !NLM_F_REQUEST messages directly in netlink_run_queue() Thomas Graf
2007-03-22 22:18 ` [PATCH 5/8] [NETLINK]: Ignore control " Thomas Graf
2007-03-22 22:18 ` [PATCH 6/8] [NETLINK]: Remove error pointer from netlink message handler Thomas Graf
2007-03-22 22:18 ` [PATCH 7/8] [IPv4] diag: Use netlink_run_queue() to process the receive queue Thomas Graf
2007-03-22 22:18 ` [PATCH 8/8] [NETLINK]: Directly return -EINTR from netlink_dump_start() Thomas Graf
2007-03-23 6:31 ` [PATCH 0/8] [RESEND] netlink error magngement + others David Miller
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=20070322221849.272950310@lsx.localdomain \
--to=tgraf@suug.ch \
--cc=davem@davemloft.net \
--cc=netdev@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