summaryrefslogtreecommitdiffstats
path: root/sys/geom/mountver
Commit message (Collapse)AuthorAgeFilesLines
* - Don't pass geom and provider names as format strings.jh2012-11-201-2/+2
| | | | | | | - Add __printflike() attributes. - Remove an extra argument for the g_new_geomf() call in swapongeom_ev(). Reviewed by: pjd
* Add trivial resize handling to gmountver(8).trasz2012-07-071-0/+14
| | | | | Reviewed by: mav Sponsored by: FreeBSD Foundation
* Avoid to check the same cache line/variable from all the lockingattilio2012-01-281-0/+1
| | | | | | | | | | | | | | | | primitives by breaking stop_scheduler into a per-thread variable. Also, store the new td_stopsched very close to td_*locks members as they will be accessed mostly in the same codepaths as td_stopsched and this results in avoiding a further cache-line pollution, possibly. STOP_SCHEDULER() was pondered to use a new 'thread' argument, in order to take advantage of already cached curthread, but in the end there should not really be a performance benefit, while introducing a KPI breakage. In collabouration with: flo Reviewed by: avg MFC after: 3 months (or never) X-MFC: r228424
* Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs.ed2011-11-071-1/+1
| | | | | | The SYSCTL_NODE macro defines a list that stores all child-elements of that node. If there's no SYSCTL_DECL macro anywhere else, there's no reason why it shouldn't be static.
* Include sys/sbuf.h directly.ae2011-07-111-0/+1
| | | | Reviewed by: pjd
* Remove unneeded code.ae2011-05-041-28/+7
| | | | MFC after: 1 week
* Make sure not to pass NULL to g_orphan_provider().trasz2010-06-051-1/+2
| | | | | Found with: Coverity Prevent CID: 3411
* Remove unused variable.trasz2010-01-251-2/+0
| | | | Found with: clang
* Add gmountver, disk mount verification GEOM class.trasz2010-01-162-0/+717
Note that due to e.g. write throttling ('wdrain'), it can stall all the disk I/O instead of just the device it's configured for. Using it for removable media is therefore not a good idea. Reviewed by: pjd (earlier version)
OpenPOWER on IntegriCloud