Changes in uspace/srv/net/ethip/ethip_nic.c [c1694b6b:b7fd2a0] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/net/ethip/ethip_nic.c
rc1694b6b rb7fd2a0 51 51 #include "pdu.h" 52 52 53 static int ethip_nic_open(service_id_t sid);53 static errno_t ethip_nic_open(service_id_t sid); 54 54 static void ethip_nic_cb_conn(ipc_callid_t iid, ipc_call_t *icall, void *arg); 55 55 … … 57 57 static FIBRIL_MUTEX_INITIALIZE(ethip_discovery_lock); 58 58 59 static int ethip_nic_check_new(void)59 static errno_t ethip_nic_check_new(void) 60 60 { 61 61 bool already_known; … … 63 63 service_id_t *svcs; 64 64 size_t count, i; 65 int rc;65 errno_t rc; 66 66 67 67 fibril_mutex_lock(ðip_discovery_lock); … … 147 147 } 148 148 149 static int ethip_nic_open(service_id_t sid)149 static errno_t ethip_nic_open(service_id_t sid) 150 150 { 151 151 bool in_list = false; … … 157 157 return ENOMEM; 158 158 159 int rc = loc_service_get_name(sid, &nic->svc_name);159 errno_t rc = loc_service_get_name(sid, &nic->svc_name); 160 160 if (rc != EOK) { 161 161 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed getting service name."); … … 234 234 uint8_t *addr; 235 235 size_t size; 236 int rc;236 errno_t rc; 237 237 238 238 rc = async_data_write_accept((void **)&addr, false, 0, 0, 0, &size); … … 261 261 ipc_call_t *call) 262 262 { 263 int rc;263 errno_t rc; 264 264 void *data; 265 265 size_t size; … … 324 324 } 325 325 326 int ethip_nic_discovery_start(void)327 { 328 int rc = loc_register_cat_change_cb(ethip_nic_cat_change_cb);326 errno_t ethip_nic_discovery_start(void) 327 { 328 errno_t rc = loc_register_cat_change_cb(ethip_nic_cat_change_cb); 329 329 if (rc != EOK) { 330 330 log_msg(LOG_DEFAULT, LVL_ERROR, "Failed registering callback for NIC " … … 353 353 } 354 354 355 int ethip_nic_send(ethip_nic_t *nic, void *data, size_t size)356 { 357 int rc;355 errno_t ethip_nic_send(ethip_nic_t *nic, void *data, size_t size) 356 { 357 errno_t rc; 358 358 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_send(size=%zu)", size); 359 359 rc = nic_send_frame(nic->sess, data, size); … … 368 368 * 369 369 */ 370 static int ethip_nic_setup_multicast(ethip_nic_t *nic)370 static errno_t ethip_nic_setup_multicast(ethip_nic_t *nic) 371 371 { 372 372 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_setup_multicast()"); … … 425 425 /* Setup the multicast MAC list */ 426 426 427 int rc = nic_multicast_set_mode(nic->sess, NIC_MULTICAST_LIST,427 errno_t rc = nic_multicast_set_mode(nic->sess, NIC_MULTICAST_LIST, 428 428 mac_list, count); 429 429 … … 432 432 } 433 433 434 int ethip_nic_addr_add(ethip_nic_t *nic, inet_addr_t *addr)434 errno_t ethip_nic_addr_add(ethip_nic_t *nic, inet_addr_t *addr) 435 435 { 436 436 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_add()"); … … 445 445 } 446 446 447 int ethip_nic_addr_remove(ethip_nic_t *nic, inet_addr_t *addr)447 errno_t ethip_nic_addr_remove(ethip_nic_t *nic, inet_addr_t *addr) 448 448 { 449 449 log_msg(LOG_DEFAULT, LVL_DEBUG, "ethip_nic_addr_remove()");
Note:
See TracChangeset
for help on using the changeset viewer.