summaryrefslogtreecommitdiffstats
path: root/sys/geom
diff options
context:
space:
mode:
authorpjd <pjd@FreeBSD.org>2011-10-25 13:08:03 +0000
committerpjd <pjd@FreeBSD.org>2011-10-25 13:08:03 +0000
commit3304c99aeb1b5253d01e719c059ce99bdb25466e (patch)
tree7cfa7364ccc9e88f03046cee0c984b67e8c99068 /sys/geom
parent9775205c91eeb73e3fe6a116ddc308ca1ad44bd6 (diff)
downloadFreeBSD-src-3304c99aeb1b5253d01e719c059ce99bdb25466e.zip
FreeBSD-src-3304c99aeb1b5253d01e719c059ce99bdb25466e.tar.gz
Fit lines into 80 chars.
MFC after: 3 days
Diffstat (limited to 'sys/geom')
-rw-r--r--sys/geom/eli/g_eli.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/geom/eli/g_eli.c b/sys/geom/eli/g_eli.c
index 6941470..bbee007 100644
--- a/sys/geom/eli/g_eli.c
+++ b/sys/geom/eli/g_eli.c
@@ -475,7 +475,8 @@ again:
}
while (sc->sc_flags & G_ELI_FLAG_SUSPEND) {
if (sc->sc_inflight > 0) {
- G_ELI_DEBUG(0, "inflight=%d", sc->sc_inflight);
+ G_ELI_DEBUG(0, "inflight=%d",
+ sc->sc_inflight);
/*
* We still have inflight BIOs, so
* sleep and retry.
@@ -1132,7 +1133,8 @@ g_eli_taste(struct g_class *mp, struct g_provider *pp, int flags __unused)
/* Try again. */
continue;
} else if (error > 0) {
- G_ELI_DEBUG(0, "Cannot decrypt Master Key for %s (error=%d).",
+ G_ELI_DEBUG(0,
+ "Cannot decrypt Master Key for %s (error=%d).",
pp->name, error);
g_eli_keyfiles_clear(pp->name);
return (NULL);
@@ -1226,8 +1228,8 @@ g_eli_dumpconf(struct sbuf *sb, const char *indent, struct g_geom *gp,
}
sbuf_printf(sb, "%s<KeyLength>%u</KeyLength>\n", indent,
sc->sc_ekeylen);
- sbuf_printf(sb, "%s<EncryptionAlgorithm>%s</EncryptionAlgorithm>\n", indent,
- g_eli_algo2str(sc->sc_ealgo));
+ sbuf_printf(sb, "%s<EncryptionAlgorithm>%s</EncryptionAlgorithm>\n",
+ indent, g_eli_algo2str(sc->sc_ealgo));
sbuf_printf(sb, "%s<State>%s</State>\n", indent,
(sc->sc_flags & G_ELI_FLAG_SUSPEND) ? "SUSPENDED" : "ACTIVE");
}
OpenPOWER on IntegriCloud