diff -urN coreutils-9.1-orig/doc/coreutils.info coreutils-9.1/doc/coreutils.info
--- coreutils-9.1-orig/doc/coreutils.info	2022-04-16 06:40:02 +0900
+++ coreutils-9.1/doc/coreutils.info	2022-04-16 23:09:44 +0900
@@ -7357,9 +7357,9 @@
           Do not print any informational or warning messages to standard
           error.  Error messages are output as normal.
 
-     ‘noxfer’
-          Do not print the final transfer rate and volume statistics
-          that normally make up the last status line.
+     ‘xfer’
+          Print transfer rate and volume statistics following the input
+          and output block counts.
 
      ‘progress’
           Print the transfer rate and volume statistics on standard
@@ -20477,7 +20477,6 @@
 * notrunc:                               dd invocation.       (line 217)
 * now in date strings:                   Relative items in date strings.
                                                               (line  33)
-* noxfer dd status=:                     dd invocation.       (line 105)
 * NO_NEW_PRIVS:                          runcon invocation.   (line  22)
 * nproc:                                 nproc invocation.    (line   6)
 * NTFS file system:                      df invocation.       (line 220)
@@ -21208,6 +21207,7 @@
 * wtmp <1>:                              who invocation.      (line  15)
 * xcase:                                 Local.               (line  36)
 * xdigit:                                Character arrays.    (line 130)
+* xfer dd status=:                       dd invocation.       (line 105)
 * xfs file system type:                  df invocation.       (line 212)
 * XON/XOFF flow control:                 Input.               (line  40)
 * year in date strings:                  Relative items in date strings.
diff -urN coreutils-9.1-orig/doc/coreutils.texi coreutils-9.1/doc/coreutils.texi
--- coreutils-9.1-orig/doc/coreutils.texi	2022-04-16 02:30:07 +0900
+++ coreutils-9.1/doc/coreutils.texi	2022-04-16 23:09:01 +0900
@@ -9309,10 +9309,10 @@
 Do not print any informational or warning messages to standard error.
 Error messages are output as normal.
 
-@item noxfer
-@opindex noxfer @r{dd status=}
-Do not print the final transfer rate and volume statistics
-that normally make up the last status line.
+@item xfer
+@opindex xfer @r{dd status=}
+Print transfer rate and volume statistics following the input
+and output block counts.
 
 @item progress
 @opindex progress @r{dd status=}
diff -urN coreutils-9.1-orig/src/dd.c coreutils-9.1/src/dd.c
--- coreutils-9.1-orig/src/dd.c	2022-04-08 20:22:17 +0900
+++ coreutils-9.1/src/dd.c	2022-04-16 23:09:01 +0900
@@ -122,8 +122,8 @@
 enum
   {
     STATUS_NONE = 1,
-    STATUS_NOXFER = 2,
-    STATUS_DEFAULT = 3,
+    STATUS_DEFAULT = 2,
+    STATUS_XFER = 3,
     STATUS_PROGRESS = 4
   };
 
@@ -370,7 +370,7 @@
 static struct symbol_value const statuses[] =
 {
   {"none",	STATUS_NONE},
-  {"noxfer",	STATUS_NOXFER},
+  {"xfer",	STATUS_XFER},
   {"progress",	STATUS_PROGRESS},
   {"",		0}
 };
@@ -566,7 +566,7 @@
   skip=N          (or iseek=N) skip N ibs-sized input blocks\n\
   status=LEVEL    The LEVEL of information to print to stderr;\n\
                   'none' suppresses everything but error messages,\n\
-                  'noxfer' suppresses the final transfer statistics,\n\
+                  'xfer' appends final transfer statistics,\n\
                   'progress' shows periodic transfer statistics\n\
 "), stdout);
       fputs (_("\
@@ -838,7 +838,7 @@
                        select_plural (r_truncate)),
              r_truncate);
 
-  if (status_level == STATUS_NOXFER)
+  if (status_level == STATUS_DEFAULT)
     return;
 
   print_xfer_stats (0);
