All of lore.kernel.org
 help / color / mirror / Atom feed
* PATCH: radeondrm x86_64 and android32
@ 2014-09-15 10:09 Sergey Korshunoff
  2014-09-15 11:54 ` Christian König
  0 siblings, 1 reply; 5+ messages in thread
From: Sergey Korshunoff @ 2014-09-15 10:09 UTC (permalink / raw)
  To: dri-devel

Android-x86 4.0-r1 (32 bit) have problems with x86_64 kernel when he
trying to use a radeon kms. The following change correct a problem:

drivers/gpu/drm/radeon_kms.c (function radeon_info_ioctl):

- value_ptr = (uint32_t *)((unsigned long)info->value);
+ value_ptr = (uint32_t *)((unsigned)info->value);

Looks like a userspace data in android running under x86_64 is located
above 4 Gb. I don't think so. But after this change android run fine.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2014-09-16 13:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-15 10:09 PATCH: radeondrm x86_64 and android32 Sergey Korshunoff
2014-09-15 11:54 ` Christian König
2014-09-15 15:43   ` Sergey Korshunoff
2014-09-15 16:07     ` Christian König
2014-09-16 13:29       ` Sergey Korshunoff

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.