Author: sbruno
Date: Thu Sep 11 22:39:27 2014
New Revision: 271442
URL: http://svnweb.freebsd.org/changeset/base/271442

Log:
  Add device name used in geom_map verbose output.  This helps when using
  geom_map with multiple flash/spi devices.
  
  Phabric:  https://reviews.freebsd.org/D766
  Reviewed by:  adrian
  MFC after:    2 weeks

Modified:
  head/sys/geom/geom_map.c

Modified: head/sys/geom/geom_map.c
==============================================================================
--- head/sys/geom/geom_map.c    Thu Sep 11 21:40:32 2014        (r271441)
+++ head/sys/geom/geom_map.c    Thu Sep 11 22:39:27 2014        (r271442)
@@ -153,8 +153,8 @@ find_marker(struct g_consumer *cp, const
                return (1);
 
        if (bootverbose) {
-               printf("MAP: search key \"%s\" from 0x%jx, step 0x%jx\n",
-                   search_key, (intmax_t)search_start, (intmax_t)search_step);
+               printf("MAP: search %s for key \"%s\" from 0x%jx, step 0x%jx\n",
+                   cp->geom->name, search_key, (intmax_t)search_start, 
(intmax_t)search_step);
        }
 
        /* error if search_key is empty */
@@ -321,9 +321,9 @@ g_map_parse_part(struct g_class *mp, str
        }
 
        if (bootverbose) {
-               printf("MAP: %jxx%jx, data=%jxx%jx "
+               printf("MAP: %s: %jxx%jx, data=%jxx%jx "
                    "\"/dev/map/%s\"\n",
-                   (intmax_t)start, (intmax_t)size, (intmax_t)offset,
+                   cp->geom->name, (intmax_t)start, (intmax_t)size, 
(intmax_t)offset,
                    (intmax_t)dsize, name);
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to