aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrea Bittau <a.bittau@cs.ucl.ac.uk>2006-11-21 16:17:10 -0200
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-02 21:30:31 -0800
commit0bd4ff1b1528a39b07aab6c744ac37e053740ad0 (patch)
treecfe5ffd795eafd6e69260b23aa50639ea7b382f5
parent[DECNET] address: Convert to new netlink interface (diff)
downloadlinux-dev-0bd4ff1b1528a39b07aab6c744ac37e053740ad0.tar.xz
linux-dev-0bd4ff1b1528a39b07aab6c744ac37e053740ad0.zip
[DCCP] ackvec: Remove unused dccpav_ack_ptr field from dccp_ackvec
Commiter note: original patch was splitted. Signed-off-by: Andrea Bittau <a.bittau@cs.ucl.ac.uk> Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
-rw-r--r--net/dccp/ackvec.c1
-rw-r--r--net/dccp/ackvec.h2
2 files changed, 0 insertions, 3 deletions
diff --git a/net/dccp/ackvec.c b/net/dccp/ackvec.c
index 1b4b60d8bdec..215355d993de 100644
--- a/net/dccp/ackvec.c
+++ b/net/dccp/ackvec.c
@@ -141,7 +141,6 @@ struct dccp_ackvec *dccp_ackvec_alloc(const gfp_t priority)
av->dccpav_buf_head = DCCP_MAX_ACKVEC_LEN - 1;
av->dccpav_buf_ackno = DCCP_MAX_SEQNO + 1;
av->dccpav_buf_nonce = av->dccpav_buf_nonce = 0;
- av->dccpav_ack_ptr = 0;
av->dccpav_time.tv_sec = 0;
av->dccpav_time.tv_usec = 0;
av->dccpav_vec_len = 0;
diff --git a/net/dccp/ackvec.h b/net/dccp/ackvec.h
index cf8f20ce23a9..d6a58db5fb13 100644
--- a/net/dccp/ackvec.h
+++ b/net/dccp/ackvec.h
@@ -41,7 +41,6 @@
* Ack Vectors it has recently sent. For each packet sent carrying an
* Ack Vector, it remembers four variables:
*
- * @dccpav_ack_ptr - the value of buf_head at the time of acknowledgement.
* @dccpav_records - list of dccp_ackvec_record
* @dccpav_ack_nonce - the one-bit sum of the ECN Nonces for all State 0.
*
@@ -53,7 +52,6 @@ struct dccp_ackvec {
struct list_head dccpav_records;
struct timeval dccpav_time;
u8 dccpav_buf_head;
- u8 dccpav_ack_ptr;
u8 dccpav_vec_len;
u8 dccpav_buf_nonce;
u8 dccpav_ack_nonce;