i8254xGBe.cc (11701:5e7599457b97) i8254xGBe.cc (11719:e832056deaed)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 2508 unchanged lines hidden (view full) ---

2517 UNSERIALIZE_ARRAY(flash,iGbReg::EEPROM_SIZE);
2518
2519 rxFifo.unserialize("rxfifo", cp);
2520 txFifo.unserialize("txfifo", cp);
2521
2522 bool txPktExists;
2523 UNSERIALIZE_SCALAR(txPktExists);
2524 if (txPktExists) {
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 2508 unchanged lines hidden (view full) ---

2517 UNSERIALIZE_ARRAY(flash,iGbReg::EEPROM_SIZE);
2518
2519 rxFifo.unserialize("rxfifo", cp);
2520 txFifo.unserialize("txfifo", cp);
2521
2522 bool txPktExists;
2523 UNSERIALIZE_SCALAR(txPktExists);
2524 if (txPktExists) {
2525 txPacket = std::make_shared();
2525 txPacket = std::make_shared<EthPacketData>(16384);
2526 txPacket->unserialize("txpacket", cp);
2527 }
2528
2529 rxTick = true;
2530 txTick = true;
2531 txFifoTick = true;
2532
2533 Tick rdtr_time, radv_time, tidv_time, tadv_time, inter_time;

--- 32 unchanged lines hidden ---
2526 txPacket->unserialize("txpacket", cp);
2527 }
2528
2529 rxTick = true;
2530 txTick = true;
2531 txFifoTick = true;
2532
2533 Tick rdtr_time, radv_time, tidv_time, tadv_time, inter_time;

--- 32 unchanged lines hidden ---