Author: kib
Date: Sat Dec  1 16:43:18 2018
New Revision: 341374
URL: https://svnweb.freebsd.org/changeset/base/341374

Log:
  Correct the tunable name in the message.
  
  Submitted by:  Andre Albsmeier <m...@fbsd.e4m.org>
  PR:   231577
  MFC after:    1 week

Modified:
  head/sys/arm/arm/pmap-v6.c
  head/sys/i386/i386/pmap.c

Modified: head/sys/arm/arm/pmap-v6.c
==============================================================================
--- head/sys/arm/arm/pmap-v6.c  Sat Dec  1 15:42:02 2018        (r341373)
+++ head/sys/arm/arm/pmap-v6.c  Sat Dec  1 16:43:18 2018        (r341374)
@@ -3037,7 +3037,7 @@ get_pv_entry(pmap_t pmap, boolean_t try)
                if (ratecheck(&lastprint, &printinterval))
                        printf("Approaching the limit on PV entries, consider "
                            "increasing either the vm.pmap.shpgperproc or the "
-                           "vm.pmap.pv_entry_max tunable.\n");
+                           "vm.pmap.pv_entries tunable.\n");
 retry:
        pc = TAILQ_FIRST(&pmap->pm_pvchunk);
        if (pc != NULL) {

Modified: head/sys/i386/i386/pmap.c
==============================================================================
--- head/sys/i386/i386/pmap.c   Sat Dec  1 15:42:02 2018        (r341373)
+++ head/sys/i386/i386/pmap.c   Sat Dec  1 16:43:18 2018        (r341374)
@@ -2568,7 +2568,7 @@ get_pv_entry(pmap_t pmap, boolean_t try)
                if (ratecheck(&lastprint, &printinterval))
                        printf("Approaching the limit on PV entries, consider "
                            "increasing either the vm.pmap.shpgperproc or the "
-                           "vm.pmap.pv_entry_max tunable.\n");
+                           "vm.pmap.pv_entries tunable.\n");
 retry:
        pc = TAILQ_FIRST(&pmap->pm_pvchunk);
        if (pc != NULL) {
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to