aboutsummaryrefslogtreecommitdiff
path: root/sys/ufs
Commit message (Expand)AuthorAgeFilesLines
* The purpose of this change to the FFS layout policy is to reduce theKirk McKusick2013-03-223-70/+175
* When renaming a directory from one parent directory to another,Kirk McKusick2013-03-201-17/+30
* UFS support of the unmapped i/o for the user data buffers.Konstantin Belousov2013-03-195-35/+62
* Do not remap usermode pages into KVA for physio.Konstantin Belousov2013-03-191-2/+2
* Remove negative name cache entry pointing to the target name, whichKonstantin Belousov2013-03-171-0/+1
* Some style fixes.Konstantin Belousov2013-03-141-4/+4
* Add currently unused flag argument to the cluster_read(),Konstantin Belousov2013-03-142-4/+6
* Switch the vm_object mutex to be a rwlock. This will enable in theAttilio Rao2013-03-092-5/+7
* The softdep freeblks workitem might hold a reference on the dquot.Konstantin Belousov2013-02-273-17/+62
* An inode block must not be blockingly read while cg block is owned.Konstantin Belousov2013-02-271-6/+67
* The UFS2 filesystem allocates new blocks of inodes as they are needed.Kirk McKusick2013-02-161-3/+10
* Fix several unsafe pointer dereferences in the buffered_write()Konstantin Belousov2013-02-101-3/+23
* Remove unused MAXSYMLINKLEN macro.Pedro F. Giffuni2013-02-081-4/+0
* UFS: Remove dead assignment.Pedro F. Giffuni2013-02-031-1/+0
* For UFS2 i_blocks is unsigned. The current "sanity" check that itKirk McKusick2013-02-031-3/+3
* Add flags argument to vfs_write_resume() and removeKonstantin Belousov2013-01-114-14/+10
* The process_deferred_inactive() function locks the vnodes of the ufsKonstantin Belousov2013-01-011-1/+1
* Make it possible to atomically resume writes on the mount and accountKonstantin Belousov2012-12-281-2/+1
* Fixup r218424: uio_yield() was scaling directly to userland priority.Attilio Rao2012-12-211-1/+1
* Fix a typo, resulting in the NULL pointer dereference.Konstantin Belousov2012-12-151-1/+1
* r16312 is not any longer real since many years (likely since when VFSAttilio Rao2012-11-191-8/+0
* Fix build of kdump(1).Edward Tomasz Napierala2012-11-181-0/+1
* Add UFS writesuspension mechanism, designed to allow userland processesEdward Tomasz Napierala2012-11-185-10/+384
* - Fix a truncation bug with softdep journaling that could leak blocks onJeff Roberson2012-11-141-39/+100
* - Fix a bug that has existed since the original softdep implementation.Jeff Roberson2012-11-121-14/+27
* Complete MPSAFE VFS interface and remove MNTK_MPSAFE flag.Attilio Rao2012-11-091-2/+2
* - Correct rev 242734, segments can sometimes get stuck. Be a bit moreJeff Roberson2012-11-091-1/+4
* - Implement BIO_FLUSH support around journal entries. This will not 100%Jeff Roberson2012-11-081-16/+121
* When a file is first being written, the dynamic block reallocationKirk McKusick2012-11-032-2/+75
* - In cancel_mkdir_dotdot don't panic if the inodedep is not available. IfJeff Roberson2012-11-021-1/+1
* The r241025 fixed the case when a binary, executed from nullfs mount,Konstantin Belousov2012-11-021-1/+1
* Fix problem with geom_label(4) not recognizing UFS labels on filesystemsEdward Tomasz Napierala2012-10-301-1/+2
* Fix two problems that caused instant panic when the device mountedEdward Tomasz Napierala2012-10-281-2/+7
* Remove the support for using non-mpsafe filesystem modules.Konstantin Belousov2012-10-223-42/+6
* Fix up kernel sources to be ready for a 64-bit ino_t.Matthew D Fleming2012-09-277-53/+63
* Remove unused member of struct indir (in_exists) from UFS and EXT2 code.Mateusz Guzik2012-08-172-4/+0
* After the PHYS_TO_VM_PAGE() function was de-inlined, the main reasonKonstantin Belousov2012-08-051-0/+1
* Use NULL instead of 0 for pointersKevin Lo2012-07-222-4/+4
* Extend the KPI to lock and unlock f_offset member of struct file. ItKonstantin Belousov2012-07-021-5/+2
* Fix unbounded-length malloc, controlled from usermode. The added checkKonstantin Belousov2012-06-211-3/+7
* In softdep_setup_inomapdep() we may have to allocate both inodedepKirk McKusick2012-06-111-14/+41
* Enable vn_io_fault() lock avoidance for UFS.Konstantin Belousov2012-05-302-4/+4
* Implement SEEK_HOLE/SEEK_DATA for UFS.Konstantin Belousov2012-05-261-0/+20
* Add missing `continue' statement at end of case.Kirk McKusick2012-05-181-0/+1
* Remove unused thread argument from ufs_extattr_uepm_lock()/ufs_extattr_uepm_u...Edward Tomasz Napierala2012-04-231-21/+21
* Fix build.Edward Tomasz Napierala2012-04-231-1/+1
* Remove unused thread argument from clear_inodeps() and clear_remove().Edward Tomasz Napierala2012-04-231-11/+8
* Remove unused thread argument to vrecycle().Edward Tomasz Napierala2012-04-231-2/+1
* Remove unused thread argument from vtruncbuf().Edward Tomasz Napierala2012-04-238-18/+14
* Fix use-after-free introduced in r234036.Edward Tomasz Napierala2012-04-211-1/+5