Displaying 10 results from an estimated 10 matches for "hmem".
Did you mean:
shmem
2006 Feb 02
5
Fwd: win32-clipboard and Unicode zero bytes
Hi all,
I''m forwarding this message from Brian Marick. If you
run this test script and then paste the results into a
Unicode aware text editor, you''ll notice that it only
prints one character instead of three.
I tried changing the strlen to _tcslen and strcpy to
_tcscpy, but that didn''t help. I mucked around a bit
with the MultiByteToWideChar function, too, but
2001 Sep 04
0
Presumed bug found in SCROLL_GetPtrScrollInfo
...scroll.c ]:
126
/***********************************************************************
127 * SCROLL_GetPtrScrollInfo
128 */
129 static SCROLLBAR_INFO *SCROLL_GetPtrScrollInfo( WND* wndPtr, INT
nBar )
130 {
131 SCROLLBAR_INFO *infoPtr;
132 HGLOBAL hmem;
133 if (!wndPtr) return NULL;
134 switch(nBar)
135 {
136 case SB_HORZ: infoPtr = (SCROLLBAR_INFO
*)wndPtr->pHScroll; break;
137 case SB_VERT: infoPtr = (SCROLLBAR_INFO
*)wndPtr->pVScroll; break;
138 /* -- OLD VERSION -- case SB_...
2001 Aug 07
3
Troubles with Farpoint Spread controls
Hi all.
The environment we are working on is a Red Hat Linux 6.2, with XFree 4.0
and KDE 2.1.
The wine has been compiled using egcs-1.1.2. Wine itself is latest
snapshot (20010731).
The application we're trying to run crashes when tries to display a
dialog box using Spread controls (from Farpoint). The crash occurs
during a WM_PAINT.
By exploring the builind of the window, the control
2019 Jul 29
0
[PATCH 4/9] nouveau: factor out dmem fence completion
...page)
spin_unlock(&chunk->lock);
}
+static void nouveau_dmem_fence_done(struct nouveau_fence **fence)
+{
+ if (fence) {
+ nouveau_fence_wait(*fence, true, false);
+ nouveau_fence_unref(fence);
+ } else {
+ /*
+ * FIXME wait for channel to be IDLE before calling finalizing
+ * the hmem object.
+ */
+ }
+}
+
static void
nouveau_dmem_fault_alloc_and_copy(struct vm_area_struct *vma,
const unsigned long *src_pfns,
@@ -236,15 +249,7 @@ nouveau_dmem_fault_finalize_and_map(struct nouveau_dmem_fault *fault)
{
struct nouveau_drm *drm = fault->drm;
- if (fault->fence)...
2002 Feb 26
0
DDE problems
...): 40ca6a14 406c1c84 080745a8 40ca6b70
0x40ca69ec (_end+0x237d98): 00000000 00000000 00000000 406911ae
0x40ca69fc (_end+0x237da8): 406c1c84 00010021 00000000 00000000
0x40ca6a0c (_end+0x237db8):
004e: sel=0277 base=40cb7000 limit=00000fff 32-bit rw-
Backtrace:
=>0 0x400a47d6 (GlobalLock+0x1a(hmem=0xc032090f) [global.c:1090] in
libntdll.so) (ebp=40ca69b0)
1 0x406266c6 (UnpackDDElParam+0x46(msg=0x3e7, lParam=0xc032090f,
uiLo=0x40ca6a10, uiHi=0x40ca6a14) [misc.c:130] in libuser32.so) (ebp=40ca69c8)
2 0x4062f205 (post_dde_message+0x35(dest_tid=0x80745a8, data=0x40ca6b2c,
info=0x40ca6b7...
2019 Aug 08
10
turn hmm migrate_vma upside down v2
Hi Jérôme, Ben and Jason,
below is a series against the hmm tree which starts revamping the
migrate_vma functionality. The prime idea is to export three slightly
lower level functions and thus avoid the need for migrate_vma_ops
callbacks.
Diffstat:
5 files changed, 281 insertions(+), 607 deletions(-)
A git tree is also available at:
git://git.infradead.org/users/hch/misc.git
2018 Jan 11
0
[PATCH 1/3] gpu: host1x: Add support for DMA fences
...job *job)
job->syncpt_end = syncval;
- /* add a setclass for modules that require it */
- if (job->class)
- host1x_cdma_push(&ch->cdma,
- host1x_opcode_setclass(job->class, 0, 0),
- HOST1X_OPCODE_NOP);
-
submit_gathers(job);
/* end CDMA submit & stash pinned hMems into sync queue */
@@ -212,4 +233,5 @@ static int host1x_channel_init(struct host1x_channel *ch, struct host1x *dev,
static const struct host1x_channel_ops host1x_channel_ops = {
.init = host1x_channel_init,
.submit = channel_submit,
+ .push_wait = channel_push_wait
};
diff --git a/drivers/g...
2019 Jul 29
24
turn the hmm migrate_vma upside down
Hi Jérôme, Ben and Jason,
below is a series against the hmm tree which starts revamping the
migrate_vma functionality. The prime idea is to export three slightly
lower level functions and thus avoid the need for migrate_vma_ops
callbacks.
Diffstat:
4 files changed, 285 insertions(+), 602 deletions(-)
A git tree is also available at:
git://git.infradead.org/users/hch/misc.git
2018 Jan 11
6
[PATCH 0/3] drm/tegra: Add support for fence FDs
From: Thierry Reding <treding at nvidia.com>
This set of patches adds support for fences to Tegra DRM and complements
the fence FD support for Nouveau. Technically this isn't necessary for a
fence-based synchronization loop with Nouveau because the KMS core takes
care of all that, but engines behind host1x can use the IOCTL extensions
provided here to emit fence FDs that in turn can be
2019 Aug 14
20
turn hmm migrate_vma upside down v3
Hi Jérôme, Ben and Jason,
below is a series against the hmm tree which starts revamping the
migrate_vma functionality. The prime idea is to export three slightly
lower level functions and thus avoid the need for migrate_vma_ops
callbacks.
Diffstat:
7 files changed, 282 insertions(+), 614 deletions(-)
A git tree is also available at:
git://git.infradead.org/users/hch/misc.git