Changeset a1347a7 in mainline for uspace/srv/net/nil/nildummy/nildummy.c
- Timestamp:
- 2012-01-15T13:51:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bd79281
- Parents:
- 03e0a244 (diff), f302586 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/nil/nildummy/nildummy.c
r03e0a244 ra1347a7 345 345 services_t sender) 346 346 { 347 packet_t *p; 348 347 349 fibril_rwlock_read_lock(&nildummy_globals.devices_lock); 348 350 … … 354 356 } 355 357 356 /* Send packet queue */ 357 if (packet) 358 nic_send_message(device->sess, packet_get_id(packet)); 358 p = packet; 359 do { 360 nic_send_frame(device->sess, packet_get_data(p), 361 packet_get_data_length(p)); 362 p = pq_next(p); 363 } while (p != NULL); 364 365 pq_release_remote(nildummy_globals.net_sess, packet_get_id(packet)); 359 366 360 367 fibril_rwlock_read_unlock(&nildummy_globals.devices_lock);
Note:
See TracChangeset
for help on using the changeset viewer.