From e13f29984251dbbe6076264ed710c2922312eed1 Mon Sep 17 00:00:00 2001 From: Bryce Harrington Date: Tue, 19 Mar 2013 12:12:46 -0700 Subject: [PATCH] xfree86: Be verbose if waiting on opening the drm device Signed-off-by: Bryce Harrington Reviewed-by: Chris Wilson Signed-off-by: Keith Packard --- hw/xfree86/os-support/linux/lnx_platform.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hw/xfree86/os-support/linux/lnx_platform.c b/hw/xfree86/os-support/linux/lnx_platform.c index 977d59049..444f8f5d5 100644 --- a/hw/xfree86/os-support/linux/lnx_platform.c +++ b/hw/xfree86/os-support/linux/lnx_platform.c @@ -43,7 +43,10 @@ get_drm_info(struct OdevAttributes *attribs, char *path) if (tries > 1) LogMessage(X_INFO, "setversion 1.4 succeeded on try #%d\n", tries); break; - } else if (err != -EACCES) { + } if (err == -EACCES) { + if (tries % 500 == 0) + LogMessage(X_INFO, "waiting on drm device...\n"); + } else { break; }