| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
| |
ints.
|
|
|
|
|
|
|
|
|
|
|
|
| |
Change VM/UVM to use buf_replacevnode to change the vnode associated
with a buffer.
Addition v_bioflag for flags written in interrupt handlers
(and read at splbio, though not strictly necessary)
Add vwaitforio and use it instead of a while loop of v_numoutput.
Fix race conditions when manipulation vnode free list
|
|
|
|
| |
file system inode instead
|
|
|
|
| |
Snapshot-related code has been commented out.
|
| |
|
| |
|
|
|
|
| |
From NetBSD.
|
| |
|
| |
|
|
|
|
|
| |
Handle this when syncing filesystems when unmounting.
From NetBSD.
|
|
|
|
| |
of looking at v_dirtyblkhd.
|
| |
|
|
|
|
| |
disappear (detach is coming).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
fstatfs(2), and getfsstat(2) so you will need to build a new kernel
before doing a "make build" or you will get "unimplemented syscall" errors.
The new struct statfs has the following featuires:
o Has a u_int32_t flags field--now softdep can have a real flag.
o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man
page used to lie about setting invalid/unused fields to -1. SunOS does
that but our code never has.
o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9
and having it there but always 0 is confusing. It is conceivable
that this may cause some old code to not compile but that is better
than silently breaking.
o Adds a mount_info union that contains the FSTYPE_args struct. This
means that "mount" can now tell you all the options a filesystem was
mounted with. This is especially nice for NFS.
Other changes:
o The linux statfs emulation didn't convert between BSD fs names
and linux f_type numbers. Now it does, since the BSD f_type
number is useless to linux apps (and has been removed anyway)
o FreeBSD's struct statfs is different from our (both old and new)
and thus needs conversion. Previously, the OpenBSD syscalls
were used without any real translation.
o mount(8) will now show extra info when invoked with no arguments.
However, to see *everything* you need to use the -v (verbose) flag.
|
|
|
|
|
| |
applications in system like power management and such.
art@ finally said `commit it'
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
in DIAGNOSTIC mode.
Added documentation to vfs_subr.c on locking needs of a couple calls.
Improvements to the vinvalbuf patch. We need to start over after we
let our pants down.
|
|
|
|
| |
had insufficient protection
|
| |
|
|
|
|
|
| |
Integrate cleaner ffs mount code from FreeBSD. Most notably, this mount
code prevents you from mounting an unclean file system read-write.
|
|
|
|
|
|
|
|
|
|
| |
- VNODE gets placed on free list
- VOP_INACTIVE is called
This was the original order. It was changed in an earlier patch due to
a race condition in non-locking FSes (like NFS) between getnewvnode
and inactive. However, the modified order had its own race conditions, so
it turned out not to be a good choice.
|
|
|
|
| |
Error diagnostics in vputonfreelist to catch violations of assumptions.
|
|
|
|
|
|
|
|
|
|
|
|
| |
to be vop_generic_revoke, vop_generic_bwrite, vop_generic_islocked,
vop_generic_lock and vop_generic_unlock.
Create vop_generic_abortop and propogate change to all file systems.
Fix PR/371.
Get rid of locking in NULLFS (should be mostly unnecessary now except for
forced unmounts).
|
| |
|
| |
|
| |
|
|
|
|
| |
for the syncer daemon as well as default VOP_*.
|
| |
|
|
|
|
| |
Disabled vop_nolock for now. Filesystems still need to be cleaned up.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
Enable CTL_FS processing by sysctl(3)
Add CTL_FS request to disable clearing SUID / SGID bit when a files owner
or group is changed by root
Make sysctl(8) understand CTL_FS requests
|