Changeset 969d88e in mainline for uspace/srv
- Timestamp:
- 2011-04-09T11:04:11Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 534d08e8
- Parents:
- 88ccd8b8 (diff), 17279ead (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
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/devman/devman.c
r88ccd8b8 r969d88e 555 555 } 556 556 557 /** Remember the driver's phone.558 *559 * @param driver The driver.560 * @param phone The phone to the driver.561 */562 void set_driver_phone(driver_t *driver, sysarg_t phone)563 {564 fibril_mutex_lock(&driver->driver_mutex);565 assert(driver->state == DRIVER_STARTING);566 driver->phone = phone;567 fibril_mutex_unlock(&driver->driver_mutex);568 }569 570 557 /** Notify driver about the devices to which it was assigned. 571 558 * … … 685 672 list_initialize(&drv->devices); 686 673 fibril_mutex_initialize(&drv->driver_mutex); 674 drv->phone = -1; 687 675 } 688 676 -
uspace/srv/devman/devman.h
r88ccd8b8 r969d88e 88 88 89 89 /** Phone asociated with this driver. */ 90 sysarg_t phone;90 int phone; 91 91 /** Name of the device driver. */ 92 92 char *name; … … 316 316 317 317 extern driver_t *find_driver(driver_list_t *, const char *); 318 extern void set_driver_phone(driver_t *, sysarg_t);319 318 extern void initialize_running_driver(driver_t *, dev_tree_t *); 320 319 -
uspace/srv/devman/main.c
r88ccd8b8 r969d88e 95 95 /* Find driver structure. */ 96 96 driver = find_driver(&drivers_list, drv_name); 97 98 97 if (driver == NULL) { 99 98 log_msg(LVL_ERROR, "No driver named `%s' was found.", drv_name); … … 107 106 drv_name = NULL; 108 107 108 fibril_mutex_lock(&driver->driver_mutex); 109 110 if (driver->phone >= 0) { 111 /* We already have a connection to the driver. */ 112 log_msg(LVL_ERROR, "Driver '%s' already started.\n", 113 driver->name); 114 fibril_mutex_unlock(&driver->driver_mutex); 115 async_answer_0(iid, EEXISTS); 116 return NULL; 117 } 118 119 switch (driver->state) { 120 case DRIVER_NOT_STARTED: 121 /* Somebody started the driver manually. */ 122 log_msg(LVL_NOTE, "Driver '%s' started manually.\n", 123 driver->name); 124 driver->state = DRIVER_STARTING; 125 break; 126 case DRIVER_STARTING: 127 /* The expected case */ 128 break; 129 case DRIVER_RUNNING: 130 /* Should not happen since we do not have a connected phone */ 131 assert(false); 132 } 133 109 134 /* Create connection to the driver. */ 110 135 log_msg(LVL_DEBUG, "Creating connection to the `%s' driver.", … … 113 138 ipc_callid_t callid = async_get_call(&call); 114 139 if (IPC_GET_IMETHOD(call) != IPC_M_CONNECT_TO_ME) { 140 fibril_mutex_unlock(&driver->driver_mutex); 115 141 async_answer_0(callid, ENOTSUP); 116 142 async_answer_0(iid, ENOTSUP); … … 119 145 120 146 /* Remember driver's phone. */ 121 set_driver_phone(driver, IPC_GET_ARG5(call)); 147 driver->phone = IPC_GET_ARG5(call); 148 149 fibril_mutex_unlock(&driver->driver_mutex); 122 150 123 151 log_msg(LVL_NOTE, … … 578 606 method = DRIVER_CLIENT; 579 607 580 if (driver->phone < =0) {608 if (driver->phone < 0) { 581 609 log_msg(LVL_ERROR, 582 610 "Could not forward to driver `%s' (phone is %d).", … … 618 646 dev = fun->dev; 619 647 620 if (dev->state != DEVICE_USABLE || dev->drv->phone < =0) {648 if (dev->state != DEVICE_USABLE || dev->drv->phone < 0) { 621 649 async_answer_0(iid, EINVAL); 622 650 return; -
uspace/srv/fs/fat/fat_ops.c
r88ccd8b8 r969d88e 722 722 (str_cmp((char *) d->name, FAT_NAME_DOT)) == 0) { 723 723 memset(d, 0, sizeof(fat_dentry_t)); 724 str_cpy((char *) d->name, 8, FAT_NAME_DOT);725 str_cpy((char *) d->ext, 3, FAT_EXT_PAD);724 memcpy(d->name, FAT_NAME_DOT, FAT_NAME_LEN); 725 memcpy(d->ext, FAT_EXT_PAD, FAT_EXT_LEN); 726 726 d->attr = FAT_ATTR_SUBDIR; 727 727 d->firstc = host2uint16_t_le(childp->firstc); … … 732 732 (str_cmp((char *) d->name, FAT_NAME_DOT_DOT) == 0)) { 733 733 memset(d, 0, sizeof(fat_dentry_t)); 734 str_cpy((char *) d->name, 8, FAT_NAME_DOT_DOT);735 str_cpy((char *) d->ext, 3, FAT_EXT_PAD);734 memcpy(d->name, FAT_NAME_DOT_DOT, FAT_NAME_LEN); 735 memcpy(d->ext, FAT_EXT_PAD, FAT_EXT_LEN); 736 736 d->attr = FAT_ATTR_SUBDIR; 737 737 d->firstc = (parentp->firstc == FAT_CLST_ROOT) ? -
uspace/srv/hw/irc/apic/apic.c
r88ccd8b8 r969d88e 56 56 static int apic_enable_irq(sysarg_t irq) 57 57 { 58 / * FIXME: TODO */58 // FIXME: TODO 59 59 return ENOTSUP; 60 60 } -
uspace/srv/net/il/ip/ip.c
r88ccd8b8 r969d88e 365 365 366 366 if (ip_netif->dhcp) { 367 / * TODO dhcp */367 // TODO dhcp 368 368 net_free_settings(configuration, data); 369 369 return ENOTSUP; … … 398 398 } 399 399 } else { 400 / * TODO ipv6 in separate module */400 // TODO ipv6 in separate module 401 401 net_free_settings(configuration, data); 402 402 return ENOTSUP; … … 517 517 ip_netif->dhcp ? "dhcp" : "static"); 518 518 519 / * TODO ipv6 addresses */519 // TODO ipv6 addresses 520 520 521 521 char address[INET_ADDRSTRLEN]; … … 946 946 947 947 /* Greatest multiple of 8 lower than content */ 948 / * TODO even fragmentation? */948 // TODO even fragmentation? 949 949 length = length & ~0x7; 950 950 … … 1212 1212 } 1213 1213 1214 /* Ff the local host is the destination */1214 /* If the local host is the destination */ 1215 1215 if ((route->address.s_addr == dest->s_addr) && 1216 1216 (dest->s_addr != IPV4_LOCALHOST_ADDRESS)) { … … 1279 1279 in_addr_t destination; 1280 1280 1281 / * TODO search set ipopt route? */1281 // TODO search set ipopt route? 1282 1282 destination.s_addr = header->destination_address; 1283 1283 return destination; … … 1321 1321 if ((header->flags & IPFLAG_MORE_FRAGMENTS) || 1322 1322 IP_FRAGMENT_OFFSET(header)) { 1323 / * TODO fragmented */1323 // TODO fragmented 1324 1324 return ENOTSUP; 1325 1325 } … … 1437 1437 phone = ip_prepare_icmp_and_get_phone(0, packet, header); 1438 1438 if (phone >= 0) { 1439 /* ttlexceeded ICMP */1439 /* TTL exceeded ICMP */ 1440 1440 icmp_time_exceeded_msg(phone, ICMP_EXC_TTL, packet); 1441 1441 } … … 1777 1777 if ((type != ICMP_DEST_UNREACH) || 1778 1778 (code != ICMP_HOST_UNREACH)) { 1779 1779 /* No, something else */ 1780 1780 break; 1781 1781 } -
uspace/srv/vfs/vfs_file.c
r88ccd8b8 r969d88e 258 258 if ((fd >= 0) && (fd < MAX_OPEN_FILES)) { 259 259 vfs_file_t *file = FILES[fd]; 260 vfs_file_addref(file); 261 fibril_mutex_unlock(&VFS_DATA->lock); 262 return file; 260 if (file != NULL) { 261 vfs_file_addref(file); 262 fibril_mutex_unlock(&VFS_DATA->lock); 263 return file; 264 } 263 265 } 264 266 fibril_mutex_unlock(&VFS_DATA->lock); -
uspace/srv/vfs/vfs_ops.c
r88ccd8b8 r969d88e 611 611 void vfs_open_node(ipc_callid_t rid, ipc_call_t *request) 612 612 { 613 / * FIXME: check for sanity of the supplied fs, dev and index */613 // FIXME: check for sanity of the supplied fs, dev and index 614 614 615 615 /*
Note:
See TracChangeset
for help on using the changeset viewer.