diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-24 03:31:46 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-24 03:31:46 -0400 |
| commit | 59a49e38711a146dc0bef4837c825b5422335460 (patch) | |
| tree | 7e6e3d1850159f94e5b05d1c5775bd3cc87c3690 /include | |
| parent | 52c1da39534fb382c061de58b65f678ad74b59f5 (diff) | |
| parent | f2d368fa3ef90f2159d9e542303901ebf68144dd (diff) | |
Merge rsync://rsync.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/netdevice.h | 11 | ||||
| -rw-r--r-- | include/linux/pkt_cls.h | 1 | ||||
| -rw-r--r-- | include/linux/rtnetlink.h | 7 | ||||
| -rw-r--r-- | include/linux/skbuff.h | 23 | ||||
| -rw-r--r-- | include/linux/sysctl.h | 1 | ||||
| -rw-r--r-- | include/linux/tc_ematch/tc_em_text.h | 19 | ||||
| -rw-r--r-- | include/linux/tcp.h | 1 | ||||
| -rw-r--r-- | include/linux/textsearch.h | 180 | ||||
| -rw-r--r-- | include/linux/textsearch_fsm.h | 48 | ||||
| -rw-r--r-- | include/net/tcp.h | 4 |
10 files changed, 282 insertions, 13 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index d89816ad642f..3a0ed7f9e801 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h | |||
| @@ -164,12 +164,6 @@ struct netif_rx_stats | |||
| 164 | unsigned total; | 164 | unsigned total; |
| 165 | unsigned dropped; | 165 | unsigned dropped; |
| 166 | unsigned time_squeeze; | 166 | unsigned time_squeeze; |
| 167 | unsigned throttled; | ||
| 168 | unsigned fastroute_hit; | ||
| 169 | unsigned fastroute_success; | ||
| 170 | unsigned fastroute_defer; | ||
| 171 | unsigned fastroute_deferred_out; | ||
| 172 | unsigned fastroute_latency_reduction; | ||
| 173 | unsigned cpu_collision; | 167 | unsigned cpu_collision; |
| 174 | }; | 168 | }; |
| 175 | 169 | ||
| @@ -562,12 +556,9 @@ static inline int unregister_gifconf(unsigned int family) | |||
| 562 | 556 | ||
| 563 | struct softnet_data | 557 | struct softnet_data |
| 564 | { | 558 | { |
| 565 | int throttle; | 559 | struct net_device *output_queue; |
| 566 | int cng_level; | ||
| 567 | int avg_blog; | ||
| 568 | struct sk_buff_head input_pkt_queue; | 560 | struct sk_buff_head input_pkt_queue; |
| 569 | struct list_head poll_list; | 561 | struct list_head poll_list; |
| 570 | struct net_device *output_queue; | ||
| 571 | struct sk_buff *completion_queue; | 562 | struct sk_buff *completion_queue; |
| 572 | 563 | ||
| 573 | struct net_device backlog_dev; /* Sorry. 8) */ | 564 | struct net_device backlog_dev; /* Sorry. 8) */ |
diff --git a/include/linux/pkt_cls.h b/include/linux/pkt_cls.h index d2aa214d6803..25d2d67c1faf 100644 --- a/include/linux/pkt_cls.h +++ b/include/linux/pkt_cls.h | |||
| @@ -408,6 +408,7 @@ enum | |||
| 408 | TCF_EM_NBYTE, | 408 | TCF_EM_NBYTE, |
| 409 | TCF_EM_U32, | 409 | TCF_EM_U32, |
| 410 | TCF_EM_META, | 410 | TCF_EM_META, |
| 411 | TCF_EM_TEXT, | ||
| 411 | __TCF_EM_MAX | 412 | __TCF_EM_MAX |
| 412 | }; | 413 | }; |
| 413 | 414 | ||
diff --git a/include/linux/rtnetlink.h b/include/linux/rtnetlink.h index e68dbf0bf579..d021888b58f1 100644 --- a/include/linux/rtnetlink.h +++ b/include/linux/rtnetlink.h | |||
| @@ -892,10 +892,13 @@ extern void __rta_fill(struct sk_buff *skb, int attrtype, int attrlen, const voi | |||
| 892 | goto rtattr_failure; \ | 892 | goto rtattr_failure; \ |
| 893 | __rta_fill(skb, attrtype, attrlen, data); }) | 893 | __rta_fill(skb, attrtype, attrlen, data); }) |
| 894 | 894 | ||
| 895 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | 895 | #define RTA_APPEND(skb, attrlen, data) \ |
| 896 | ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \ | 896 | ({ if (unlikely(skb_tailroom(skb) < (int)(attrlen))) \ |
| 897 | goto rtattr_failure; \ | 897 | goto rtattr_failure; \ |
| 898 | memcpy(skb_put(skb, RTA_ALIGN(attrlen)), data, attrlen); }) | 898 | memcpy(skb_put(skb, attrlen), data, attrlen); }) |
| 899 | |||
| 900 | #define RTA_PUT_NOHDR(skb, attrlen, data) \ | ||
| 901 | RTA_APPEND(skb, RTA_ALIGN(attrlen), data) | ||
| 899 | 902 | ||
| 900 | #define RTA_PUT_U8(skb, attrtype, value) \ | 903 | #define RTA_PUT_U8(skb, attrtype, value) \ |
| 901 | ({ u8 _tmp = (value); \ | 904 | ({ u8 _tmp = (value); \ |
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index d7c839a21842..416a2e4024b2 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/highmem.h> | 27 | #include <linux/highmem.h> |
| 28 | #include <linux/poll.h> | 28 | #include <linux/poll.h> |
| 29 | #include <linux/net.h> | 29 | #include <linux/net.h> |
| 30 | #include <linux/textsearch.h> | ||
| 30 | #include <net/checksum.h> | 31 | #include <net/checksum.h> |
| 31 | 32 | ||
| 32 | #define HAVE_ALLOC_SKB /* For the drivers to know */ | 33 | #define HAVE_ALLOC_SKB /* For the drivers to know */ |
| @@ -321,6 +322,28 @@ extern void skb_over_panic(struct sk_buff *skb, int len, | |||
| 321 | extern void skb_under_panic(struct sk_buff *skb, int len, | 322 | extern void skb_under_panic(struct sk_buff *skb, int len, |
| 322 | void *here); | 323 | void *here); |
| 323 | 324 | ||
| 325 | struct skb_seq_state | ||
| 326 | { | ||
| 327 | __u32 lower_offset; | ||
| 328 | __u32 upper_offset; | ||
| 329 | __u32 frag_idx; | ||
| 330 | __u32 stepped_offset; | ||
| 331 | struct sk_buff *root_skb; | ||
| 332 | struct sk_buff *cur_skb; | ||
| 333 | __u8 *frag_data; | ||
| 334 | }; | ||
| 335 | |||
| 336 | extern void skb_prepare_seq_read(struct sk_buff *skb, | ||
| 337 | unsigned int from, unsigned int to, | ||
| 338 | struct skb_seq_state *st); | ||
| 339 | extern unsigned int skb_seq_read(unsigned int consumed, const u8 **data, | ||
| 340 | struct skb_seq_state *st); | ||
| 341 | extern void skb_abort_seq_read(struct skb_seq_state *st); | ||
| 342 | |||
| 343 | extern unsigned int skb_find_text(struct sk_buff *skb, unsigned int from, | ||
| 344 | unsigned int to, struct ts_config *config, | ||
| 345 | struct ts_state *state); | ||
| 346 | |||
| 324 | /* Internal */ | 347 | /* Internal */ |
| 325 | #define skb_shinfo(SKB) ((struct skb_shared_info *)((SKB)->end)) | 348 | #define skb_shinfo(SKB) ((struct skb_shared_info *)((SKB)->end)) |
| 326 | 349 | ||
diff --git a/include/linux/sysctl.h b/include/linux/sysctl.h index 72965bfe6cfb..ebfe1250f0a4 100644 --- a/include/linux/sysctl.h +++ b/include/linux/sysctl.h | |||
| @@ -243,6 +243,7 @@ enum | |||
| 243 | NET_CORE_MOD_CONG=16, | 243 | NET_CORE_MOD_CONG=16, |
| 244 | NET_CORE_DEV_WEIGHT=17, | 244 | NET_CORE_DEV_WEIGHT=17, |
| 245 | NET_CORE_SOMAXCONN=18, | 245 | NET_CORE_SOMAXCONN=18, |
| 246 | NET_CORE_BUDGET=19, | ||
| 246 | }; | 247 | }; |
| 247 | 248 | ||
| 248 | /* /proc/sys/net/ethernet */ | 249 | /* /proc/sys/net/ethernet */ |
diff --git a/include/linux/tc_ematch/tc_em_text.h b/include/linux/tc_ematch/tc_em_text.h new file mode 100644 index 000000000000..7cd43e99c7f5 --- /dev/null +++ b/include/linux/tc_ematch/tc_em_text.h | |||
| @@ -0,0 +1,19 @@ | |||
| 1 | #ifndef __LINUX_TC_EM_TEXT_H | ||
| 2 | #define __LINUX_TC_EM_TEXT_H | ||
| 3 | |||
| 4 | #include <linux/pkt_cls.h> | ||
| 5 | |||
| 6 | #define TC_EM_TEXT_ALGOSIZ 16 | ||
| 7 | |||
| 8 | struct tcf_em_text | ||
| 9 | { | ||
| 10 | char algo[TC_EM_TEXT_ALGOSIZ]; | ||
| 11 | __u16 from_offset; | ||
| 12 | __u16 to_offset; | ||
| 13 | __u16 pattern_len; | ||
| 14 | __u8 from_layer:4; | ||
| 15 | __u8 to_layer:4; | ||
| 16 | __u8 pad; | ||
| 17 | }; | ||
| 18 | |||
| 19 | #endif | ||
diff --git a/include/linux/tcp.h b/include/linux/tcp.h index 3ea75dd6640a..dfd93d03f5d2 100644 --- a/include/linux/tcp.h +++ b/include/linux/tcp.h | |||
| @@ -127,6 +127,7 @@ enum { | |||
| 127 | #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */ | 127 | #define TCP_WINDOW_CLAMP 10 /* Bound advertised window */ |
| 128 | #define TCP_INFO 11 /* Information about this connection. */ | 128 | #define TCP_INFO 11 /* Information about this connection. */ |
| 129 | #define TCP_QUICKACK 12 /* Block/reenable quick acks */ | 129 | #define TCP_QUICKACK 12 /* Block/reenable quick acks */ |
| 130 | #define TCP_CONGESTION 13 /* Congestion control algorithm */ | ||
| 130 | 131 | ||
| 131 | #define TCPI_OPT_TIMESTAMPS 1 | 132 | #define TCPI_OPT_TIMESTAMPS 1 |
| 132 | #define TCPI_OPT_SACK 2 | 133 | #define TCPI_OPT_SACK 2 |
diff --git a/include/linux/textsearch.h b/include/linux/textsearch.h new file mode 100644 index 000000000000..941f45ac117a --- /dev/null +++ b/include/linux/textsearch.h | |||
| @@ -0,0 +1,180 @@ | |||
| 1 | #ifndef __LINUX_TEXTSEARCH_H | ||
| 2 | #define __LINUX_TEXTSEARCH_H | ||
| 3 | |||
| 4 | #ifdef __KERNEL__ | ||
| 5 | |||
| 6 | #include <linux/types.h> | ||
| 7 | #include <linux/list.h> | ||
| 8 | #include <linux/kernel.h> | ||
| 9 | #include <linux/module.h> | ||
| 10 | #include <linux/err.h> | ||
| 11 | |||
| 12 | struct ts_config; | ||
| 13 | |||
| 14 | /** | ||
| 15 | * TS_AUTOLOAD - Automatically load textsearch modules when needed | ||
| 16 | */ | ||
| 17 | #define TS_AUTOLOAD 1 | ||
| 18 | |||
| 19 | /** | ||
| 20 | * struct ts_state - search state | ||
| 21 | * @offset: offset for next match | ||
| 22 | * @cb: control buffer, for persistant variables of get_next_block() | ||
| 23 | */ | ||
| 24 | struct ts_state | ||
| 25 | { | ||
| 26 | unsigned int offset; | ||
| 27 | char cb[40]; | ||
| 28 | }; | ||
| 29 | |||
| 30 | /** | ||
| 31 | * struct ts_ops - search module operations | ||
| 32 | * @name: name of search algorithm | ||
| 33 | * @init: initialization function to prepare a search | ||
| 34 | * @find: find the next occurrence of the pattern | ||
| 35 | * @destroy: destroy algorithm specific parts of a search configuration | ||
| 36 | * @get_pattern: return head of pattern | ||
| 37 | * @get_pattern_len: return length of pattern | ||
| 38 | * @owner: module reference to algorithm | ||
| 39 | */ | ||
| 40 | struct ts_ops | ||
| 41 | { | ||
| 42 | const char *name; | ||
| 43 | struct ts_config * (*init)(const void *, unsigned int, int); | ||
| 44 | unsigned int (*find)(struct ts_config *, | ||
| 45 | struct ts_state *); | ||
| 46 | void (*destroy)(struct ts_config *); | ||
| 47 | void * (*get_pattern)(struct ts_config *); | ||
| 48 | unsigned int (*get_pattern_len)(struct ts_config *); | ||
| 49 | struct module *owner; | ||
| 50 | struct list_head list; | ||
| 51 | }; | ||
| 52 | |||
| 53 | /** | ||
| 54 | * struct ts_config - search configuration | ||
| 55 | * @ops: operations of chosen algorithm | ||
| 56 | * @get_next_block: callback to fetch the next block to search in | ||
| 57 | * @finish: callback to finalize a search | ||
| 58 | */ | ||
| 59 | struct ts_config | ||
| 60 | { | ||
| 61 | struct ts_ops *ops; | ||
| 62 | |||
| 63 | /** | ||
| 64 | * get_next_block - fetch next block of data | ||
| 65 | * @consumed: number of bytes consumed by the caller | ||
| 66 | * @dst: destination buffer | ||
| 67 | * @conf: search configuration | ||
| 68 | * @state: search state | ||
| 69 | * | ||
| 70 | * Called repeatedly until 0 is returned. Must assign the | ||
| 71 | * head of the next block of data to &*dst and return the length | ||
| 72 | * of the block or 0 if at the end. consumed == 0 indicates | ||
| 73 | * a new search. May store/read persistant values in state->cb. | ||
| 74 | */ | ||
| 75 | unsigned int (*get_next_block)(unsigned int consumed, | ||
| 76 | const u8 **dst, | ||
| 77 | struct ts_config *conf, | ||
| 78 | struct ts_state *state); | ||
| 79 | |||
| 80 | /** | ||
| 81 | * finish - finalize/clean a series of get_next_block() calls | ||
| 82 | * @conf: search configuration | ||
| 83 | * @state: search state | ||
| 84 | * | ||
| 85 | * Called after the last use of get_next_block(), may be used | ||
| 86 | * to cleanup any leftovers. | ||
| 87 | */ | ||
| 88 | void (*finish)(struct ts_config *conf, | ||
| 89 | struct ts_state *state); | ||
| 90 | }; | ||
| 91 | |||
| 92 | /** | ||
| 93 | * textsearch_next - continue searching for a pattern | ||
| 94 | * @conf: search configuration | ||
| 95 | * @state: search state | ||
| 96 | * | ||
| 97 | * Continues a search looking for more occurrences of the pattern. | ||
| 98 | * textsearch_find() must be called to find the first occurrence | ||
| 99 | * in order to reset the state. | ||
| 100 | * | ||
| 101 | * Returns the position of the next occurrence of the pattern or | ||
| 102 | * UINT_MAX if not match was found. | ||
| 103 | */ | ||
| 104 | static inline unsigned int textsearch_next(struct ts_config *conf, | ||
| 105 | struct ts_state *state) | ||
| 106 | { | ||
| 107 | unsigned int ret = conf->ops->find(conf, state); | ||
| 108 | |||
| 109 | if (conf->finish) | ||
| 110 | conf->finish(conf, state); | ||
| 111 | |||
| 112 | return ret; | ||
| 113 | } | ||
| 114 | |||
| 115 | /** | ||
| 116 | * textsearch_find - start searching for a pattern | ||
| 117 | * @conf: search configuration | ||
| 118 | * @state: search state | ||
| 119 | * | ||
| 120 | * Returns the position of first occurrence of the pattern or | ||
| 121 | * UINT_MAX if no match was found. | ||
| 122 | */ | ||
| 123 | static inline unsigned int textsearch_find(struct ts_config *conf, | ||
| 124 | struct ts_state *state) | ||
| 125 | { | ||
| 126 | state->offset = 0; | ||
| 127 | return textsearch_next(conf, state); | ||
| 128 | } | ||
| 129 | |||
| 130 | /** | ||
| 131 | * textsearch_get_pattern - return head of the pattern | ||
| 132 | * @conf: search configuration | ||
| 133 | */ | ||
| 134 | static inline void *textsearch_get_pattern(struct ts_config *conf) | ||
| 135 | { | ||
| 136 | return conf->ops->get_pattern(conf); | ||
| 137 | } | ||
| 138 | |||
| 139 | /** | ||
| 140 | * textsearch_get_pattern_len - return length of the pattern | ||
| 141 | * @conf: search configuration | ||
| 142 | */ | ||
| 143 | static inline unsigned int textsearch_get_pattern_len(struct ts_config *conf) | ||
| 144 | { | ||
| 145 | return conf->ops->get_pattern_len(conf); | ||
| 146 | } | ||
| 147 | |||
| 148 | extern int textsearch_register(struct ts_ops *); | ||
| 149 | extern int textsearch_unregister(struct ts_ops *); | ||
| 150 | extern struct ts_config *textsearch_prepare(const char *, const void *, | ||
| 151 | unsigned int, int, int); | ||
| 152 | extern void textsearch_destroy(struct ts_config *conf); | ||
| 153 | extern unsigned int textsearch_find_continuous(struct ts_config *, | ||
| 154 | struct ts_state *, | ||
| 155 | const void *, unsigned int); | ||
| 156 | |||
| 157 | |||
| 158 | #define TS_PRIV_ALIGNTO 8 | ||
| 159 | #define TS_PRIV_ALIGN(len) (((len) + TS_PRIV_ALIGNTO-1) & ~(TS_PRIV_ALIGNTO-1)) | ||
| 160 | |||
| 161 | static inline struct ts_config *alloc_ts_config(size_t payload, int gfp_mask) | ||
| 162 | { | ||
| 163 | struct ts_config *conf; | ||
| 164 | |||
| 165 | conf = kmalloc(TS_PRIV_ALIGN(sizeof(*conf)) + payload, gfp_mask); | ||
| 166 | if (conf == NULL) | ||
| 167 | return ERR_PTR(-ENOMEM); | ||
| 168 | |||
| 169 | memset(conf, 0, TS_PRIV_ALIGN(sizeof(*conf)) + payload); | ||
| 170 | return conf; | ||
| 171 | } | ||
| 172 | |||
| 173 | static inline void *ts_config_priv(struct ts_config *conf) | ||
| 174 | { | ||
| 175 | return ((u8 *) conf + TS_PRIV_ALIGN(sizeof(struct ts_config))); | ||
| 176 | } | ||
| 177 | |||
| 178 | #endif /* __KERNEL__ */ | ||
| 179 | |||
| 180 | #endif | ||
diff --git a/include/linux/textsearch_fsm.h b/include/linux/textsearch_fsm.h new file mode 100644 index 000000000000..fdfa078c66e5 --- /dev/null +++ b/include/linux/textsearch_fsm.h | |||
| @@ -0,0 +1,48 @@ | |||
| 1 | #ifndef __LINUX_TEXTSEARCH_FSM_H | ||
| 2 | #define __LINUX_TEXTSEARCH_FSM_H | ||
| 3 | |||
| 4 | #include <linux/types.h> | ||
| 5 | |||
| 6 | enum { | ||
| 7 | TS_FSM_SPECIFIC, /* specific character */ | ||
| 8 | TS_FSM_WILDCARD, /* any character */ | ||
| 9 | TS_FSM_DIGIT, /* isdigit() */ | ||
| 10 | TS_FSM_XDIGIT, /* isxdigit() */ | ||
| 11 | TS_FSM_PRINT, /* isprint() */ | ||
| 12 | TS_FSM_ALPHA, /* isalpha() */ | ||
| 13 | TS_FSM_ALNUM, /* isalnum() */ | ||
| 14 | TS_FSM_ASCII, /* isascii() */ | ||
| 15 | TS_FSM_CNTRL, /* iscntrl() */ | ||
| 16 | TS_FSM_GRAPH, /* isgraph() */ | ||
| 17 | TS_FSM_LOWER, /* islower() */ | ||
| 18 | TS_FSM_UPPER, /* isupper() */ | ||
| 19 | TS_FSM_PUNCT, /* ispunct() */ | ||
| 20 | TS_FSM_SPACE, /* isspace() */ | ||
| 21 | __TS_FSM_TYPE_MAX, | ||
| 22 | }; | ||
| 23 | #define TS_FSM_TYPE_MAX (__TS_FSM_TYPE_MAX - 1) | ||
| 24 | |||
| 25 | enum { | ||
| 26 | TS_FSM_SINGLE, /* 1 occurrence */ | ||
| 27 | TS_FSM_PERHAPS, /* 1 or 0 occurrence */ | ||
| 28 | TS_FSM_ANY, /* 0..n occurrences */ | ||
| 29 | TS_FSM_MULTI, /* 1..n occurrences */ | ||
| 30 | TS_FSM_HEAD_IGNORE, /* 0..n ignored occurrences at head */ | ||
| 31 | __TS_FSM_RECUR_MAX, | ||
| 32 | }; | ||
| 33 | #define TS_FSM_RECUR_MAX (__TS_FSM_RECUR_MAX - 1) | ||
| 34 | |||
| 35 | /** | ||
| 36 | * struct ts_fsm_token - state machine token (state) | ||
| 37 | * @type: type of token | ||
| 38 | * @recur: number of recurrences | ||
| 39 | * @value: character value for TS_FSM_SPECIFIC | ||
| 40 | */ | ||
| 41 | struct ts_fsm_token | ||
| 42 | { | ||
| 43 | __u16 type; | ||
| 44 | __u8 recur; | ||
| 45 | __u8 value; | ||
| 46 | }; | ||
| 47 | |||
| 48 | #endif | ||
diff --git a/include/net/tcp.h b/include/net/tcp.h index e427cf35915c..ec9e20c27179 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h | |||
| @@ -1162,12 +1162,14 @@ extern void tcp_init_congestion_control(struct tcp_sock *tp); | |||
| 1162 | extern void tcp_cleanup_congestion_control(struct tcp_sock *tp); | 1162 | extern void tcp_cleanup_congestion_control(struct tcp_sock *tp); |
| 1163 | extern int tcp_set_default_congestion_control(const char *name); | 1163 | extern int tcp_set_default_congestion_control(const char *name); |
| 1164 | extern void tcp_get_default_congestion_control(char *name); | 1164 | extern void tcp_get_default_congestion_control(char *name); |
| 1165 | extern int tcp_set_congestion_control(struct tcp_sock *tp, const char *name); | ||
| 1165 | 1166 | ||
| 1166 | extern struct tcp_congestion_ops tcp_reno; | 1167 | extern struct tcp_congestion_ops tcp_init_congestion_ops; |
| 1167 | extern u32 tcp_reno_ssthresh(struct tcp_sock *tp); | 1168 | extern u32 tcp_reno_ssthresh(struct tcp_sock *tp); |
| 1168 | extern void tcp_reno_cong_avoid(struct tcp_sock *tp, u32 ack, | 1169 | extern void tcp_reno_cong_avoid(struct tcp_sock *tp, u32 ack, |
| 1169 | u32 rtt, u32 in_flight, int flag); | 1170 | u32 rtt, u32 in_flight, int flag); |
| 1170 | extern u32 tcp_reno_min_cwnd(struct tcp_sock *tp); | 1171 | extern u32 tcp_reno_min_cwnd(struct tcp_sock *tp); |
| 1172 | extern struct tcp_congestion_ops tcp_reno; | ||
| 1171 | 1173 | ||
| 1172 | static inline void tcp_set_ca_state(struct tcp_sock *tp, u8 ca_state) | 1174 | static inline void tcp_set_ca_state(struct tcp_sock *tp, u8 ca_state) |
| 1173 | { | 1175 | { |
