-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 9064 b: refs/heads/master c: 65299d6 h: refs/heads/master v: v3
- Loading branch information
Arnaldo Carvalho de Melo
authored and
David S. Miller
committed
Sep 18, 2005
1 parent
5886e66
commit 40e3214
Showing
3 changed files
with
49 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: ae31c3399d17b1f7bc1742724f70476b5417744f | ||
refs/heads/master: 65299d6c3cfb49cc3eee4fc483e7edd23ea7b2ed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#ifndef _LINUX_TFRC_H_ | ||
#define _LINUX_TFRC_H_ | ||
/* | ||
* include/linux/tfrc.h | ||
* | ||
* Copyright (c) 2005 The University of Waikato, Hamilton, New Zealand. | ||
* Copyright (c) 2005 Ian McDonald <iam4@cs.waikato.ac.nz> | ||
* Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> | ||
* Copyright (c) 2003 Nils-Erik Mattsson, Joacim Haggmark, Magnus Erixzon | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation; either version 2 of the License, or | ||
* (at your option) any later version. | ||
*/ | ||
|
||
#include <linux/types.h> | ||
|
||
struct tfrc_rx_info { | ||
__u32 tfrcrx_x_recv; | ||
__u32 tfrcrx_rtt; | ||
__u32 tfrcrx_p; | ||
}; | ||
|
||
struct tfrc_tx_info { | ||
__u32 tfrctx_x; | ||
__u32 tfrctx_x_recv; | ||
__u32 tfrctx_x_calc; | ||
__u32 tfrctx_rtt; | ||
__u32 tfrctx_p; | ||
__u32 tfrctx_rto; | ||
__u32 tfrctx_ipi; | ||
}; | ||
|
||
#endif /* _LINUX_TFRC_H_ */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters