Changes in uspace/lib/net/netif/netif_skel.c [fe8dfa6:774e6d1a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/net/netif/netif_skel.c
rfe8dfa6 r774e6d1a 33 33 /** @file 34 34 * Network interface module skeleton implementation. 35 * @see netif _skel.h35 * @see netif.h 36 36 */ 37 37 … … 52 52 #include <adt/measured_strings.h> 53 53 #include <net/device.h> 54 #include <nil_interface.h> 54 55 #include <netif_skel.h> 55 #include <nil_remote.h>56 56 57 57 DEVICE_MAP_IMPLEMENT(netif_device_map, netif_device_t); … … 130 130 if (result > NETIF_NULL) { 131 131 int phone = device->nil_phone; 132 fibril_rwlock_write_unlock(&netif_globals.lock); 132 133 nil_device_state_msg(phone, device_id, result); 133 fibril_rwlock_write_unlock(&netif_globals.lock);134 134 return EOK; 135 135 } … … 166 166 if (result > NETIF_NULL) { 167 167 int phone = device->nil_phone; 168 fibril_rwlock_write_unlock(&netif_globals.lock); 168 169 nil_device_state_msg(phone, device_id, result); 169 fibril_rwlock_write_unlock(&netif_globals.lock);170 170 return EOK; 171 171 }
Note:
See TracChangeset
for help on using the changeset viewer.