hush/util-linux
Denys Vlasenko c919d561ad umount: always use umount2 syscall with specified flags
Make umount -f more compatible with util-linux 2.22.2.

Before:
  * 'umount -f': calls umount syscall,
        if it fails calls umount2 with 'MNT_FORCE'
  * 'mount -f -l': calls umount syscall,
        if it fails calls umount2 with 'MNT_LAZY'. 'MNT_FORCE' dropped
After:
  * 'umount -f': calls umount2 syscall with 'MNT_FORCE'
  * 'mount -f -l': calls umount2 syscall with 'MNT_LAZY' and 'MNT_FORCE'

function                                             old     new   delta
umount                                                45       -     -45
umount_main                                          610     555     -55

Signed-off-by: Anton Bondarenko <anton.bondarenko@axis.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2015-10-01 18:50:06 +02:00
..
2015-03-11 16:07:24 +01:00
2015-07-30 03:05:46 +02:00
2013-02-11 00:22:59 +01:00
2013-01-14 01:34:48 +01:00
2015-02-04 15:19:38 +01:00
2015-03-12 20:18:51 +01:00
2013-01-14 01:34:48 +01:00
2013-06-27 03:45:16 +02:00
2013-01-14 01:34:48 +01:00
2015-05-25 13:46:36 +02:00
2015-02-18 13:47:46 +01:00
2011-12-15 12:39:25 +01:00
2015-01-05 20:35:00 +01:00
2015-08-24 20:00:17 +02:00