Displaying 7 results from an estimated 7 matches for "gem_pwrit".
Did you mean:
gem_pwrite
2016 Apr 21
0
[PATCH 02/24] drm/armada: add extern C guard for the UAPI header
...6de7f01..72e326f 100644
--- a/include/uapi/drm/armada_drm.h
+++ b/include/uapi/drm/armada_drm.h
@@ -11,6 +11,10 @@
#include "drm.h"
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
#define DRM_ARMADA_GEM_CREATE 0x00
#define DRM_ARMADA_GEM_MMAP 0x02
#define DRM_ARMADA_GEM_PWRITE 0x03
@@ -44,4 +48,8 @@ struct drm_armada_gem_pwrite {
#define DRM_IOCTL_ARMADA_GEM_PWRITE \
ARMADA_IOCTL(IOW, GEM_PWRITE, gem_pwrite)
+#if defined(__cplusplus)
+}
+#endif
+
#endif
--
2.6.2
2015 Jun 11
0
[ANNOUNCE] intel-gpu-tools 1.11
...p_wc: Explicitly check for use-after-close
igt/gem_flink_race: Explicitly quiesce the GPU before counting objects
igt/prime_self_import: Ensure driver state is consistent between counts
lib: Implement gem_sync() using WAIT
igt/gem_exec_lut_handle: Hide exec latency
igt/gem_pwrite: Test handling of larger than mappable buffers
intel-gpu-overlay: Improve error message for failure to open an output
lib: Fix types for gem_create()
igt/gem_pwrite: Also test surfaces larger than the GTT
igt/gem_pwrite: Delete unused mmap(wc) for the big CPU test
igt...
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:
2017 Jun 09
1
[ANNOUNCE] intel-gpu-tools 1.19
..._decode: Dump the GuC log if available
igt/gem_seqno_wrap: Teach to skip if i915_next_seqno is no long writable
igt/gem_exec_fence: Restrict allowing hangs to hang tests
lib: Fix up internal engine names (again)
igt/gem_exec_reloc: Check interactions with WC domain
igt/gem_pwrite: Use DOMAIN_WC for access via gem_mmap__wc
igt/gem_exec_flush: Use DOMAIN_WC for access via gem_mmap__wc
igt/gem_concurrent_blit: Mark up with DOMAIN_WC
igt/gem_cs_tlb: Mark up with DOMAIN_WC
igt/gem_mmap_wc: Mark up with DOMAIN_WC
igt/gem_storedw_loop: Mark up with D...
2016 Mar 01
0
[ANNOUNCE] intel-gpu-tools 1.14
...cuting
igt/gem_exec_nop: Remove nop latency measurements
igt/gem_concurrent_blit: Explicitly check for "missed interrupts"
igt: s/basic/sanitycheck/ on prior smoketesting
igt/gem_concurrent_all: Expand testing to cover different memory regimes
tests/gem_pread,gem_pwrite: Fix compiler warnings
igt/gem_read_read_speed: Tweak to show comparison against write-write
igt/gem_exec_nop: Restore SLOW_QUICK loop terminator
tests/gem_concurrent_all: Add a couple more sanitycheck patterns
benchmark: Measure of latency of producers -> consumers, gem...
2016 May 31
0
[ANNOUNCE] intel-gpu-tools 1.15
...t to stress allocation of batches
igt/gem_exec_create: Add a "leak" test
igt/gem_ctx_create: Broaden per-engine testing
igt/gem_exec_nop: Explain the parallel execution assertion
igt/gem_exec_nop: Correct %3.f typo
igt/gem_busy: Slow down the writer
igt/gem_pwrite: Add backwards/random access patterns
igt/gem_mocs_settings: Check for pollution of default contexts
gem_exec_lut_handle: Fix presumed_offset to force relocation on full-ppgtt
igt/gem_ctx_param: Relabel
igt/gem_exec_nop: Fix time units for assertion printf
igt/gem_con...
2020 Mar 20
0
[ANNOUNCE] igt-gpu-tools 1.25
...tests/sw_sync: Fix race condition for multi-producer termination
lib: Update selftests to use dynamic subtests
i915/gem_softpin: Limit the noreloc test runtime
i915: Start putting the mmio_base to wider use
i915/gem_ctx_isolation: Check engine relative registers
i915/gem_pwrite: Replace exhaustive tests with bounded probes
i915/gem_exec_balancer: Bump priority of background load for hang detection
i915/gem_ctx_persistence: Increase leniency for reset-timeout
i915/gem_fence_thrash: Cap the amount of work done per subtest
i915/gem_tiled_wc: Clamp ru...