Changeset 7715994 in mainline for uspace/srv/net/netif/dp8390/dp8390.h


Ignore:
Timestamp:
2010-03-13T12:17:02Z (14 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6ba20a6b
Parents:
d0febca (diff), 2070570 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/net/netif/dp8390/dp8390.h

    rd0febca r7715994  
    255255struct iovec_dat;
    256256//struct iovec_dat_s;
    257 _PROTOTYPE( typedef void (*dp_initf_t), (struct dpeth *dep)             );
    258 _PROTOTYPE( typedef void (*dp_stopf_t), (struct dpeth *dep)             );
    259 _PROTOTYPE( typedef void (*dp_user2nicf_t), (struct dpeth *dep,
     257_PROTOTYPE(typedef void (*dp_initf_t), (struct dpeth *dep)              );
     258_PROTOTYPE(typedef void (*dp_stopf_t), (struct dpeth *dep)              );
     259_PROTOTYPE(typedef void (*dp_user2nicf_t), (struct dpeth *dep,
    260260                        struct iovec_dat *iovp, vir_bytes offset,
    261                         int nic_addr, vir_bytes count)                  );
    262 //_PROTOTYPE( typedef void (*dp_user2nicf_s_t), (struct dpeth *dep,
     261                        int nic_addr, vir_bytes count) );
     262//_PROTOTYPE(typedef void (*dp_user2nicf_s_t), (struct dpeth *dep,
    263263//                      struct iovec_dat_s *iovp, vir_bytes offset,
    264264//                      int nic_addr, vir_bytes count)                  );
    265 _PROTOTYPE( typedef void (*dp_nic2userf_t), (struct dpeth *dep,
     265_PROTOTYPE(typedef void (*dp_nic2userf_t), (struct dpeth *dep,
    266266                        int nic_addr, struct iovec_dat *iovp,
    267                         vir_bytes offset, vir_bytes count)              );
    268 //_PROTOTYPE( typedef void (*dp_nic2userf_s_t), (struct dpeth *dep,
     267                        vir_bytes offset, vir_bytes count) );
     268//_PROTOTYPE(typedef void (*dp_nic2userf_s_t), (struct dpeth *dep,
    269269//                      int nic_addr, struct iovec_dat_s *iovp,
    270270//                      vir_bytes offset, vir_bytes count)              );
    271271//#if 0
    272 //_PROTOTYPE( typedef void (*dp_getheaderf_t), (struct dpeth *dep,
     272//_PROTOTYPE(typedef void (*dp_getheaderf_t), (struct dpeth *dep,
    273273//                      int page, struct dp_rcvhdr *h, u16_t *eth_type) );
    274274//#endif
    275 _PROTOTYPE( typedef void (*dp_getblock_t), (struct dpeth *dep,
     275_PROTOTYPE(typedef void (*dp_getblock_t), (struct dpeth *dep,
    276276                int page, size_t offset, size_t size, void *dst)        );
    277277
     
    313313        /** Outgoing packets queue.
    314314         */
    315         packet_t        packet_queue;
     315        packet_t packet_queue;
    316316        /** Outgoing packets count.
    317317         */
    318         int                     packet_count;
     318        int packet_count;
    319319
    320320        /** Received packets queue.
    321321         */
    322         packet_t        received_queue;
     322        packet_t received_queue;
    323323        /** Received packets count.
    324324         */
    325         int                     received_count;
     325        int received_count;
    326326
    327327        /* The de_base_port field is the starting point of the probe.
Note: See TracChangeset for help on using the changeset viewer.