diff options
| author | Dan McDonald <danmcd@joyent.com> | 2022-03-15 12:07:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-15 12:07:15 -0400 |
| commit | 83decd22b44019b0fe369224fb19e1ef21263ab6 (patch) | |
| tree | 0bbbaea9d4231f77a406362904280d6ba53e1d55 /usr/src/cmd/rcm_daemon | |
| parent | ad491f11d9af43fd3f0d6159c9e08112de475a54 (diff) | |
| download | illumos-joyent-83decd22b44019b0fe369224fb19e1ef21263ab6.tar.gz | |
OS-8361 IPD 4 (man page renumbering) tracking issue
Reviewed by: Brian Bennett <brian.bennett@joyent.com>
Approved by: Brian Bennett <brian.bennett@joyent.com>
Diffstat (limited to 'usr/src/cmd/rcm_daemon')
| -rwxr-xr-x | usr/src/cmd/rcm_daemon/common/SUNW,vdevices.pl | 4 | ||||
| -rw-r--r-- | usr/src/cmd/rcm_daemon/common/dump_rcm.c | 6 | ||||
| -rw-r--r-- | usr/src/cmd/rcm_daemon/common/ip_rcm.c | 4 | ||||
| -rw-r--r-- | usr/src/cmd/rcm_daemon/common/swap_rcm.c | 10 |
4 files changed, 9 insertions, 15 deletions
diff --git a/usr/src/cmd/rcm_daemon/common/SUNW,vdevices.pl b/usr/src/cmd/rcm_daemon/common/SUNW,vdevices.pl index 0c5d4d9ca7..3bac48673f 100755 --- a/usr/src/cmd/rcm_daemon/common/SUNW,vdevices.pl +++ b/usr/src/cmd/rcm_daemon/common/SUNW,vdevices.pl @@ -24,8 +24,6 @@ # Copyright 2008 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # -#pragma ident "%Z%%M% %I% %E% SMI" -# # # RCM script to allow/deny removal of miscellaneous virtual devices @@ -95,7 +93,7 @@ sub do_queryremove print "rcm_log_debug=do_queryremove: '$rsrc'\n"; # - # fuser(1M) sends to stdout the pids of any processes using the + # fuser(8) sends to stdout the pids of any processes using the # device. Some other information always appears on stderr and # must be discarded to avoid invalidating the test. # diff --git a/usr/src/cmd/rcm_daemon/common/dump_rcm.c b/usr/src/cmd/rcm_daemon/common/dump_rcm.c index 2cbe3b99d3..f2edeab32c 100644 --- a/usr/src/cmd/rcm_daemon/common/dump_rcm.c +++ b/usr/src/cmd/rcm_daemon/common/dump_rcm.c @@ -23,8 +23,6 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * RCM module for managing dump device during dynamic * reconfiguration. @@ -313,10 +311,10 @@ dump_remove(rcm_handle_t *hdl, char *rsrcname, id_t id, uint_t flags, } /* - * For dedicated dump devices, invoke dumpadm(1M) + * For dedicated dump devices, invoke dumpadm(8) * to relocate dump to swap. For dump device on * swap, this is a no-op as the RCM swap module - * will relocate by invoking swap(1M). + * will relocate by invoking swap(8). * * Call with cache_lock held. */ diff --git a/usr/src/cmd/rcm_daemon/common/ip_rcm.c b/usr/src/cmd/rcm_daemon/common/ip_rcm.c index 3c86f2b868..7f6785e9a7 100644 --- a/usr/src/cmd/rcm_daemon/common/ip_rcm.c +++ b/usr/src/cmd/rcm_daemon/common/ip_rcm.c @@ -482,14 +482,14 @@ ip_offline(rcm_handle_t *hd, char *rsrc, id_t id, uint_t flags, /* * This is an IPMP interface that can be offlined. - * Request in.mpathd(1M) to offline the physical interface. + * Request in.mpathd(8) to offline the physical interface. */ if ((retval = ip_ipmp_offline(node)) != IPMP_SUCCESS) ip_log_err(node, errorp, "in.mpathd offline failed"); if (retval == IPMP_EMINRED && !detachable) { /* - * in.mpathd(1M) could not offline the device because it was + * in.mpathd(8) could not offline the device because it was * the last interface in the group. However, it's possible * that it's still okay to offline it as long as there are * higher-level failover mechanisms for the addresses it owns diff --git a/usr/src/cmd/rcm_daemon/common/swap_rcm.c b/usr/src/cmd/rcm_daemon/common/swap_rcm.c index 8b7bc0d2a9..a5d3ed15d4 100644 --- a/usr/src/cmd/rcm_daemon/common/swap_rcm.c +++ b/usr/src/cmd/rcm_daemon/common/swap_rcm.c @@ -23,8 +23,6 @@ * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" - /* * RCM module providing support for swap areas * during reconfiguration operations. @@ -323,7 +321,7 @@ swap_remove(rcm_handle_t *hdl, char *rsrcname, id_t id, uint_t flags, /* * Delete all swap areas for swap file. - * Invoke swap(1M) instead of swapctl(2) to + * Invoke swap(8) instead of swapctl(2) to * handle relocation of dump device. * If dump device is configured, fail if * unable to relocate dump. @@ -345,7 +343,7 @@ swap_delete(swap_file_t *sf, char **errstr) have_dump = 0; for (sa = sf->areas; sa != NULL; sa = sa->next) { - /* swap(1M) is not idempotent */ + /* swap(8) is not idempotent */ if (sa->cache_flags & SWAP_CACHE_OFFLINED) { continue; } @@ -399,7 +397,7 @@ out: } /* - * Invoke swap(1M) to add each registered swap area. + * Invoke swap(8) to add each registered swap area. * * Call with cache_lock held. */ @@ -413,7 +411,7 @@ swap_add(swap_file_t *sf, char **errstr) int rv = RCM_SUCCESS; for (sa = sf->areas; sa != NULL; sa = sa->next) { - /* swap(1M) is not idempotent */ + /* swap(8) is not idempotent */ if (!(sa->cache_flags & SWAP_CACHE_OFFLINED)) { continue; } |
