summaryrefslogtreecommitdiff
path: root/etc/pam.d/cron
diff options
context:
space:
mode:
Diffstat (limited to 'etc/pam.d/cron')
0 files changed, 0 insertions, 0 deletions
1daac777bdf45d6824'>dm: Make numsec/secsize arguments in dm_table_disksize() optionaltkusumi 2019-12-21dm: Remove target's ->deps() by implementing deps in dm coretkusumi Retrieving device dependencies doesn't need to be target specific. The reason it currently needs ->deps() is because dm core doesn't have data structure that allows table to walk through target's underlying devices. Add struct dm_mapping to be able to do this, and remove ->deps()'s from targets which basically do the same thing. =====(A) before this commit table | [dm core] ------------------------------------------------------- | pdev pdev pdev [dm targets] v ^ ^ ^ target----/---------/---------/ (void*) =====(B) this commit table---->mapping-->mapping-->mapping-->... | | | | | v v v [dm core] ------------------------------------------------------- | pdev pdev pdev [dm targets] v ^ ^ ^ target----/---------/---------/ (void*) taken-from: DragonFlyBSD 2019-12-15dm: Style cleanups (no functional changes)tkusumi 2019-12-15dm: Make targets' ->secsize() optionaltkusumi and make a caller assume secsize 0 if ->secsize not present. This allows a dummy function to be removed which was added in "dm: Add dummy target ->sync()/->secsize() to prevent panic on modload(8)". 2019-12-15dm: "unsigned" -> "unsigned int" for consistencytkusumi Use either one, but not both. 2019-12-14dm: Remove void casts of function callstkusumi Use of void casts in dm is not consistent, just get rid of them. 2019-12-07dm: Fix strange pointer declarationstkusumi Should be "type *name" or "type* name", but not "type * name". taken-from: DragonFlyBSD 2019-12-07dm: Simplify list eviction codetkusumi taken-from: DragonFlyBSD 2019-12-05dm: Make dm core set config to NULL after destroytkusumi Just let dm core do this instead of having a comment expecting each target to do the right thing. taken-from: DragonFlyBSD 2019-12-04dm: style + whitespace + indentation fixestkusumi No functional changes. 2018-01-05use some size_t, add whitespace between functions, rcsids.christos 2011-08-27add function to get the inactive table size (for during target init)ahoka 2010-12-23make dm aware of physical sector sizes.mlelstv For aggregates of multiple disks we use the largest sector size from all disks. For standard power-of-2 sizes this is the same as the least common multiple. We still require proper alignment of the targets in the mapping table. ok by haad@ 2010-01-04Indent files remove unnecessary blank lines, white spaces and KNFize code.haad 2009-10-23Reduce a noise from a debug printf to debug leveljoerg 2009-06-27Some fixes for dm(4).jakllsch - Limit accesses to the size of the volume. This fixes a KASSERT in physio_biodone(). - Change dm_table_size() to return the size of the volume in DEV_BSIZE units. It was reporting it in DEV_BSIZE^2 units. - Remove a bit of trailing whitespace. ok haad 2008-12-19Merge the haad-dm branch to -current. This branch adds LVM functionality tohaad the base NetBSD system. It uses Linux LVM2 tools and our BSD licensed device-mapper driver. The device-mapper driver can be used to create virtual block devices which maps virtual blocks to real with target mapping called target. Currently these targets are available a linear, zero, error and a snapshot (this is work in progress and doesn't work yet). The lvm2tools adds lvm and dmsetup binary to based system, where the lvm tool is used to manage and administer whole LVM and the dmestup is used to communicate iwith device-mapper kernel driver. With these tools also a libdevmapper library is instaled to the base system. Building of tools and driver is currently disable and can be enabled with MKLVM=yes in mk.conf. I will add sets lists and rc.d script soon. Oked by agc@ and cube@.