]> err.no Git - util-linux/commitdiff
lsblk: rename "RA" column to "RE"
authorKarel Zak <kzak@redhat.com>
Sun, 26 Dec 2010 22:53:21 +0000 (23:53 +0100)
committerKarel Zak <kzak@redhat.com>
Sun, 26 Dec 2010 22:53:21 +0000 (23:53 +0100)
The RA abbreviation is usually used for readahead, the column in
lsblk(8) means removable.

Signed-off-by: Karel Zak <kzak@redhat.com>
misc-utils/lsblk.c

index c07e30a7170f6405e461f4d07bfa1febe8f67e7f..9d0f0160fb608ebb9c0b0178b16924a1defffe3c 100644 (file)
@@ -63,7 +63,7 @@ enum {
        COL_LABEL,
        COL_UUID,
        COL_RO,
-       COL_RA,
+       COL_RE,
        COL_MODEL,
        COL_SIZE,
        COL_OWNER,
@@ -98,7 +98,7 @@ static struct colinfo infos[__NCOLUMNS] = {
        [COL_LABEL]  = { "LABEL",   0.1, 0, N_("filesystem LABEL") },
        [COL_UUID]   = { "UUID",    36,  0, N_("filesystem UUID") },
        [COL_RO]     = { "RO",      1, TT_FL_RIGHT, N_("read-only device") },
-       [COL_RA]     = { "RA",      1, TT_FL_RIGHT, N_("removable device") },
+       [COL_RE]     = { "RE",      1, TT_FL_RIGHT, N_("removable device") },
        [COL_ROTA]   = { "ROTA",    1, TT_FL_RIGHT, N_("rotational device") },
        [COL_MODEL]  = { "MODEL",   0.1, TT_FL_TRUNC, N_("device identifier") },
        [COL_SIZE]   = { "SIZE",    6, TT_FL_RIGHT, N_("size of the device") },
@@ -570,7 +570,7 @@ static void set_tt_data(struct blkdev_cxt *cxt, int col, int id, struct tt_line
                tt_line_set_data(ln, col, is_readonly_device(cxt) ?
                                        xstrdup("1") : xstrdup("0"));
                break;
-       case COL_RA:
+       case COL_RE:
                p = sysfs_strdup(cxt, "removable");
                if (!p && cxt->parent)
                        p = sysfs_strdup(cxt->parent, "removable");
@@ -984,7 +984,7 @@ int main(int argc, char *argv[])
        if (!ncolumns) {
                columns[ncolumns++] = COL_NAME;
                columns[ncolumns++] = COL_MAJMIN;
-               columns[ncolumns++] = COL_RA;
+               columns[ncolumns++] = COL_RE;
                columns[ncolumns++] = COL_SIZE;
                columns[ncolumns++] = COL_RO;
                columns[ncolumns++] = COL_TARGET;