[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH] tools/kdd: work around gcc 8.1 bug
Gcc 8.1 has a bug that causes kdd fail to build. Rewrite the code to work around that bug. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86827 Signed-off-by: Tim Deegan <tim@xxxxxxx> Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Tested-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/debugger/kdd/kdd.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/tools/debugger/kdd/kdd.c b/tools/debugger/kdd/kdd.c index 5a019a0..fb8c645 100644 --- a/tools/debugger/kdd/kdd.c +++ b/tools/debugger/kdd/kdd.c @@ -687,11 +687,10 @@ static void kdd_handle_read_ctrl(kdd_state *s) } } else { /* 32-bit control-register space starts at 0x[2]cc, for 84 bytes */ - uint32_t offset = addr; - if (offset > 0x200) - offset -= 0x200; - offset -= 0xcc; - if (offset > sizeof ctrl.c32 || offset + len > sizeof ctrl.c32) { + uint32_t offset = addr - 0xcc; + if (offset > sizeof ctrl.c32) + offset -= 0x2cc; + if (offset > sizeof ctrl.c32 || len > sizeof ctrl.c32 - offset) { KDD_LOG(s, "Request outside of known control space\n"); len = 0; } else { base-commit: e752f28409678ce3ade49986b39309178fb2a6d6 -- git-series 0.9.1 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/mailman/listinfo/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |