]> git.ipfire.org Git - thirdparty/util-linux.git/log
thirdparty/util-linux.git
12 months agobuild-sys: release++ (v2.39-rc3) v2.39-rc3
Karel Zak [Wed, 19 Apr 2023 08:15:18 +0000 (10:15 +0200)] 
build-sys: release++ (v2.39-rc3)

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agodocs: update v2.39-ReleaseNotes
Karel Zak [Wed, 19 Apr 2023 08:14:26 +0000 (10:14 +0200)] 
docs: update v2.39-ReleaseNotes

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agopo-man: merge changes
Karel Zak [Wed, 19 Apr 2023 07:52:36 +0000 (09:52 +0200)] 
po-man: merge changes

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agopo: merge changes
Karel Zak [Wed, 19 Apr 2023 07:50:56 +0000 (09:50 +0200)] 
po: merge changes

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agopo-man: update de.po (from translationproject.org)
Mario Blättermann [Wed, 19 Apr 2023 07:49:15 +0000 (09:49 +0200)] 
po-man: update de.po (from translationproject.org)

12 months agopo: update uk.po (from translationproject.org)
Yuri Chornoivan [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update uk.po (from translationproject.org)

12 months agopo: update pl.po (from translationproject.org)
Jakub Bogusz [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update pl.po (from translationproject.org)

12 months agopo: update ko.po (from translationproject.org)
Seong-ho Cho [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update ko.po (from translationproject.org)

12 months agopo: update hr.po (from translationproject.org)
Božidar Putanec [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update hr.po (from translationproject.org)

12 months agopo: update fr.po (from translationproject.org)
Frédéric Marchal [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update fr.po (from translationproject.org)

12 months agopo: update de.po (from translationproject.org)
Mario Blättermann [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update de.po (from translationproject.org)

12 months agopo: update cs.po (from translationproject.org)
Petr Písař [Wed, 19 Apr 2023 07:48:37 +0000 (09:48 +0200)] 
po: update cs.po (from translationproject.org)

12 months agolsfd: make a test case executable
Masatake YAMATO [Wed, 19 Apr 2023 01:08:43 +0000 (10:08 +0900)] 
lsfd: make a test case executable

It has been kept non-executable because of my mistake.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agolsfd: skip test option-inet in qemu-user
Masatake YAMATO [Wed, 19 Apr 2023 00:53:12 +0000 (09:53 +0900)] 
lsfd: skip test option-inet in qemu-user

The option-inet test case has not run because it was incorrectly kept
as non-executable.

Mark the test case as "skip" in qmeu-user before making the test case
executable because we already know the case fails on qmeu-user. A fix
on qmeu-user may come later.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agolibmount: cleanup all stat() use
Karel Zak [Tue, 18 Apr 2023 13:54:25 +0000 (15:54 +0200)] 
libmount: cleanup all stat() use

* don't use STATX_MODE as we need only file type
* use fstatat() or stat() as fallback on EOPNOTSUPP
* use st_rdev from statx() too

* rename to mnt_stat_mountpoint() to more generic mnt_safe_stat()

* use mnt_is_path() on more places
* cleanup mnt_context_*_excode() to not use stat()
* use on others places mnt_safe_stat()

Note that on some places stat() remaining, but it's not related to the
mountpoints, it's about /run/mount/utab permissions, file locking and
/dev/* permissions for non-root mounts.

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agoMerge branch 'test/commands' of https://github.com/t-8ch/util-linux
Karel Zak [Tue, 18 Apr 2023 11:57:05 +0000 (13:57 +0200)] 
Merge branch 'test/commands' of https://github.com/t-8ch/util-linux

* 'test/commands' of https://github.com/t-8ch/util-linux:
  tests: don't skip on incorrectly search executables
  fincore: (tests) correctly look for findmnt

12 months agolib/crc32c: fix assert()
Karel Zak [Tue, 18 Apr 2023 11:54:17 +0000 (13:54 +0200)] 
lib/crc32c: fix assert()

Addresses: https://github.com/util-linux/util-linux/pull/2165
Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agotests: don't skip on incorrectly search executables
Thomas Weißschuh [Mon, 17 Apr 2023 16:30:05 +0000 (18:30 +0200)] 
tests: don't skip on incorrectly search executables

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofincore: (tests) correctly look for findmnt
Thomas Weißschuh [Mon, 17 Apr 2023 16:29:35 +0000 (18:29 +0200)] 
fincore: (tests) correctly look for findmnt

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agolibmount: use AT_STATX_DONT_SYNC when touch mountpoints
Karel Zak [Mon, 17 Apr 2023 12:23:18 +0000 (14:23 +0200)] 
libmount: use AT_STATX_DONT_SYNC when touch mountpoints

* prefer statx() with AT_STATX_DONT_SYNC if available
* keep fstatat() and stat() as fallback
* add test to mnt_stat_mountpoint()

The goal is to minimize situations when we need classic stat() because
it triggers automount, and stat() syscall may hang on unreachable
network filesystems. The automount issue was resolved years ago by
AT_NO_AUTOMOUNT; now we can use statx() to fix also hangs on NFS.

Addresses: https://github.com/util-linux/util-linux/issues/2049
Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agolibmount: don't define struct stat is unnecessary
Karel Zak [Mon, 17 Apr 2023 11:22:03 +0000 (13:22 +0200)] 
libmount: don't define struct stat is unnecessary

Let's introduce simple function to hide 'struct stat' if unnecessary.

Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agoMerge branch 'libblkid/crc32c-exclude' of https://github.com/t-8ch/util-linux
Karel Zak [Mon, 17 Apr 2023 11:06:01 +0000 (13:06 +0200)] 
Merge branch 'libblkid/crc32c-exclude' of https://github.com/t-8ch/util-linux

* 'libblkid/crc32c-exclude' of https://github.com/t-8ch/util-linux:
  libblkid: xfs: clean up call to ul_crc32_exclude_offset
  libblkid: erofs: calculate checksum with offset

12 months agohwclock: use kernel struct rtc_time for RTC ioctls
Karel Zak [Mon, 17 Apr 2023 10:29:40 +0000 (12:29 +0200)] 
hwclock: use kernel struct rtc_time for RTC ioctls

Based on patch from Matt Nourse.

Addresses: https://github.com/util-linux/util-linux/pull/2123
Reported-by: Matthew Nourse <matthew@nplus1.com.au>
Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agoMerge branch 'lsfd--raspberrypi-32bit' of https://github.com/masatake/util-linux
Karel Zak [Mon, 17 Apr 2023 09:41:02 +0000 (11:41 +0200)] 
Merge branch 'lsfd--raspberrypi-32bit' of https://github.com/masatake/util-linux

* 'lsfd--raspberrypi-32bit' of https://github.com/masatake/util-linux:
  tests: (lsfd) don't hardcode the inode number of netns in the expected output
  tests: (lsfd) adjust the output for unix datagram sockets already connected
  tests: (lsfd) adjust the output for unix datagram sockets created by socketpair
  tests: (lsfd) check the exit status of the first command in the pipeline
  tests: (lsfd) adjust the output for unix stream sockets

12 months agolibblkid: xfs: clean up call to ul_crc32_exclude_offset
Thomas Weißschuh [Mon, 17 Apr 2023 09:38:26 +0000 (11:38 +0200)] 
libblkid: xfs: clean up call to ul_crc32_exclude_offset

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agolibblkid: erofs: calculate checksum with offset
Thomas Weißschuh [Mon, 17 Apr 2023 09:36:30 +0000 (11:36 +0200)] 
libblkid: erofs: calculate checksum with offset

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofincore: (tests) don't mark tests as known fail
Thomas Weißschuh [Mon, 17 Apr 2023 07:12:18 +0000 (09:12 +0200)] 
fincore: (tests) don't mark tests as known fail

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofincore: (tests) don't run tests on tmpfs
Thomas Weißschuh [Mon, 17 Apr 2023 07:11:49 +0000 (09:11 +0200)] 
fincore: (tests) don't run tests on tmpfs

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agoMerge branch 'fadvise/fixes' of https://github.com/t-8ch/util-linux
Karel Zak [Mon, 17 Apr 2023 09:25:09 +0000 (11:25 +0200)] 
Merge branch 'fadvise/fixes' of https://github.com/t-8ch/util-linux

* 'fadvise/fixes' of https://github.com/t-8ch/util-linux:
  fadvise: always exit with EXIT_FAILURE on error
  fadvise: (man) document help and version arguments
  fadvise: correctly report error from posix_fadvise
  fadvise: implement --advice argument

12 months agofadvise: always exit with EXIT_FAILURE on error
Thomas Weißschuh [Sun, 16 Apr 2023 16:36:29 +0000 (18:36 +0200)] 
fadvise: always exit with EXIT_FAILURE on error

Also document it.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agoMerge branch 'fadvise/test' of https://github.com/t-8ch/util-linux
Karel Zak [Mon, 17 Apr 2023 09:23:09 +0000 (11:23 +0200)] 
Merge branch 'fadvise/test' of https://github.com/t-8ch/util-linux

12 months agoMerge branch 'correct_blkid_xfs_output' of https://github.com/jlinton/util-linux
Karel Zak [Mon, 17 Apr 2023 08:57:45 +0000 (10:57 +0200)] 
Merge branch 'correct_blkid_xfs_output' of https://github.com/jlinton/util-linux

* 'correct_blkid_xfs_output' of https://github.com/jlinton/util-linux:
  libblkid: Compute CRC with sb_crc zeroed
  lib: Add crc32c function that can deal with holes

12 months agolscpu: fix -p --output-all caches delimiter
Karel Zak [Mon, 17 Apr 2023 08:50:08 +0000 (10:50 +0200)] 
lscpu: fix -p --output-all caches delimiter

Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2187099
Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agofincore: open file with PROT_READ for qemu-user
Thomas Weißschuh [Mon, 17 Apr 2023 07:31:42 +0000 (09:31 +0200)] 
fincore: open file with PROT_READ for qemu-user

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: (tests) skip test on tmpfs
Thomas Weißschuh [Mon, 17 Apr 2023 03:21:47 +0000 (05:21 +0200)] 
fadvise: (tests) skip test on tmpfs

On tmpfs files are always in RAM, which is reflected in mincore().

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: (tests) sync data to disk before dropping pages
Thomas Weißschuh [Sun, 16 Apr 2023 08:16:53 +0000 (10:16 +0200)] 
fadvise: (tests) sync data to disk before dropping pages

The test fails if pages are not dropped because they are not yet written
back to disk.
So force a writeback before continuing.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: (man) document help and version arguments
Thomas Weißschuh [Sun, 16 Apr 2023 16:35:18 +0000 (18:35 +0200)] 
fadvise: (man) document help and version arguments

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: correctly report error from posix_fadvise
Thomas Weißschuh [Sun, 16 Apr 2023 08:52:28 +0000 (10:52 +0200)] 
fadvise: correctly report error from posix_fadvise

posix_fadvise() does not use errno.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: implement --advice argument
Thomas Weißschuh [Sun, 16 Apr 2023 08:30:47 +0000 (10:30 +0200)] 
fadvise: implement --advice argument

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agotests: (lsfd) don't hardcode the inode number of netns in the expected output
Masatake YAMATO [Sat, 15 Apr 2023 21:48:09 +0000 (06:48 +0900)] 
tests: (lsfd) don't hardcode the inode number of netns in the expected output

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agotests: (lsfd) adjust the output for unix datagram sockets already connected
Masatake YAMATO [Sat, 15 Apr 2023 12:47:59 +0000 (21:47 +0900)] 
tests: (lsfd) adjust the output for unix datagram sockets already connected

Though older kernels report such sockets as "unconnected" via /proc/net/unix,
the newer kernels report them as "connected". The change is introduced in
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=83301b5367a98c17ec0d76c7bc0ccdc3c7e7ad6d

This caused a failure in a test case. To avoid the failure,
this change rewrites "unconnected" in the lsfd's output to "connected".

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agotests: (lsfd) adjust the output for unix datagram sockets created by socketpair
Masatake YAMATO [Sat, 15 Apr 2023 11:50:29 +0000 (20:50 +0900)] 
tests: (lsfd) adjust the output for unix datagram sockets created by socketpair

Though older kernels report such sockets as "unconnected" via /proc/net/unix,
the newer kernels report them as "connected". The change is introduced in
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=83301b5367a98c17ec0d76c7bc0ccdc3c7e7ad6d

This caused a failure in a test case. To avoid the failure,
this change rewrites "state=unconnected" in the lsfd's output
to "state=connected".

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agotests: (lsfd) check the exit status of the first command in the pipeline
Masatake YAMATO [Sat, 15 Apr 2023 11:49:58 +0000 (20:49 +0900)] 
tests: (lsfd) check the exit status of the first command in the pipeline

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agotests: (lsfd) adjust the output for unix stream sockets
Masatake YAMATO [Sat, 15 Apr 2023 03:07:58 +0000 (12:07 +0900)] 
tests: (lsfd) adjust the output for unix stream sockets

lsfd changes the output of NAME column for a unix stream socket
whether the kernel reports it is a "UNIX-STREAM" socket or a "UNIX"
socket. Rather older version of kernels report the socket "UNIX"

For "UNIX", lsfd appends "type=stream" to the NAME column.
This caused a failure in test cases. To avoid the failure,
this change strips "type=stream" from the output before
comparing the output strings and expected strings.

See also the commit log of a60ac11fe0087584f37329b4733edfade3452c64.

Signed-off-by: Masatake YAMATO <yamato@redhat.com>
12 months agofadvise: (tests) add helper to create files
Thomas Weißschuh [Sun, 16 Apr 2023 08:16:33 +0000 (10:16 +0200)] 
fadvise: (tests) add helper to create files

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agofadvise: (tests) enable drop test
Thomas Weißschuh [Sun, 16 Apr 2023 07:43:45 +0000 (09:43 +0200)] 
fadvise: (tests) enable drop test

The test file needs to be executable to be run.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
12 months agolibblkid: Compute CRC with sb_crc zeroed
Jeremy Linton [Fri, 14 Apr 2023 21:25:28 +0000 (16:25 -0500)] 
libblkid: Compute CRC with sb_crc zeroed

The Linux kernel computes the sb_crc by crcing the
superblock with the CRC field set to 0. The code is
trying to avoid doing this in three separate CRC calls
like the kernel performs by simply zeroing the field
and making a single call.

Except that the passed copy "ondisk" isn't the same
as the returned copy "csummed" so the zeroing goes into
the wrong buffer. Meaning that the CRC is computed
incorrectly. This results in blkid returning:

/dev/sda4: PARTUUID="2f162043-63c2-d145-869b-e53f9db57476"

rather than:

/dev/sda4: UUID="45b931b7-592a-46dc-9c33-d38d5901ec29" BLOCK_SIZE="4096" TYPE="xfs" PARTUUID="2f162043-63c2-d145-869b-e53f9db57476"

Which can result in lots of failures including boot
failures if XFS modules aren't placed into the initrd,
or scripts/etc cannot determine the fs UUID.

Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
12 months agolib: Add crc32c function that can deal with holes
Jeremy Linton [Fri, 14 Apr 2023 23:07:29 +0000 (18:07 -0500)] 
lib: Add crc32c function that can deal with holes

XFS, and possibly other filesystems expect that the CRC field
is excluded (or rather RAZ) during the CRC operation. Lets
create a generic helper that is similar to the CRC32 version
ul_crc32_exclude_offset() which computes the CRC while replacing
exclude_len bytes of exclude_off with zeros.

Signed-off-by: Jeremy Linton <jeremy.linton@arm.com>
12 months agoflock: (tests) add test for fd-based locking
Thomas Weißschuh [Fri, 14 Apr 2023 07:12:03 +0000 (09:12 +0200)] 
flock: (tests) add test for fd-based locking

12 months agoFix mmap/ioctl(3p) references in manual
наб [Fri, 7 Apr 2023 14:48:06 +0000 (16:48 +0200)] 
Fix mmap/ioctl(3p) references in manual

mmap(3p) is passable, inasmuch as it does actually describe mmap(2).

ioctl(3p), on the other hand, describes XSI STREAMS, which bear no
relation to ioctl(2) under Linux, much less ioctl_console(2).

Both live in the non-free manpages-posix-dev.

12 months agohwclock: make sure struct tm is initialized
Karel Zak [Tue, 11 Apr 2023 10:24:56 +0000 (12:24 +0200)] 
hwclock: make sure struct tm is initialized

Addresses: https://github.com/util-linux/util-linux/pull/2123
Signed-off-by: Karel Zak <kzak@redhat.com>
12 months agoMerge branch 'patch-19' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:10:57 +0000 (12:10 +0200)] 
Merge branch 'patch-19' of https://github.com/mariobl/util-linux

* 'patch-19' of https://github.com/mariobl/util-linux:
  swapon: (man) use correct markup for external man page links

12 months agoMerge branch 'patch-18' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:10:36 +0000 (12:10 +0200)] 
Merge branch 'patch-18' of https://github.com/mariobl/util-linux

* 'patch-18' of https://github.com/mariobl/util-linux:
  setarch: (man) Fix typo

12 months agoMerge branch 'patch-17' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:10:17 +0000 (12:10 +0200)] 
Merge branch 'patch-17' of https://github.com/mariobl/util-linux

* 'patch-17' of https://github.com/mariobl/util-linux:
  mount: (man) use markup for command names

12 months agoMerge branch 'patch-16' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:09:38 +0000 (12:09 +0200)] 
Merge branch 'patch-16' of https://github.com/mariobl/util-linux

* 'patch-16' of https://github.com/mariobl/util-linux:
  fstab: (man) use markup for external man page links

12 months agoMerge branch 'patch-15' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:09:16 +0000 (12:09 +0200)] 
Merge branch 'patch-15' of https://github.com/mariobl/util-linux

* 'patch-15' of https://github.com/mariobl/util-linux:
  taskset: (man) Fix typos and use correct markup

12 months agoMerge branch 'patch-14' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:08:48 +0000 (12:08 +0200)] 
Merge branch 'patch-14' of https://github.com/mariobl/util-linux

12 months agoMerge branch 'patch-13' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:08:19 +0000 (12:08 +0200)] 
Merge branch 'patch-13' of https://github.com/mariobl/util-linux

* 'patch-13' of https://github.com/mariobl/util-linux:
  lsfd: (man) Fix typo and add markup for external man page link

12 months agoMerge branch 'patch-12' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:07:57 +0000 (12:07 +0200)] 
Merge branch 'patch-12' of https://github.com/mariobl/util-linux

* 'patch-12' of https://github.com/mariobl/util-linux:
  hardlink: (man) Use markup for file names

12 months agoMerge branch 'patch-11' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:07:23 +0000 (12:07 +0200)] 
Merge branch 'patch-11' of https://github.com/mariobl/util-linux

* 'patch-11' of https://github.com/mariobl/util-linux:
  last: (man) use correct markup

12 months agoMerge branch 'patch-20' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 11 Apr 2023 10:05:54 +0000 (12:05 +0200)] 
Merge branch 'patch-20' of https://github.com/mariobl/util-linux

* 'patch-20' of https://github.com/mariobl/util-linux:
  column: (man) use markup for option

12 months agoMerge branch 'hwclock/cleanup' of https://github.com/t-8ch/util-linux
Karel Zak [Tue, 11 Apr 2023 10:04:30 +0000 (12:04 +0200)] 
Merge branch 'hwclock/cleanup' of https://github.com/t-8ch/util-linux

* 'hwclock/cleanup' of https://github.com/t-8ch/util-linux:
  hwclock: use linux/rtc.h
  hwclock: drop ancient sparc special cases
  hwclock: constify struct clock_opts
  hwclock: (tests) add simple test to show rtc time

12 months agocolumn: (man) use markup for option
Mario Blättermann [Mon, 10 Apr 2023 14:46:03 +0000 (16:46 +0200)] 
column: (man) use markup for option

12 months agoswapon: (man) use correct markup for external man page links
Mario Blättermann [Mon, 10 Apr 2023 14:44:52 +0000 (16:44 +0200)] 
swapon: (man) use correct markup for external man page links

12 months agosetarch: (man) Fix typo
Mario Blättermann [Mon, 10 Apr 2023 14:43:05 +0000 (16:43 +0200)] 
setarch: (man) Fix typo

12 months agomount: (man) use markup for command names
Mario Blättermann [Mon, 10 Apr 2023 14:41:43 +0000 (16:41 +0200)] 
mount: (man) use markup for command names

12 months agofstab: (man) use markup for external man page links
Mario Blättermann [Mon, 10 Apr 2023 14:36:38 +0000 (16:36 +0200)] 
fstab: (man) use markup for external man page links

12 months agotaskset: (man) Fix typos and use correct markup
Mario Blättermann [Mon, 10 Apr 2023 14:34:08 +0000 (16:34 +0200)] 
taskset: (man) Fix typos and use correct markup

12 months agonamei: (man) clarify the namei binary
Mario Blättermann [Mon, 10 Apr 2023 14:31:37 +0000 (16:31 +0200)] 
namei: (man) clarify the namei binary

12 months agolsfd: (man) Fix typo and add markup for external man page link
Mario Blättermann [Mon, 10 Apr 2023 14:29:50 +0000 (16:29 +0200)] 
lsfd: (man) Fix typo and add markup for external man page link

12 months agohardlink: (man) Use markup for file names
Mario Blättermann [Mon, 10 Apr 2023 14:27:00 +0000 (16:27 +0200)] 
hardlink: (man) Use markup for file names

12 months agolast: (man) use correct markup
Mario Blättermann [Mon, 10 Apr 2023 14:24:46 +0000 (16:24 +0200)] 
last: (man) use correct markup

13 months agolibmount: fix superblock rw/ro reconfiguration
Karel Zak [Wed, 5 Apr 2023 19:44:55 +0000 (21:44 +0200)] 
libmount: fix superblock rw/ro reconfiguration

The classic mount(2) defaults to 'rw', but the new API does not reset
superblock to 'rw' if the flag is not explicitly used for
FSCONFIG_CMD_RECONFIGURE.

Addresses: https://bugzilla.redhat.com/show_bug.cgi?id=2180593
Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agodocs: add blkpr in AUTHORS file
zhenwei pi [Wed, 5 Apr 2023 10:08:01 +0000 (18:08 +0800)] 
docs: add blkpr in AUTHORS file

blkpr command was added in the v2.39 development window, add this in
AUTHORS file.

Signed-off-by: zhenwei pi <pizhenwei@bytedance.com>
13 months agofindmnt: use warning rather than error from FS type mismatch
Karel Zak [Wed, 5 Apr 2023 10:00:11 +0000 (12:00 +0200)] 
findmnt: use warning rather than error from FS type mismatch

Fixes: https://github.com/util-linux/util-linux/issues/2148
Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agohwclock: use linux/rtc.h
Thomas Weißschuh [Tue, 4 Apr 2023 14:44:47 +0000 (14:44 +0000)] 
hwclock: use linux/rtc.h

For a long time, since commit
607ca46e97a1 ("UAPI: (Scripted) Disintegrate include/linux")
the kernel provided a dedicate uapi include for RTC definitions.

This makes the comment linux/mc146818rtc.h obsolete.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
13 months agohwclock: drop ancient sparc special cases
Thomas Weißschuh [Tue, 4 Apr 2023 14:42:52 +0000 (14:42 +0000)] 
hwclock: drop ancient sparc special cases

Since commit
eed795bf1fd2 ("sparc: Kill sbus mostek RTC driver.")
the only kernel driver implementing this non-standard ioctl was removed.

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
13 months agohwclock: constify struct clock_opts
Thomas Weißschuh [Tue, 4 Apr 2023 14:42:32 +0000 (14:42 +0000)] 
hwclock: constify struct clock_opts

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
13 months agohwclock: (tests) add simple test to show rtc time
Thomas Weißschuh [Tue, 4 Apr 2023 14:42:08 +0000 (14:42 +0000)] 
hwclock: (tests) add simple test to show rtc time

Signed-off-by: Thomas Weißschuh <thomas@t-8ch.de>
13 months agobuild-sys: release++ (v2.39-rc2) v2.39-rc2
Karel Zak [Tue, 4 Apr 2023 12:29:20 +0000 (14:29 +0200)] 
build-sys: release++ (v2.39-rc2)

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agodocs: update v2.39-ReleaseNotes
Karel Zak [Tue, 4 Apr 2023 12:25:45 +0000 (14:25 +0200)] 
docs: update v2.39-ReleaseNotes

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agodocs: update AUTHORS file
Karel Zak [Tue, 4 Apr 2023 12:24:19 +0000 (14:24 +0200)] 
docs: update AUTHORS file

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agopo-man: merge changes
Karel Zak [Tue, 4 Apr 2023 12:19:26 +0000 (14:19 +0200)] 
po-man: merge changes

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agolsfd: (man) fix po-man warnings
Karel Zak [Tue, 4 Apr 2023 12:14:32 +0000 (14:14 +0200)] 
lsfd: (man) fix po-man warnings

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agopo: merge changes
Karel Zak [Tue, 4 Apr 2023 12:09:53 +0000 (14:09 +0200)] 
po: merge changes

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agopo: update pl.po (from translationproject.org)
Jakub Bogusz [Tue, 4 Apr 2023 12:01:27 +0000 (14:01 +0200)] 
po: update pl.po (from translationproject.org)

13 months agotests: add cryptsetup build results
Karel Zak [Tue, 4 Apr 2023 11:59:29 +0000 (13:59 +0200)] 
tests: add cryptsetup build results

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agotests: (build-sys) add --conf=<path>
Karel Zak [Tue, 4 Apr 2023 11:58:08 +0000 (13:58 +0200)] 
tests: (build-sys) add --conf=<path>

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agofstab: improve 4th field description
Karel Zak [Tue, 4 Apr 2023 10:05:32 +0000 (12:05 +0200)] 
fstab: improve 4th field description

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agolibblkid: copy BLKID_PARTS_FORCE_GPT to whole-disk prober
Karel Zak [Tue, 4 Apr 2023 09:04:51 +0000 (11:04 +0200)] 
libblkid: copy BLKID_PARTS_FORCE_GPT to whole-disk prober

Addresses: https://github.com/util-linux/util-linux/discussions/2146
Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agonsenter: (man) imropve readability
Karel Zak [Tue, 4 Apr 2023 08:39:36 +0000 (10:39 +0200)] 
nsenter: (man) imropve readability

Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agonsenter: use explicit argument to follow target PID/GID
Thomas Weißschuh [Mon, 3 Apr 2023 18:44:15 +0000 (18:44 +0000)] 
nsenter: use explicit argument to follow target PID/GID

Making the argument to -S and -G optional in #2092 broke the cli
compatability.
So replace it with an explicit "follow" argument that provides the new
functionality with a compatible interface.

Fixes #2143

13 months agoMerge branch 'patch-10' of https://github.com/mariobl/util-linux
Karel Zak [Tue, 28 Mar 2023 17:10:40 +0000 (19:10 +0200)] 
Merge branch 'patch-10' of https://github.com/mariobl/util-linux

* 'patch-10' of https://github.com/mariobl/util-linux:
  mount: (man) Add usual Asciidoctor markup

13 months agoMerge branch 'mount-relatime-equal' of https://github.com/skitt/util-linux
Karel Zak [Tue, 28 Mar 2023 17:09:50 +0000 (19:09 +0200)] 
Merge branch 'mount-relatime-equal' of https://github.com/skitt/util-linux

* 'mount-relatime-equal' of https://github.com/skitt/util-linux:
  mount: relatime allows equality

13 months agoMerge branch 'agetty' of https://github.com/jwilk-forks/util-linux
Karel Zak [Tue, 28 Mar 2023 17:07:09 +0000 (19:07 +0200)] 
Merge branch 'agetty' of https://github.com/jwilk-forks/util-linux

* 'agetty' of https://github.com/jwilk-forks/util-linux:
  agetty: (man) fix typos

13 months agoMerge branch 'badfmt' of https://github.com/rpigott/util-linux
Karel Zak [Tue, 28 Mar 2023 17:06:39 +0000 (19:06 +0200)] 
Merge branch 'badfmt' of https://github.com/rpigott/util-linux

* 'badfmt' of https://github.com/rpigott/util-linux:
  hexdump-parse: handle truncated format pattern

13 months agosetarch: add loongarch support
Enze Li [Mon, 27 Mar 2023 08:25:20 +0000 (16:25 +0800)] 
setarch: add loongarch support

Signed-off-by: Enze Li <lienze@kylinos.cn>
13 months agolibmount: (idmap) reuse tree FD, fix umount
Karel Zak [Mon, 27 Mar 2023 10:51:53 +0000 (12:51 +0200)] 
libmount: (idmap) reuse tree FD, fix umount

* reuse already open mount tree; the tree could be already open due to
  regular mount, bind or remount operation

* umount (MNT_DETACH) old target if we created a clone (but the
  operation is not a bind)

Adedreses: https://github.com/util-linux/util-linux/issues/2130
Signed-off-by: Karel Zak <kzak@redhat.com>
13 months agomount: (man) Add usual Asciidoctor markup
Mario Blättermann [Sun, 26 Mar 2023 15:49:07 +0000 (17:49 +0200)] 
mount: (man) Add usual Asciidoctor markup

13 months agomount: relatime allows equality
Stephen Kitt [Sat, 25 Mar 2023 08:30:22 +0000 (09:30 +0100)] 
mount: relatime allows equality

relatime also updates atime if the previous atime is equal to one or
both of the ctime and mtime; a non-strict interpretation of "earlier
than" allows this, but for clarity, this makes it explicit.

Pointed out by "epiii2" and "ctrl-alt-delor" in
https://unix.stackexchange.com/q/740862/86440.

Signed-off-by: Stephen Kitt <steve@sk2.org>