| Commit message (Expand) | Author | Age | Files | Lines |
* | cluster_write(): do not access buffer after it is released | Konstantin Belousov | 2021-09-09 | 1 | -3/+8 |
* | Delete dead CLUSTERDEBUG config option. | Konstantin Belousov | 2021-02-28 | 1 | -8/+0 |
* | Make MAXPHYS tunable. Bump MAXPHYS to 1M. | Konstantin Belousov | 2020-11-28 | 1 | -0/+2 |
* | vfs: fix trivial whitespace issues which don't interefere with blame | Mateusz Guzik | 2020-07-10 | 1 | -1/+1 |
* | Remove duplicated empty lines from kern/*.c | Mateusz Guzik | 2020-01-30 | 1 | -1/+0 |
* | Do not use waitable allocation of pbuf when creating cluster for write. | Konstantin Belousov | 2019-12-23 | 1 | -2/+1 |
* | Currently the breadn_flags() and getblkx() interfaces are passed | Kirk McKusick | 2019-12-03 | 1 | -1/+1 |
* | Drop the object lock in vfs_bio and cluster where it is now safe to do so. | Jeff Roberson | 2019-10-29 | 1 | -16/+2 |
* | (4/6) Protect page valid with the busy lock. | Jeff Roberson | 2019-10-15 | 1 | -5/+7 |
* | (1/6) Replace busy checks with acquires where it is trival to do so. | Jeff Roberson | 2019-10-15 | 1 | -9/+9 |
* | The VFS-level clustering code collects together sequential blocks | Kirk McKusick | 2019-09-17 | 1 | -2/+20 |
* | Use an atomic reference count for paging in progress so that callers do not | Jeff Roberson | 2019-08-19 | 1 | -1/+2 |
* | Allocate pager bufs from UMA instead of 80-ish mutex protected linked list. | Gleb Smirnoff | 2019-01-15 | 1 | -5/+15 |
* | ANSIfy sys/kern | Ed Maste | 2018-06-01 | 1 | -2/+1 |
* | Detect and optimize reads from the hole on UFS. | Konstantin Belousov | 2018-05-13 | 1 | -11/+17 |
* | sys: further adoption of SPDX licensing ID tags. | Pedro F. Giffuni | 2017-11-20 | 1 | -0/+2 |
* | Move bogus_page declaration to vm_page.h and initialization to vm_page.c. | Gleb Smirnoff | 2017-01-04 | 1 | -3/+0 |
* | Add BUF_TRACKING and FULL_BUF_TRACKING buffer debugging | Conrad Meyer | 2016-10-31 | 1 | -0/+1 |
* | Renumber license clauses in sys/kern to avoid skipping #3 | Ed Maste | 2016-09-15 | 1 | -1/+1 |
* | Remove b_pin_count from struct buf. | Mark Johnston | 2016-08-11 | 1 | -14/+0 |
* | sys/kern: spelling fixes in comments. | Pedro F. Giffuni | 2016-04-29 | 1 | -1/+1 |
* | kern: for pointers replace 0 with NULL. | Pedro F. Giffuni | 2016-04-15 | 1 | -1/+1 |
* | Add four new RCTL resources - readbps, readiops, writebps and writeiops, | Edward Tomasz Napierala | 2016-04-07 | 1 | -0/+15 |
* | The bread() function was inconsistent about whether it would return | Kirk McKusick | 2016-01-27 | 1 | -4/+14 |
* | Refactor unmapped buffer address handling. | Jeff Roberson | 2015-07-23 | 1 | -7/+3 |
* | Remove several write-only variables, all reported by the gcc 4.9 | Konstantin Belousov | 2015-05-29 | 1 | -2/+0 |
* | When allocating a pbuf for the cluster write, do not sleep waiting | Konstantin Belousov | 2013-08-27 | 1 | -1/+3 |
* | Fix a whitespace. | Jung-uk Kim | 2013-08-23 | 1 | -1/+1 |
* | Both cluster_rbuild() and cluster_wbuild() sometimes set the pages | Konstantin Belousov | 2013-08-22 | 1 | -9/+26 |
* | The soft and hard busy mechanism rely on the vm object lock to work. | Attilio Rao | 2013-08-09 | 1 | -3/+3 |
* | - Convert the bufobj lock to rwlock. | Jeff Roberson | 2013-05-31 | 1 | -8/+7 |
* | Add a sysctl vfs.read_min to complement the exiting vfs.read_max. It | Scott Long | 2013-05-07 | 1 | -0/+12 |
* | Implement the concept of the unmapped VMIO buffers, i.e. buffers which | Konstantin Belousov | 2013-03-19 | 1 | -41/+64 |
* | Some style fixes. | Konstantin Belousov | 2013-03-14 | 1 | -1/+1 |
* | Add currently unused flag argument to the cluster_read(), | Konstantin Belousov | 2013-03-14 | 1 | -16/+8 |
* | Switch the vm_object mutex to be a rwlock. This will enable in the | Attilio Rao | 2013-03-09 | 1 | -12/+12 |
* | Add barrier write capability to the VFS buffer interface. A barrier | Kirk McKusick | 2013-02-16 | 1 | -3/+9 |
* | Correct a KASSERT message. | Alan Cox | 2012-08-15 | 1 | -1/+1 |
* | Unbreak detection of the async mode for clustered writes after r231075. | Konstantin Belousov | 2012-02-08 | 1 | -1/+1 |
* | The hardware has caught up; improvements are now observed even at 128, | Ivan Voras | 2011-03-16 | 1 | -1/+1 |
* | Bumping the read-ahead count once more, to value equivalent to 512 KiB on | Ivan Voras | 2010-08-09 | 1 | -1/+1 |
* | To help with sequential read UFS performance on modern systems, increase | Ivan Voras | 2010-08-07 | 1 | -1/+1 |
* | Remove a stale comment. The very same revision (r85511) that introduced | Alan Cox | 2009-06-30 | 1 | -3/+0 |
* | Correct a long-standing performance bug in cluster_rbuild(). Specifically, | Alan Cox | 2009-06-27 | 1 | -4/+15 |
* | Eliminate unnecessary obfuscation when testing a page's valid bits. | Alan Cox | 2009-06-07 | 1 | -4/+2 |
* | - Complete part of the unfinished bufobj work by consistently using | Jeff Roberson | 2008-03-22 | 1 | -13/+18 |
* | - Move rusage from being per-process in struct pstats to per-thread in | Jeff Roberson | 2007-06-01 | 1 | -2/+2 |
* | Change these descriptions of memory types used in malloc(9), as their | Wojciech A. Koszek | 2007-03-05 | 1 | -1/+1 |
* | Replace PG_BUSY with VPO_BUSY. In other words, changes to the page's | Alan Cox | 2006-10-22 | 1 | -1/+1 |
* | Add mnt_noasync counter to better handle interleaved calls to nmount(), | Tor Egge | 2006-09-26 | 1 | -1/+1 |