But still need rewrite of opaque comments @ libmount/src/context_umount.c:350-353 and libmount/src/context.c:1149-1150.
- supports new options --manualeject, --force and --no-partitions-unmount
lslocks(1)
- - this NEW COMMAND prints local system locks and it's replacement to very
+ - this NEW COMMAND prints local system locks; it's a replacement for very
long time unmaintained lslk(1)
wdctl(8):
hexdump:
- Create struct hexdump containing previously global variables. [Ondrej Oprala]
- Merge hexsyntax.c into hexdump.c [Ondrej Oprala]
- - Rename struct _pr to struct hexdump_pr and remove it's typedef [Ondrej Oprala]
+ - Rename struct _pr to struct hexdump_pr and remove its typedef [Ondrej Oprala]
- add --color to the man page [Karel Zak]
- add __attribute__ ((__noreturn__)) to bad*() functions [Ondrej Oprala]
- add basic tests [Ondrej Oprala]
- remove memory leaks [LeakSanitizer] [valgrind] [Sami Kerola]
- remove system architecture specific max swap size checks [Sami Kerola]
- remove unnecessary size check [Sami Kerola]
- - set variable only when it's value is known [Sami Kerola]
+ - set variable only when its value is known [Sami Kerola]
- use err() rather than perror() && exit() [Sami Kerola]
- various minor improvement [Sami Kerola]
more:
-# blkid.h is generated, so it's store in builddir!
+# blkid.h is generated, so it's stored in builddir!
blkidincdir = $(includedir)/blkid
nodist_blkidinc_HEADERS = libblkid/src/blkid.h
.usage = BLKID_USAGE_FILESYSTEM,
.probefunc = probe_sysv,
- /* SYSV is BE and LE and superblock could be on four positions. It's
- * simpler to probe for the magic string by .probefunc().
+ /* SYSV is BE and LE, and superblock could be one of four positions.
+ * So it's simpler to probe for the magic string via .probefunc().
*/
.magics = BLKID_NONE_MAGIC
};
* counts size of all this space.
*
* This is core of the partition start offset move operation. We can move the
- * start within the current partition of to the another free space. It's
+ * start within the current partition to another free space. It's
* forbidden to move start of the partition to another already defined
* partition.
*/
-# libmount.h is generated, so it's store in builddir!
+# libmount.h is generated, so it's stored in builddir!
mountincdir = $(includedir)/libmount
nodist_mountinc_HEADERS = libmount/src/libmount.h
* @cxt: mount context
* @optstr: comma delimited mount options
*
- * Note that MS_MOVE cannot be specified as "string". It's operation that
- * is no supported in fstab (etc.)
+ * Note that MS_MOVE cannot be specified as "string". It's an operation that
+ * is not supported in fstab (etc.)
*
* Returns: 0 on success, negative number in case of error.
*/
/* This function searches for FS according to cxt->fs->target,
* apply result to cxt->fs and it's umount replacement to
- * mnt_context_apply_fstab(), use mnt_context_tab_applied()
+ * mnt_context_apply_fstab(); use mnt_context_tab_applied()
* to check result.
*
* The goal is to minimize situations when we need to parse
if (!(findmnt.flags & FL_NOSWAPMATCH) &&
!get_match(COL_TARGET) && get_match(COL_SOURCE)) {
/*
- * Check if we can swap source and target, it's
+ * Check if we can swap source and target; it's
* not possible if the source is LABEL=/UUID=
*/
const char *x = get_match(COL_SOURCE);
if (ctl->policy == SCHED_DEADLINE) {
/* The basic rule is runtime <= deadline <= period, so we can
* make deadline and runtime optional on command line. Note we
- * don't check any values or set any defaults, it's kernel
+ * don't check any values or set any defaults; it's kernel's
* responsibility.
*/
if (ctl->deadline == 0)
Select the memory _ZONE_ where to set the specified _RANGE_, _SIZE_, or _BLOCKRANGE_ of memory online or offline. By default, memory will be set online to the zone Movable, if possible.
*-v*, *--verbose*::
-Verbose mode. Causes *chmem* to print debugging messages about it's progress.
+Verbose mode. Causes *chmem* to print debugging messages about its progress.
include::man-common/help-version.adoc[]
/*
* Stops CDROM from opening on manual eject button press.
* This can be useful when you carry your laptop
- * in your bag while it's on and no CD inserted in it's drive.
+ * in your bag while it's on and no CD is inserted in its tray.
* Implemented as found in Documentation/userspace-api/ioctl/cdrom.rst
*/
static void manual_eject(const struct eject_control *ctl)
$FILES/ascii.in &> $TS_OUTPUT
ts_finalize_subtest
-# highlight the byte at offset 194 if it's value is 0x61 (a)
-# and the byte at offset 130 if it's value is A (0x41)
+# highlight the byte at offset 194 if its value is 0x61 (a)
+# and the byte at offset 130 if its value is A (0x41)
ts_init_subtest "1b_octal-4"
TS_EXPECTED+=$BE_EXT
$TS_CMD_HEXDUMP $OPTS $ADDRFMT \
$FILES/ascii.in &> $TS_OUTPUT
ts_finalize_subtest
-# highlight the byte at offset 194 if it's value is 0x61 (a)
-# and the byte at offset 130 if it's value is C (0x41) (false)
+# highlight the byte at offset 194 if its value is 0x61 (a)
+# and the byte at offset 130 if its value is C (0x41) (false)
ts_init_subtest "1b_octal-5"
TS_EXPECTED+=$BE_EXT
$TS_CMD_HEXDUMP $OPTS $ADDRFMT \
The argument _columns_ for *--table-** options is a comma separated list of the
column names as defined by *--table-columns*, or names defined by
-*--table-column* or it's column number in order as specified by input. It's
+*--table-column* or its column number in order as specified by input. It's
possible to mix names and numbers. The special placeholder '0' (e.g. -R0) may
be used to specify all columns and '-1' (e.g. -R -1) to specify the last visible column.
It's possible to use ranges like '1-5' when addressing columns by numbers.
struct hexdump_clr {
struct list_head colorlist; /* next color unit */
const char *fmt; /* the color, UL_COLOR_* */
- off_t offt; /* offset where unit is valid... */
- int range; /* ... and it's range */
+ off_t offt; /* offset of range where unit is valid... */
+ int range; /* ... and range length */
int val; /* value ... */
char *str; /* ... or string to match */
int invert; /* invert condition? */