aboutsummaryrefslogtreecommitdiff
path: root/libdiskfs
Commit message (Collapse)AuthorAgeFilesLines
* .Miles Bader1996-08-151-0/+6
|
* (diskfs_extra_version): New (weak) reference.Miles Bader1996-08-151-5/+13
| | | | | (_print_version): Use DISKFS_EXTRA_VERSION. Tweak edit version. Fix type of EV.
* *** empty log message ***Thomas Bushnell1996-08-151-0/+5
|
* (diskfs_S_io_identity): Don't hold lock around call toThomas Bushnell1996-08-151-2/+5
| | | | fshelp_get_identity.
* Don't assume the edit version is <= 26.Miles Bader1996-08-121-8/+12
|
* .Miles Bader1996-08-121-0/+5
|
* (_print_version): Print the edit version too if it's non-zero.Miles Bader1996-08-121-2/+8
|
* *** empty log message ***Thomas Bushnell1996-08-124-6/+32
|
* *** empty log message ***Thomas Bushnell1996-08-072-9/+9
|
* *** empty log message ***Thomas Bushnell1996-08-021-0/+6
|
* (diskfs_S_file_get_translator_cntl): Don't diskfs_nput NP; we neverThomas Bushnell1996-08-011-2/+3
| | | | | created a reference. Just unlock. (And bother to lock it in the first place.)
* .Miles Bader1996-07-281-0/+11
|
* (diskfs_shutdown): Don't sync if DISKFS_READONLY.Miles Bader1996-07-281-1/+1
|
* (diskfs_lookup): Don't nput *NP if we didn't find a file.Miles Bader1996-07-281-1/+1
|
* (diskfs_S_startup_dosync):Miles Bader1996-07-281-18/+25
| | | | | Don't sync if DISKFS_READONLY. Clean up after ourselves.
* (periodic_sync): Don't sync if DISKFS_READONLY.Miles Bader1996-07-281-4/+7
|
* (diskfs_S_fsys_syncfs): Don't sync if DISKFS_READONLY.Miles Bader1996-07-281-3/+6
|
* (diskfs_S_file_syncfs): Don't sync if DISKFS_READONLY.Miles Bader1996-07-281-3/+7
|
* .Miles Bader1996-07-261-0/+12
|
* (diskfs_S_file_exec):Miles Bader1996-07-261-29/+27
| | | | | | | | Unlock NP before we attempt to do setuid/setgid (which otherwise can deadlock during port reauth). Pay attention to the error code returned by fshelp_exec_reauth, and don't make NEWPI if it's an error. Initialize ERR.
* (_print_version): Make return type void.Miles Bader1996-07-231-2/+1
|
* .Miles Bader1996-07-201-0/+1
|
* (diskfs_get_file_device): Don't deallocate the device port we've fetched.Miles Bader1996-07-201-2/+1
|
* .Miles Bader1996-07-201-0/+3
|
* (startup_options, parse_startup_opt): Remove the --version option, which isMiles Bader1996-07-201-6/+0
| | | | handled elsewhere now.
* .Miles Bader1996-07-201-0/+5
|
* (diskfs_get_file_device): INTS[3] contains the number of runs, not the numberMiles Bader1996-07-201-2/+2
| | | | of offsets (which is 2*NUM_RUNS).
* *** empty log message ***Michael I. Bushnell1996-07-192-2/+11
|
* Initial revisionRoland McGrath1996-07-171-0/+2448
|
* (struct disk_image_user): New type.Roland McGrath1996-07-171-6/+12
| | | | | (diskfs_catch_exception, diskfs_end_catch_exception): Use it to maintain a linked list of catchers instead of just one.
* (diskfs_lookup): And do it correctly, at that.Michael I. Bushnell1996-07-161-1/+1
|
* (diskfs_checkdirmod): diskfs_isowner returns error or zero, so invertMichael I. Bushnell1996-07-161-1/+1
| | | | sense of tests.
* (diskfs_lookup): If we get an error from diskfs_checkdirmod,Michael I. Bushnell1996-07-161-1/+5
| | | | diskfs_nput the node we picked up; the caller won't want it.
* (diskfs_rename_dir): When unlocking FDP, only do it if we FDP != TDP.Michael I. Bushnell1996-07-161-29/+33
| | | | | Also, only do step two (changing .. in the directory being moved) if FDP != TDP.
* (diskfs_S_io_reauthenticate): Create send right outside of loop.Michael I. Bushnell1996-07-141-11/+15
|
* (diskfs_S_io_reauthenticate): Repeat diskfs_start_protid andMichael I. Bushnell1996-07-141-10/+19
| | | | auth_server_authenticate for as we get EINTR.
* (diskfs_S_fsys_init): Don't use unsafe MOVE_SEND in call to exec_init.Michael I. Bushnell1996-07-081-1/+2
|
* (diskfs_S_io_reauthenticate): Don't use unsafe MOVE_SEND inMichael I. Bushnell1996-07-081-11/+10
| | | | auth_server_authenticate.
* (_print_version): Include HURD_RELEASE in default.Miles Bader1996-07-071-2/+3
|
* (OTHERSRCS): Add opts-version.c.Miles Bader1996-07-061-1/+1
|
* Initial revisionMiles Bader1996-07-061-0/+40
|
* (diskfs_drop_node): If this might be a special symlink, then truncateMichael I. Bushnell1996-07-061-1/+4
| | | | it even though NP->allocsize might be clear.
* (diskfs_S_io_identity): Use newer interface.Michael I. Bushnell1996-07-031-6/+9
|
* (diskfs_S_io_identity): Fetch identity using fshelp_get_identityMichael I. Bushnell1996-07-031-12/+1
| | | | rather than creating it ourselves.
* (diskfs_make_node): Don't initialize NP->identity.Michael I. Bushnell1996-07-031-1/+0
|
* (diskfs_drop_node): Don't deallocate NP->identity.Michael I. Bushnell1996-07-031-3/+0
|
* (struct node): Remove member `identity'.Michael I. Bushnell1996-07-031-2/+0
|
* (diskfs_startup_diskfs): Don't call diskfs_readonly_changed hereMichael I. Bushnell1996-06-271-4/+0
| | | | anymore.
* (disk_pager_setup): Check diskfs_readonly variable instead of callingMichael I. Bushnell1996-06-271-1/+1
| | | | diskfs_check_readonly.
* (LCLHDRS): Add diskfs-pager.h.Michael I. Bushnell1996-06-271-1/+1
|