Pull request
These two .can_receive() are now reviewed. The net subsystem queue for 2.4 is now empty. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQEcBAABAgAGBQJVt3TbAAoJEJykq7OBq3PIxcQH/2LEY8q3zetJdNe9Zu1bQMhQ J/Ah+szCNCCHOpNfQEBI6zRT4wUMZZTlIUM1el2ykYnYqRYd585GK/+RZ0/yWQUG yYNWAFfj/b586+aazk2+BnosSywVjCZ1f32OtaAsh14c+3aoXkQyahljA4onIuVp kLi1psmnBZgRf6AeICnuUTTOYq8BBX6CTg0sxPpIbZe57epwGkK+6gtZV6aSW/Ra lbkhXNrmyyvycGuOLDpyjE3yUvHuwn+H+JFeRklTEA2pKyMg1AYVMrIKvBeQej8u g4+sYYME0rMuFL9iISwVYnkTBjYZnE8+6on2ELkElGvWf28kqb1rYWYciyRhf1Y= =K3Fg -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging Pull request These two .can_receive() are now reviewed. The net subsystem queue for 2.4 is now empty. # gpg: Signature made Tue Jul 28 13:26:03 2015 BST using RSA key ID 81AB73C8 # gpg: Good signature from "Stefan Hajnoczi <stefanha@redhat.com>" # gpg: aka "Stefan Hajnoczi <stefanha@gmail.com>" * remotes/stefanha/tags/net-pull-request: xen: Drop net_rx_ok hw/net: handle flow control in mcf_fec driver receiver Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
b83d017d88
@ -196,12 +196,14 @@ static void mcf_fec_do_tx(mcf_fec_state *s)
|
||||
|
||||
static void mcf_fec_enable_rx(mcf_fec_state *s)
|
||||
{
|
||||
NetClientState *nc = qemu_get_queue(s->nic);
|
||||
mcf_fec_bd bd;
|
||||
|
||||
mcf_fec_read_bd(&bd, s->rx_descriptor);
|
||||
s->rx_enabled = ((bd.flags & FEC_BD_E) != 0);
|
||||
if (!s->rx_enabled)
|
||||
DPRINTF("RX buffer full\n");
|
||||
if (s->rx_enabled) {
|
||||
qemu_flush_queued_packets(nc);
|
||||
}
|
||||
}
|
||||
|
||||
static void mcf_fec_reset(mcf_fec_state *s)
|
||||
@ -397,6 +399,32 @@ static void mcf_fec_write(void *opaque, hwaddr addr,
|
||||
mcf_fec_update(s);
|
||||
}
|
||||
|
||||
static int mcf_fec_have_receive_space(mcf_fec_state *s, size_t want)
|
||||
{
|
||||
mcf_fec_bd bd;
|
||||
uint32_t addr;
|
||||
|
||||
/* Walk descriptor list to determine if we have enough buffer */
|
||||
addr = s->rx_descriptor;
|
||||
while (want > 0) {
|
||||
mcf_fec_read_bd(&bd, addr);
|
||||
if ((bd.flags & FEC_BD_E) == 0) {
|
||||
return 0;
|
||||
}
|
||||
if (want < s->emrbr) {
|
||||
return 1;
|
||||
}
|
||||
want -= s->emrbr;
|
||||
/* Advance to the next descriptor. */
|
||||
if ((bd.flags & FEC_BD_W) != 0) {
|
||||
addr = s->erdsr;
|
||||
} else {
|
||||
addr += 8;
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static ssize_t mcf_fec_receive(NetClientState *nc, const uint8_t *buf, size_t size)
|
||||
{
|
||||
mcf_fec_state *s = qemu_get_nic_opaque(nc);
|
||||
@ -426,18 +454,14 @@ static ssize_t mcf_fec_receive(NetClientState *nc, const uint8_t *buf, size_t si
|
||||
if (size > (s->rcr >> 16)) {
|
||||
flags |= FEC_BD_LG;
|
||||
}
|
||||
/* Check if we have enough space in current descriptors */
|
||||
if (!mcf_fec_have_receive_space(s, size)) {
|
||||
return 0;
|
||||
}
|
||||
addr = s->rx_descriptor;
|
||||
retsize = size;
|
||||
while (size > 0) {
|
||||
mcf_fec_read_bd(&bd, addr);
|
||||
if ((bd.flags & FEC_BD_E) == 0) {
|
||||
/* No descriptors available. Bail out. */
|
||||
/* FIXME: This is wrong. We should probably either save the
|
||||
remainder for when more RX buffers are available, or
|
||||
flag an error. */
|
||||
fprintf(stderr, "mcf_fec: Lost end of frame\n");
|
||||
break;
|
||||
}
|
||||
buf_len = (size <= s->emrbr) ? size: s->emrbr;
|
||||
bd.length = buf_len;
|
||||
size -= buf_len;
|
||||
|
@ -234,27 +234,6 @@ static void net_rx_response(struct XenNetDev *netdev,
|
||||
|
||||
#define NET_IP_ALIGN 2
|
||||
|
||||
static int net_rx_ok(NetClientState *nc)
|
||||
{
|
||||
struct XenNetDev *netdev = qemu_get_nic_opaque(nc);
|
||||
RING_IDX rc, rp;
|
||||
|
||||
if (netdev->xendev.be_state != XenbusStateConnected) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
rc = netdev->rx_ring.req_cons;
|
||||
rp = netdev->rx_ring.sring->req_prod;
|
||||
xen_rmb();
|
||||
|
||||
if (rc == rp || RING_REQUEST_CONS_OVERFLOW(&netdev->rx_ring, rc)) {
|
||||
xen_be_printf(&netdev->xendev, 2, "%s: no rx buffers (%d/%d)\n",
|
||||
__FUNCTION__, rc, rp);
|
||||
return 0;
|
||||
}
|
||||
return 1;
|
||||
}
|
||||
|
||||
static ssize_t net_rx_packet(NetClientState *nc, const uint8_t *buf, size_t size)
|
||||
{
|
||||
struct XenNetDev *netdev = qemu_get_nic_opaque(nc);
|
||||
@ -271,8 +250,7 @@ static ssize_t net_rx_packet(NetClientState *nc, const uint8_t *buf, size_t size
|
||||
xen_rmb(); /* Ensure we see queued requests up to 'rp'. */
|
||||
|
||||
if (rc == rp || RING_REQUEST_CONS_OVERFLOW(&netdev->rx_ring, rc)) {
|
||||
xen_be_printf(&netdev->xendev, 2, "no buffer, drop packet\n");
|
||||
return -1;
|
||||
return 0;
|
||||
}
|
||||
if (size > XC_PAGE_SIZE - NET_IP_ALIGN) {
|
||||
xen_be_printf(&netdev->xendev, 0, "packet too big (%lu > %ld)",
|
||||
@ -304,7 +282,6 @@ static ssize_t net_rx_packet(NetClientState *nc, const uint8_t *buf, size_t size
|
||||
static NetClientInfo net_xen_info = {
|
||||
.type = NET_CLIENT_OPTIONS_KIND_NIC,
|
||||
.size = sizeof(NICState),
|
||||
.can_receive = net_rx_ok,
|
||||
.receive = net_rx_packet,
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user