Explorar o código

tools/lguest: fix features_accepted logic in example launcher.

We were clearing the lower bits when setting the upper bits.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell %!s(int64=11) %!d(string=hai) anos
pai
achega
53aceb49f9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      tools/lguest/lguest.c

+ 1 - 1
tools/lguest/lguest.c

@@ -1721,7 +1721,7 @@ static void emulate_mmio_write(struct device *d, u32 off, u32 val, u32 mask)
 			d->features_accepted |= val;
 		} else {
 			assert(d->mmio->cfg.guest_feature_select == 1);
-			d->features_accepted &= ((u64)0xFFFFFFFF << 32);
+			d->features_accepted &= 0xFFFFFFFF;
 			d->features_accepted |= ((u64)val) << 32;
 		}
 		if (d->features_accepted & ~d->features)