Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 288270 - sys-fs/cryptsetup init script should use mkswap -f
Summary: sys-fs/cryptsetup init script should use mkswap -f
Status: RESOLVED WONTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Gentoo's Team for Core System packages
URL:
Whiteboard:
Keywords:
: 288272 436972 (view as bug list)
Depends on:
Blocks:
 
Reported: 2009-10-09 09:20 UTC by Tim Weber
Modified: 2012-10-22 04:40 UTC (History)
7 users (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
use mkswap -f (1.0.6-r2-dm-crypt-start.sh.patch,506 bytes, patch)
2010-05-15 21:41 UTC, Diogo Pereira
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Tim Weber 2009-10-09 09:20:42 UTC
mkswap lives in sys-apps/util-linux. From util-linux>=2.15.1 on, mkswap will issue a warning when the parameter is a “whole disk”:

  mkswap: /dev/mapper/swap: warning: don't erase bootbits sectors
          on whole disk. Use -f to force.

This issue is mainly cosmetic: swap areas don’t use the first block on the disk or partition they’re on. Nevertheless, to keep people and bootloaders from trying to boot a swap partition, mkswap usually deletes the first block (or “clears” or “zaps” it, since you can’t delete blocks), but only if there is no disk label or partition table or the like on it.

However, if the parameter is not a partition, but a whole disk, mkswap issues the warning above. Since a dmcrypt volume apparently is handled like being a whole disk, the warning occurs there as well.

/lib/rcscripts/addons/dm-crypt-start.sh should use “mkswap -f” to create swap volumes. Currently, line 34 says:

   : ${pre_mount:='mkswap ${dev}'}

Insert a -f there, and everything should be fine.

Oh, and while you’re at it: Please show some love for bug #257556 as well. It’s a small patch that will make multi-dmcrypt-volumes users happy.

Workaround for users: Add

   pre_mount='mkswap -f ${dev}'

after the “source” line of your swap definition in /etc/conf.d/dmcrypt.
Comment 1 Tim Weber 2009-10-09 09:24:16 UTC
*** Bug 288272 has been marked as a duplicate of this bug. ***
Comment 2 Diogo Pereira 2010-05-15 21:41:08 UTC
Created attachment 231595 [details, diff]
use mkswap -f
Comment 3 Viorel Tabara 2010-10-28 21:19:47 UTC
(In reply to comment #2)
> Created an attachment (id=231595) [details]
> use mkswap -f
> 

As you noted "pre_mount" will take care of the warning.

However, I wouldn't call it a workaround as the option is provided just for 
this kind of situations:

    # pre_mount='cmds'      == commands to execute before mounting partition.
 
So you can be flexible enough without hard coding the script.

IMO this is not a bug.
Comment 4 SpanKY gentoo-dev 2010-11-14 00:09:02 UTC
he isnt hardcoding the script ... simply changing the default

i'm not entirely sold that this is a good idea.  the -f option will cause other sanity checks to be ignored.  i think requiring people who hit this to set -f themselves in their conf.d is OK.
Comment 5 SpanKY gentoo-dev 2012-10-22 04:40:15 UTC
*** Bug 436972 has been marked as a duplicate of this bug. ***