Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759029Ab1CDIsq (ORCPT ); Fri, 4 Mar 2011 03:48:46 -0500 Received: from proxy.DResearch.DE ([87.193.137.100]:49032 "EHLO mail.dresearch.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751571Ab1CDIsp (ORCPT ); Fri, 4 Mar 2011 03:48:45 -0500 From: Steffen Sledz To: netdev@vger.kernel.org, linux-kernel@vger.kernel.org Cc: "David S. Miller" , Alexey Kuznetsov , "Pekka Savola (ipv6)" , James Morris , Hideaki YOSHIFUJI , Patrick McHardy , Mario Schuknecht , Steffen Sledz Subject: [PATCH resent] tcp: ioctl type SIOCOUTQNSD returns amount of data not sent Date: Fri, 4 Mar 2011 09:48:17 +0100 Message-Id: <1299228497-21246-1-git-send-email-sledz@dresearch.de> X-Mailer: git-send-email 1.7.1 X-OriginalArrivalTime: 04 Mar 2011 08:48:43.0181 (UTC) FILETIME=[F74E85D0:01CBDA48] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2167 Lines: 70 From: Mario Schuknecht In contrast to SIOCOUTQ which returns the amount of data sent but not yet acknowledged plus data not yet sent this patch only returns the data not sent. For various methods of live streaming bitrate control it may be helpful to know how much data are in the tcp outqueue are not sent yet. Signed-off-by: Mario Schuknecht Signed-off-by: Steffen Sledz --- include/asm-generic/ioctls.h | 1 + include/linux/sockios.h | 1 + net/ipv4/tcp.c | 9 +++++++++ 3 files changed, 11 insertions(+), 0 deletions(-) diff --git a/include/asm-generic/ioctls.h b/include/asm-generic/ioctls.h index 199975f..ef2be0b 100644 --- a/include/asm-generic/ioctls.h +++ b/include/asm-generic/ioctls.h @@ -74,6 +74,7 @@ #define TCSETXW 0x5435 #define TIOCSIG _IOW('T', 0x36, int) /* pty: generate signal */ #define TIOCVHANGUP 0x5437 +#define TIOCOUTQNSD 0x5438 #define FIONCLEX 0x5450 #define FIOCLEX 0x5451 diff --git a/include/linux/sockios.h b/include/linux/sockios.h index 241f179..4c5ca47 100644 --- a/include/linux/sockios.h +++ b/include/linux/sockios.h @@ -23,6 +23,7 @@ /* Linux-specific socket ioctls */ #define SIOCINQ FIONREAD #define SIOCOUTQ TIOCOUTQ +#define SIOCOUTQNSD TIOCOUTQNSD /* Routing table calls. */ #define SIOCADDRT 0x890B /* add routing table entry */ diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index a17a5a7..b22d450 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -505,6 +505,15 @@ int tcp_ioctl(struct sock *sk, int cmd, unsigned long arg) else answ = tp->write_seq - tp->snd_una; break; + case SIOCOUTQNSD: + if (sk->sk_state == TCP_LISTEN) + return -EINVAL; + + if ((1 << sk->sk_state) & (TCPF_SYN_SENT | TCPF_SYN_RECV)) + answ = 0; + else + answ = tp->write_seq - tp->snd_nxt; + break; default: return -ENOIOCTLCMD; } -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/