Changes in / [89beb08:ea6a824] in mainline
- Location:
- uspace/drv/usbhub
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/usbhub/main.c
r89beb08 rea6a824 42 42 43 43 usb_general_list_t usb_hub_list; 44 f ibril_mutex_t usb_hub_list_lock;44 futex_t usb_hub_list_lock; 45 45 46 46 static driver_ops_t hub_driver_ops = { … … 65 65 { 66 66 usb_dprintf_enable(NAME, 0); 67 68 fibril_mutex_initialize(&usb_hub_list_lock); 69 fibril_mutex_lock(&usb_hub_list_lock); 67 68 futex_initialize(&usb_hub_list_lock, 0); 70 69 usb_lst_init(&usb_hub_list); 71 f ibril_mutex_unlock(&usb_hub_list_lock);70 futex_up(&usb_hub_list_lock); 72 71 73 72 fid_t fid = fibril_create(usb_hub_control_loop, NULL); -
uspace/drv/usbhub/usbhub.c
r89beb08 rea6a824 203 203 204 204 //add the hub to list 205 f ibril_mutex_lock(&usb_hub_list_lock);205 futex_down(&usb_hub_list_lock); 206 206 usb_lst_append(&usb_hub_list, hub_info); 207 f ibril_mutex_unlock(&usb_hub_list_lock);207 futex_up(&usb_hub_list_lock); 208 208 209 209 dprintf(1, "hub info added to list"); … … 445 445 */ 446 446 usb_general_list_t * lst_item; 447 f ibril_mutex_lock(&usb_hub_list_lock);447 futex_down(&usb_hub_list_lock); 448 448 for (lst_item = usb_hub_list.next; 449 449 lst_item != &usb_hub_list; 450 450 lst_item = lst_item->next) { 451 f ibril_mutex_unlock(&usb_hub_list_lock);451 futex_up(&usb_hub_list_lock); 452 452 usb_hub_info_t * hub_info = ((usb_hub_info_t*)lst_item->data); 453 453 /* … … 488 488 489 489 if (opResult != EOK) { 490 free(change_bitmap);491 490 dprintf(1, "something went wrong while getting status of hub"); 492 491 continue; … … 504 503 505 504 ipc_hangup(hc); 506 f ibril_mutex_lock(&usb_hub_list_lock);507 } 508 f ibril_mutex_unlock(&usb_hub_list_lock);505 futex_down(&usb_hub_list_lock); 506 } 507 futex_up(&usb_hub_list_lock); 509 508 } 510 509 -
uspace/drv/usbhub/usbhub_private.h
r89beb08 rea6a824 43 43 #include <bool.h> 44 44 #include <driver.h> 45 #include <f ibril_synch.h>45 #include <futex.h> 46 46 47 47 #include <usb/usb.h> … … 82 82 83 83 /** Lock for hub list*/ 84 extern f ibril_mutex_t usb_hub_list_lock;84 extern futex_t usb_hub_list_lock; 85 85 86 86
Note:
See TracChangeset
for help on using the changeset viewer.