Page MenuHomeFreeBSD

D41823.id127266.diff
No OneTemporary

D41823.id127266.diff

diff --git a/sys/geom/geom_io.c b/sys/geom/geom_io.c
--- a/sys/geom/geom_io.c
+++ b/sys/geom/geom_io.c
@@ -142,7 +142,7 @@
bp = uma_zalloc(biozone, M_NOWAIT | M_ZERO);
#ifdef KTR
- if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
+ if ((KTR_COMPILE & KTR_GEOM) & (ktr_mask & KTR_GEOM)) {
struct stack st;
CTR1(KTR_GEOM, "g_new_bio(): %p", bp);
@@ -160,7 +160,7 @@
bp = uma_zalloc(biozone, M_WAITOK | M_ZERO);
#ifdef KTR
- if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
+ if ((KTR_COMPILE & KTR_GEOM) & (ktr_mask & KTR_GEOM)) {
struct stack st;
CTR1(KTR_GEOM, "g_alloc_bio(): %p", bp);
@@ -175,7 +175,7 @@
g_destroy_bio(struct bio *bp)
{
#ifdef KTR
- if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
+ if ((KTR_COMPILE & KTR_GEOM) & (ktr_mask & KTR_GEOM)) {
struct stack st;
CTR1(KTR_GEOM, "g_destroy_bio(): %p", bp);
@@ -220,7 +220,7 @@
bp->bio_children++;
}
#ifdef KTR
- if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
+ if ((KTR_COMPILE & KTR_GEOM) & (ktr_mask & KTR_GEOM)) {
struct stack st;
CTR2(KTR_GEOM, "g_clone_bio(%p): %p", bp, bp2);
@@ -249,7 +249,7 @@
bp2->bio_attribute = bp->bio_attribute;
bp->bio_children++;
#ifdef KTR
- if ((KTR_COMPILE & KTR_GEOM) && (ktr_mask & KTR_GEOM)) {
+ if ((KTR_COMPILE & KTR_GEOM) & (ktr_mask & KTR_GEOM)) {
struct stack st;
CTR2(KTR_GEOM, "g_duplicate_bio(%p): %p", bp, bp2);

File Metadata

Mime Type
text/plain
Expires
Wed, Sep 25, 8:55 AM (11 h, 33 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
12749572
Default Alt Text
D41823.id127266.diff (1 KB)

Event Timeline