summaryrefslogtreecommitdiffstats
path: root/sbin/disklabel/editor.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Do not adjust (uhm.. zero) the swap 'b' partition size if physmem isderaadt2021-03-091-2/+2
* unbreak getline() conversion in disklabelnaddy2021-02-031-5/+6
* replace fgetln(3) with getline(3) in disklabelnaddy2021-02-021-14/+12
* fix mistaken operator precedence in a pointer dereference in disklabelnaddy2021-01-311-3/+3
* Make /usr maximum 6G and grow it faster; ok lots of devsotto2019-11-191-3/+3
* Bump /usr on big auto-allocation table; ok krw@ sthen@ phessler@otto2019-08-211-2/+2
* snprintf/vsnprintf return < 0 on error, rather than -1.deraadt2019-07-031-3/+3
* Add '*' to disklabel(8) editor prompt when in-memory copy of disklabelkrw2019-04-291-2/+4
* Add comment to prod updates to regress/sbin/disklabelkrw2019-04-031-1/+7
* Use consistant idiom for checking return value ofkrw2019-04-021-10/+13
* when using the auto partitioner, grow minimum size for /usr to 1300M.phessler2019-03-311-3/+3
* Enhance prompt shown during -E label editing. Alwayskrw2019-03-311-2/+2
* update the error message for the interactive 'n' command to show thatjmc2019-03-071-2/+2
* Compute params of shrunk partition and not of resized one; ok krw@otto2019-02-211-5/+5
* I am retiring my old email address; replace it with my OpenBSD one.millert2019-01-251-2/+2
* FS_BOOT partitions are just partitions. Not free(ish) space.krw2018-11-251-2/+1
* Increase /usr/local max size to 20 GB in default templatesolene2018-09-211-2/+2
* Increase minimum size for /usr/obj partition to 5 Gig. This allowsbluhm2018-09-181-2/+2
* Tighten validation tests on an obscure corner case ofkrw2018-09-111-7/+16
* Practice safe free()'ing by setting alloc to NULL tokrw2018-08-301-1/+2
* Never let FS_RAID partition be named, a.k.a. given a mount point.krw2018-08-301-40/+38
* Tweak messages emitted by editor_resize() so "Partition x shrunk ..."krw2018-08-281-6/+10
* Always check the return values of get_[fsize|bsize|cpg].krw2018-08-231-10/+18
* Unbreak 'R'esize.krw2018-08-211-4/+5
* Oops. Missing chunk from previous 'secs' -> 'ui'.krw2018-08-041-2/+2
* Rename local variable 'secs' to 'ui' to be consistant with all otherkrw2018-08-041-8/+8
* errno is never checked after a call to getuint64(). So there is nokrw2018-08-021-2/+1
* Cleanup and clarify getuint64() by using thekrw2018-07-121-104/+49
* Cleanup and clarify the has_overlap() logic so it can be read bykrw2018-07-121-46/+36
* Add recommended error checks around the use of strtod() inkrw2018-07-071-3/+6
* Reduce display_edit() parameter list by one. Just callkrw2018-07-031-5/+6
* Nuke some leading spaces and mis-indentations that crept in over thekrw2018-07-031-5/+5
* Rework partition offset/size rounding logic, removing it fromkrw2018-07-011-133/+155
* Add getnumber() to extract simple deciaml values from thekrw2018-04-271-38/+52
* Create and use a couple of #defines for the magic returnkrw2018-04-271-36/+42
* No need for two copies of tricky user input gathering code. Just usekrw2018-04-261-22/+15
* Add some range checks to make sure we don't attempt to store valueskrw2018-04-261-9/+39
* Fix previous. Adding "offset" to "maxval" was required.yasuoka2018-04-261-2/+2
* Consolidate duplicate error messages, 'return' is not a function sokrw2018-04-261-125/+87
* Round user input to cylinder boundaries more betterer.krw2018-04-061-13/+13
* Check required partition size against the size of the largest freekrw2018-03-081-28/+25
* Calculate chunk size after adjusting both the chunk offset and chunkkrw2018-03-081-12/+16
* Instead of a SUN_CYLCHECK block in both parts of an if/else, with akrw2018-03-081-13/+8
* Bail out of a strategy early if the sum of the minsz values exceedskrw2018-03-081-4/+6
* Bail out of a strategy early if it requires more partitions than arekrw2018-03-081-2/+7
* Simplify the strategy looping.krw2018-03-081-12/+10
* Add if (D_VENDOR) check to last SUN_CYLCHECK block lacking it.krw2018-03-041-8/+8
* Tweak a couple of long lines.krw2018-03-021-4/+5
* Always call get_cpg() after calling get_bsize(). Initializekrw2018-03-021-4/+11
* Check for a negative value and overflow in getuint64() when performingmillert2018-03-011-6/+11