EM(rxrpc_badmsg_bad_abort,              "bad-abort")            \
        EM(rxrpc_badmsg_bad_jumbo,              "bad-jumbo")            \
        EM(rxrpc_badmsg_short_ack,              "short-ack")            \
-       EM(rxrpc_badmsg_short_ack_info,         "short-ack-info")       \
+       EM(rxrpc_badmsg_short_ack_trailer,      "short-ack-trailer")    \
        EM(rxrpc_badmsg_short_hdr,              "short-hdr")            \
        EM(rxrpc_badmsg_unsupported_packet,     "unsup-pkt")            \
        EM(rxrpc_badmsg_zero_call,              "zero-call")            \
 
                        struct rxrpc_ackpacket ack;
                };
        } __attribute__((packed)) pkt;
-       struct rxrpc_ackinfo ack_info;
+       struct rxrpc_acktrailer trailer;
        size_t len;
        int ret, ioc;
        u32 serial, mtu, call_id, padding;
        iov[0].iov_len  = sizeof(pkt.whdr);
        iov[1].iov_base = &padding;
        iov[1].iov_len  = 3;
-       iov[2].iov_base = &ack_info;
-       iov[2].iov_len  = sizeof(ack_info);
+       iov[2].iov_base = &trailer;
+       iov[2].iov_len  = sizeof(trailer);
 
        serial = rxrpc_get_next_serial(conn);
 
                pkt.ack.serial          = htonl(skb ? sp->hdr.serial : 0);
                pkt.ack.reason          = skb ? RXRPC_ACK_DUPLICATE : RXRPC_ACK_IDLE;
                pkt.ack.nAcks           = 0;
-               ack_info.rxMTU          = htonl(rxrpc_rx_mtu);
-               ack_info.maxMTU         = htonl(mtu);
-               ack_info.rwind          = htonl(rxrpc_rx_window_size);
-               ack_info.jumbo_max      = htonl(rxrpc_rx_jumbo_max);
+               trailer.maxMTU          = htonl(rxrpc_rx_mtu);
+               trailer.ifMTU           = htonl(mtu);
+               trailer.rwind           = htonl(rxrpc_rx_window_size);
+               trailer.jumbo_max       = htonl(rxrpc_rx_jumbo_max);
                pkt.whdr.flags          |= RXRPC_SLOW_START_OK;
                padding                 = 0;
                iov[0].iov_len += sizeof(pkt.ack);
-               len += sizeof(pkt.ack) + 3 + sizeof(ack_info);
+               len += sizeof(pkt.ack) + 3 + sizeof(trailer);
                ioc = 3;
 
                trace_rxrpc_tx_ack(chan->call_debug_id, serial,
 
 /*
  * Process the extra information that may be appended to an ACK packet
  */
-static void rxrpc_input_ackinfo(struct rxrpc_call *call, struct sk_buff *skb,
-                               struct rxrpc_ackinfo *ackinfo)
+static void rxrpc_input_ack_trailer(struct rxrpc_call *call, struct sk_buff *skb,
+                                   struct rxrpc_acktrailer *trailer)
 {
        struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
        struct rxrpc_peer *peer;
        unsigned int mtu;
        bool wake = false;
-       u32 rwind = ntohl(ackinfo->rwind);
+       u32 rwind = ntohl(trailer->rwind);
 
        if (rwind > RXRPC_TX_MAX_WINDOW)
                rwind = RXRPC_TX_MAX_WINDOW;
        if (call->cong_ssthresh > rwind)
                call->cong_ssthresh = rwind;
 
-       mtu = min(ntohl(ackinfo->rxMTU), ntohl(ackinfo->maxMTU));
+       mtu = min(ntohl(trailer->maxMTU), ntohl(trailer->ifMTU));
 
        peer = call->peer;
        if (mtu < peer->maxdata) {
        struct rxrpc_ack_summary summary = { 0 };
        struct rxrpc_ackpacket ack;
        struct rxrpc_skb_priv *sp = rxrpc_skb(skb);
-       struct rxrpc_ackinfo info;
+       struct rxrpc_acktrailer trailer;
        rxrpc_serial_t ack_serial, acked_serial;
        rxrpc_seq_t first_soft_ack, hard_ack, prev_pkt, since;
        int nr_acks, offset, ioffset;
                goto send_response;
        }
 
-       info.rxMTU = 0;
+       trailer.maxMTU = 0;
        ioffset = offset + nr_acks + 3;
-       if (skb->len >= ioffset + sizeof(info) &&
-           skb_copy_bits(skb, ioffset, &info, sizeof(info)) < 0)
-               return rxrpc_proto_abort(call, 0, rxrpc_badmsg_short_ack_info);
+       if (skb->len >= ioffset + sizeof(trailer) &&
+           skb_copy_bits(skb, ioffset, &trailer, sizeof(trailer)) < 0)
+               return rxrpc_proto_abort(call, 0, rxrpc_badmsg_short_ack_trailer);
 
        if (nr_acks > 0)
                skb_condense(skb);
        }
 
        /* Parse rwind and mtu sizes if provided. */
-       if (info.rxMTU)
-               rxrpc_input_ackinfo(call, skb, &info);
+       if (trailer.maxMTU)
+               rxrpc_input_ack_trailer(call, skb, &trailer);
 
        if (first_soft_ack == 0)
                return rxrpc_proto_abort(call, 0, rxrpc_eproto_ackr_zero);
 
                                 struct rxrpc_txbuf *txb,
                                 u16 *_rwind)
 {
-       struct rxrpc_ackinfo ackinfo;
+       struct rxrpc_acktrailer trailer;
        unsigned int qsize, sack, wrap, to;
        rxrpc_seq_t window, wtop;
        int rsize;
        qsize = (window - 1) - call->rx_consumed;
        rsize = max_t(int, call->rx_winsize - qsize, 0);
        *_rwind = rsize;
-       ackinfo.rxMTU           = htonl(rxrpc_rx_mtu);
-       ackinfo.maxMTU          = htonl(mtu);
-       ackinfo.rwind           = htonl(rsize);
-       ackinfo.jumbo_max       = htonl(jmax);
+       trailer.maxMTU          = htonl(rxrpc_rx_mtu);
+       trailer.ifMTU           = htonl(mtu);
+       trailer.rwind           = htonl(rsize);
+       trailer.jumbo_max       = htonl(jmax);
 
        *ackp++ = 0;
        *ackp++ = 0;
        *ackp++ = 0;
-       memcpy(ackp, &ackinfo, sizeof(ackinfo));
-       return txb->ack.nAcks + 3 + sizeof(ackinfo);
+       memcpy(ackp, &trailer, sizeof(trailer));
+       return txb->ack.nAcks + 3 + sizeof(trailer);
 }
 
 /*
 
 /*
  * ACK packets can have a further piece of information tagged on the end
  */
-struct rxrpc_ackinfo {
-       __be32          rxMTU;          /* maximum Rx MTU size (bytes) [AFS 3.3] */
-       __be32          maxMTU;         /* maximum interface MTU size (bytes) [AFS 3.3] */
+struct rxrpc_acktrailer {
+       __be32          maxMTU;         /* maximum Rx MTU size (bytes) [AFS 3.3] */
+       __be32          ifMTU;          /* maximum interface MTU size (bytes) [AFS 3.3] */
        __be32          rwind;          /* Rx window size (packets) [AFS 3.4] */
        __be32          jumbo_max;      /* max packets to stick into a jumbo packet [AFS 3.5] */
 };