Changeset 936835e in mainline for uspace/srv
- Timestamp:
- 2010-03-07T15:35:32Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 836dd794
- Parents:
- aadf01e (diff), b5cbff4 (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. - Location:
- uspace/srv/net
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/socket/socket_client.c
raadf01e r936835e 580 580 fibril_rwlock_write_unlock(&socket_globals.lock); 581 581 fibril_condvar_wait(&socket->accept_signal, &socket->accept_lock); 582 // drop the accept lock to avoid deadlock 583 fibril_mutex_unlock(&socket->accept_lock); 582 584 fibril_rwlock_write_lock(&socket_globals.lock); 585 fibril_mutex_lock(&socket->accept_lock); 583 586 } 584 587 -- socket->blocked; … … 801 804 fibril_rwlock_read_unlock(&socket_globals.lock); 802 805 fibril_condvar_wait(&socket->receive_signal, &socket->receive_lock); 806 // drop the receive lock to avoid deadlock 807 fibril_mutex_unlock(&socket->receive_lock); 803 808 fibril_rwlock_read_lock(&socket_globals.lock); 809 fibril_mutex_lock(&socket->receive_lock); 804 810 } 805 811 -- socket->blocked; -
uspace/srv/net/tl/icmp/icmp.c
raadf01e r936835e 175 175 /** Requests an echo message. 176 176 * Sends a packet with specified parameters to the target host and waits for the reply upto the given timeout. 177 * Blocks the caller until the reply or the timeout occur res.177 * Blocks the caller until the reply or the timeout occurs. 178 178 * @param[in] id The message identifier. 179 179 * @param[in] sequence The message sequence parameter. … … 221 221 222 222 /** Tries to set the pending reply result as the received message type. 223 * If the reply data are still present, the reply timeouted and the parent fibril is awaken.224 * The global lock is not released in this case to be reused by the parent fibril.223 * If the reply data is not present, the reply timed out and the other fibril 224 * is already awake. 225 225 * Releases the packet. 226 226 * @param[in] packet The received reply message. … … 334 334 } 335 335 336 // unlock the globals and wait for areply336 // unlock the globals so that we can wait for the reply 337 337 fibril_rwlock_write_unlock(&icmp_globals.lock); 338 338 … … 340 340 icmp_send_packet(ICMP_ECHO, 0, packet, header, 0, ttl, tos, dont_fragment); 341 341 342 // wait for areply342 // wait for the reply 343 343 // timeout in microseconds 344 344 if(ERROR_OCCURRED(fibril_condvar_wait_timeout(&reply->condvar, &reply->mutex, timeout * 1000))){ 345 345 result = ERROR_CODE; 346 347 // lock the globals again and clean up348 fibril_rwlock_write_lock(&icmp_globals.lock);349 346 }else{ 350 347 // read the result 351 348 result = reply->result; 352 353 // release the reply structure 354 fibril_mutex_unlock(&reply->mutex); 355 } 349 } 350 351 // drop the reply mutex before locking the globals again 352 fibril_mutex_unlock(&reply->mutex); 353 fibril_rwlock_write_lock(&icmp_globals.lock); 356 354 357 355 // destroy the reply structure … … 636 634 // set the result 637 635 reply->result = type; 638 // notify the mainfibril636 // notify the waiting fibril 639 637 fibril_condvar_signal(&reply->condvar); 640 }else{ 641 // unlock only if no reply 642 fibril_rwlock_write_unlock(&icmp_globals.lock); 643 } 638 } 639 fibril_rwlock_write_unlock(&icmp_globals.lock); 644 640 return EOK; 645 641 } -
uspace/srv/net/tl/udp/udp.c
raadf01e r936835e 418 418 struct sockaddr * addr; 419 419 size_t addrlen; 420 fibril_rwlock_t lock;421 420 ipc_call_t answer; 422 421 int answer_count; … … 433 432 434 433 socket_cores_initialize(&local_sockets); 435 fibril_rwlock_initialize(&lock);436 434 437 435 while(keep_on_going){ … … 453 451 break; 454 452 case NET_SOCKET: 455 fibril_rwlock_write_lock(&lock);456 453 *SOCKET_SET_SOCKET_ID(answer) = SOCKET_GET_SOCKET_ID(call); 457 454 res = socket_create(&local_sockets, app_phone, NULL, SOCKET_SET_SOCKET_ID(answer)); 458 fibril_rwlock_write_unlock(&lock);459 455 if(res == EOK){ 460 456 if(tl_get_ip_packet_dimension(udp_globals.ip_phone, &udp_globals.dimensions, DEVICE_INVALID_ID, &packet_dimension) == EOK){ … … 469 465 res = data_receive((void **) &addr, &addrlen); 470 466 if(res == EOK){ 471 fibril_rwlock_read_lock(&lock);472 467 fibril_rwlock_write_lock(&udp_globals.lock); 473 468 res = socket_bind(&local_sockets, &udp_globals.sockets, SOCKET_GET_SOCKET_ID(call), addr, addrlen, UDP_FREE_PORTS_START, UDP_FREE_PORTS_END, udp_globals.last_used_port); 474 469 fibril_rwlock_write_unlock(&udp_globals.lock); 475 fibril_rwlock_read_unlock(&lock);476 470 free(addr); 477 471 } … … 480 474 res = data_receive((void **) &addr, &addrlen); 481 475 if(res == EOK){ 482 fibril_rwlock_read_lock(&lock);483 476 fibril_rwlock_write_lock(&udp_globals.lock); 484 477 res = udp_sendto_message(&local_sockets, SOCKET_GET_SOCKET_ID(call), addr, addrlen, SOCKET_GET_DATA_FRAGMENTS(call), SOCKET_SET_DATA_FRAGMENT_SIZE(answer), SOCKET_GET_FLAGS(call)); … … 488 481 answer_count = 2; 489 482 } 490 fibril_rwlock_read_unlock(&lock);491 483 free(addr); 492 484 } 493 485 break; 494 486 case NET_SOCKET_RECVFROM: 495 fibril_rwlock_read_lock(&lock);496 487 fibril_rwlock_write_lock(&udp_globals.lock); 497 488 res = udp_recvfrom_message(&local_sockets, SOCKET_GET_SOCKET_ID(call), SOCKET_GET_FLAGS(call), &addrlen); 498 489 fibril_rwlock_write_unlock(&udp_globals.lock); 499 fibril_rwlock_read_unlock(&lock);500 490 if(res > 0){ 501 491 *SOCKET_SET_READ_DATA_LENGTH(answer) = res; … … 506 496 break; 507 497 case NET_SOCKET_CLOSE: 508 fibril_rwlock_write_lock(&lock);509 498 fibril_rwlock_write_lock(&udp_globals.lock); 510 499 res = socket_destroy(udp_globals.net_phone, SOCKET_GET_SOCKET_ID(call), &local_sockets, &udp_globals.sockets, NULL); 511 500 fibril_rwlock_write_unlock(&udp_globals.lock); 512 fibril_rwlock_write_unlock(&lock);513 501 break; 514 502 case NET_SOCKET_GETSOCKOPT:
Note:
See TracChangeset
for help on using the changeset viewer.