Module Name: src Committed By: jdolecek Date: Sat Apr 11 16:02:41 UTC 2020
Modified Files: src/sys/arch/xen/xen: xbd_xenbus.c Log Message: print 'backend features' instead of just 'features' for the detected backend features, so that it's clear it's just capability rather than something actually used by the frontend driver To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 src/sys/arch/xen/xen/xbd_xenbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/sys/arch/xen/xen/xbd_xenbus.c diff -u src/sys/arch/xen/xen/xbd_xenbus.c:1.100 src/sys/arch/xen/xen/xbd_xenbus.c:1.101 --- src/sys/arch/xen/xen/xbd_xenbus.c:1.100 Fri Apr 10 11:41:04 2020 +++ src/sys/arch/xen/xen/xbd_xenbus.c Sat Apr 11 16:02:41 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: xbd_xenbus.c,v 1.100 2020/04/10 11:41:04 jdolecek Exp $ */ +/* $NetBSD: xbd_xenbus.c,v 1.101 2020/04/11 16:02:41 jdolecek Exp $ */ /* * Copyright (c) 2006 Manuel Bouyer. @@ -50,7 +50,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: xbd_xenbus.c,v 1.100 2020/04/10 11:41:04 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: xbd_xenbus.c,v 1.101 2020/04/11 16:02:41 jdolecek Exp $"); #include "opt_xen.h" @@ -576,7 +576,8 @@ xbd_backend_changed(void *arg, XenbusSta buf, (int)dg->dg_secsize, sc->sc_xbdsize); snprintb(buf, sizeof(buf), BLKIF_FEATURE_BITS, sc->sc_features); - aprint_normal_dev(sc->sc_dksc.sc_dev, "features %s\n", buf); + aprint_normal_dev(sc->sc_dksc.sc_dev, + "backend features %s\n", buf); /* Discover wedges on this disk. */ dkwedge_discover(&sc->sc_dksc.sc_dkdev);