Displaying 6 results from an estimated 6 matches for "drm_nouveau_event_nvif".
2016 Sep 18
2
[PATCH 2/2] nouveau: Fix compile error due to bad include
...nged, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h
> index 259588a..0bfaae8 100644
> --- a/drm/nouveau/uapi/drm/nouveau_drm.h
> +++ b/drm/nouveau/uapi/drm/nouveau_drm.h
> @@ -27,7 +27,7 @@
>
> #define DRM_NOUVEAU_EVENT_NVIF 0x80000000
>
> -#include "drm.h"
> +#include "drm/drm.h"
>
> #if defined(__cplusplus)
> extern "C" {
> --
> 2.10.0
>
> _______________________________________________
> Nouveau mailing list
> N...
2016 Sep 18
5
[PATCH 1/2] Revert "bus: remove cpu_coherent flag"
This reverts commit 01bbcb69f80e1058395b737ae399c6f4ef48691b.
The commit caused fence timeouts within nvc0_screen_destroy and most likely
other places as well.
The most obvious effect is, that userspace processes take minutes to actually
quit.
Signed-off-by: Karol Herbst <karolherbst at gmail.com>
---
drm/nouveau/include/nvkm/core/device.h | 1 +
drm/nouveau/nouveau_bo.c |
2016 Apr 21
0
[PATCH 11/24] drm/nouveau: drop drm/ prefix from include
...--
include/uapi/drm/nouveau_drm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/uapi/drm/nouveau_drm.h b/include/uapi/drm/nouveau_drm.h
index 8d2dc05..259588a 100644
--- a/include/uapi/drm/nouveau_drm.h
+++ b/include/uapi/drm/nouveau_drm.h
@@ -27,7 +27,7 @@
#define DRM_NOUVEAU_EVENT_NVIF 0x80000000
-#include <drm/drm.h>
+#include "drm.h"
#if defined(__cplusplus)
extern "C" {
--
2.6.2
2016 Sep 18
0
[PATCH 2/2] nouveau: Fix compile error due to bad include
.../drm/nouveau_drm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h
index 259588a..0bfaae8 100644
--- a/drm/nouveau/uapi/drm/nouveau_drm.h
+++ b/drm/nouveau/uapi/drm/nouveau_drm.h
@@ -27,7 +27,7 @@
#define DRM_NOUVEAU_EVENT_NVIF 0x80000000
-#include "drm.h"
+#include "drm/drm.h"
#if defined(__cplusplus)
extern "C" {
--
2.10.0
2016 Sep 18
0
[PATCH 2/2] nouveau: Fix compile error due to bad include
...(-)
>>
>> diff --git a/drm/nouveau/uapi/drm/nouveau_drm.h b/drm/nouveau/uapi/drm/nouveau_drm.h
>> index 259588a..0bfaae8 100644
>> --- a/drm/nouveau/uapi/drm/nouveau_drm.h
>> +++ b/drm/nouveau/uapi/drm/nouveau_drm.h
>> @@ -27,7 +27,7 @@
>>
>> #define DRM_NOUVEAU_EVENT_NVIF 0x80000000
>>
>> -#include "drm.h"
>> +#include "drm/drm.h"
>>
>> #if defined(__cplusplus)
>> extern "C" {
>> --
>> 2.10.0
>>
>> ________________________________________...
2016 Apr 21
25
[PATCH 00/24] drm: add extern C guard for the UAPI headers
Hi all,
As some of you may know there some subtle distinction between C and C++
structs, thus one should wrap/annotate them roughly like below.
...
#if defined(__cplusplus)
extern "C" {
#endif
struct foo {
int bar;
...
};
...
#if defined(__cplusplus)
}
#endif
In order to work around the lack of these users can wrap the header
inclusion in the same way. For example: