summaryrefslogtreecommitdiff
path: root/ufs
AgeCommit message (Collapse)Author
1995-07-06Removed dependencies that are now automatically generated.Michael I. Bushnell
1995-06-27(diskfs_pager_users/enable_cache): Fix typo.Michael I. Bushnell
Include <unistd.h>.
1995-06-27(diskfs_pager_users): New function.Michael I. Bushnell
1995-06-22(thread_function): Move thread_function to be non-local, of course,Michael I. Bushnell
because it needs to live even after create_disk_pager returns.
1995-06-22(thread_cancel): Typo.Michael I. Bushnell
1995-06-22(thread_cancel): New function (HACK).Michael I. Bushnell
1995-06-22(HURDLIBS): Add libihash.Michael I. Bushnell
1995-06-22(main): Have main thread exit when done instead of calling a diskfsMichael I. Bushnell
function.
1995-06-21(diskfs_sync_everything, diskfs_shutdown_pager): Conform to prototype.Michael I. Bushnell
1995-06-21(diskfs_shutdown_pager): Typos.Michael I. Bushnell
1995-06-21(struct user_pager_info): Drop members next and prevp.Michael I. Bushnell
1995-06-21(pager_clear_user_data): Don't maintain pager linked list.Michael I. Bushnell
(diskfs_get_filemap): Don't maintain pager linked list. (pager_dropweak): New function. (pager_traverse): Delete function. (diskfs_shutdown_pager): Use ports_bucket_iterate instead of pager_traverse. (diskfs_sync_everything): Use ports_bucket_iterate instead of pager_traverse.
1995-06-21(drop_pager_softrefs): Use ports reference calls directly instead ofMichael I. Bushnell
pager wrappers. (allow_pager_softrefs): Likewise. (pager_traverse): Likewise. (diskfs_file_update): Fix typo.
1995-06-21(create_disk_pager): Fork off service thread for pager ports.Michael I. Bushnell
1995-06-21(create_disk_pager): Initialize pager_bucket.Michael I. Bushnell
1995-06-21(pager_bucket): New variable.Michael I. Bushnell
(create_disk_pager): Provide pager_bucket in call to pager_create. (diskfs_get_filemap): Likewise. (diskfs_file_update): Use ports reference calls directly instead of pager wrappers.
1995-06-21(diskfs_truncate): Use ports reference calls directly instead of pagerMichael I. Bushnell
wrappers.
1995-06-21(diskfs_lookup): Provide initialization for BUFLEN.Michael I. Bushnell
(diskfs_direnter): Move assignment out of if test.
1995-06-20(diskfs_grow): Provide initialization of POKE_OFF.Michael I. Bushnell
1995-06-20(ffs_realloccg): Fix typo.Michael I. Bushnell
1995-06-20(fetch_indir_spec): Remove assignment from if test.Michael I. Bushnell
1995-06-20(diskfs_truncate): Remove assignment from if test.Michael I. Bushnell
1995-06-20(ffs_realloccg): Remove assignments from if tests.Michael I. Bushnell
1995-06-20(write_all_disknodes): Typos.Michael I. Bushnell
1995-06-20(diskfs_node_iterate): New function.Michael I. Bushnell
(write_all_disknodes): Use it.
1995-06-14(diskfs_get_translator): Conform to new memory usage semantic.Michael I. Bushnell
1995-05-20(trans_parse_args): Use options_parse & diskfs_standard_startup_options toMiles Bader
parse our translator options. (usage): New function. (parse_opt): New function.
1995-05-20(CPPFLAGS): Add -I../lib, to get include lib include files,Miles Bader
and $(CPPFLAGS-$(notdir $<)) to get file-specific cpp options. Add a vpath for %.c to ../lib, so we can use source files from there.
1995-05-15(pager_clear_user_data): Doc fix.Michael I. Bushnell
1995-05-13(OBJS): Remove exec_server_image.o.Roland McGrath
(exec_server_image.o): Rule removed.
1995-05-08(pager_clear_user_data): Don't die when called on the disk pager.Miles Bader
1995-05-08(diskfs_lookup): When looping back to try_again: because we're looking upMiles Bader
"..", be sure and trash the mapping we made of the directory's pager -- otherwise the reference to the pager never gets dropped and we can never free the node. (diskfs_lookup): ds->type was being compared to LOOKING, which value it can never have. Compare ds->stat against LOOKING instead.
1995-05-08(write_all_disknodes): Fix typo `alloc' --> `alloca'.Miles Bader
1995-05-02(pager_clear_user_data): Acquire pagerlistlock around modifications toMichael I. Bushnell
UPI->next/prevp list structure.
1995-04-28(write_all_disknodes): We have to really lock the nodes around theMichael I. Bushnell
calls to diskfs_set_node_times and write_node; this in turn forces us to have real refereces.
1995-04-13(main): Don't abort if a std file descriptor is already open.Miles Bader
1995-04-05(diskfs_set_translator): When freeing passive translator, account forMichael I. Bushnell
blocks freed in NP->dn_stat.st_blocks.
1995-03-31(diskfs_truncate): Don't acquire writer lock on NP->dn->allocptrlockMichael I. Bushnell
until after forcing delayed copies through; otherwise the pageins will deadlock attempting to get a reader lock to service them. This is safe, because we only need NP->allocsize here, and that can't change as long as we hold NP->lock.
1995-03-20(diskfs_synchronous): New variable.Michael I. Bushnell
1995-03-17More typos.Michael I. Bushnell
1995-03-17(alloc_sync): Typo.Michael I. Bushnell
1995-03-17(ffs_clusteracct): Make static.Michael I. Bushnell
(alloc_sync): New function. (ffs_alloc): Call alloc_sync. (ffs_realloccg): Likewise. (diskfs_alloc_node): Likewise. (ffs_blkfree): Likewise. (diskfs_free_node): Likewise.
1995-01-28(OBJS): Remove reference to libc's devstream.o.Roland McGrath
1994-11-11(diskfs_set_hypermetadata): Deallocate BUF in the right place.Michael I. Bushnell
1994-11-11(diskfs_set_hypermetadata): Always use dev_write_sync to avoidMichael I. Bushnell
device_write bug that says you can't modify the buffer until device_write returns. Also remember to deallocate BUF.
1994-11-10(main): Issue decent prompt.Michael I. Bushnell
1994-11-10(diskfs_set_hypermetadata): Copy CSUM into a page-aligned page-sizedMichael I. Bushnell
buffer for disk write to avoid inane kernel bug.
1994-11-09(main): Behave more reasonably if we can't open DEVNAME.Michael I. Bushnell
1994-11-08entered into RCSRoland McGrath
1994-11-02entered into RCSMichael I. Bushnell