diff options
author | Thomas Hellstrom <unichrome@shipmail.org> | 2005-08-14 09:52:09 +0000 |
---|---|---|
committer | Thomas Hellstrom <unichrome@shipmail.org> | 2005-08-14 09:52:09 +0000 |
commit | 4f5961eeeee806a2d6e08e159c56262d4f060cba (patch) | |
tree | e5e70f2900f9cb441ad16eca442bc616018595e8 /shared | |
parent | 4050f5066a706bda74ed93ab858bbc9fc0b1477b (diff) |
VIA bugvixes by Joris van Rantwijk Initial commit.
Diffstat (limited to 'shared')
-rw-r--r-- | shared/via.h | 10 | ||||
-rw-r--r-- | shared/via_verifier.c | 2 | ||||
-rw-r--r-- | shared/via_video.c | 6 |
3 files changed, 11 insertions, 7 deletions
diff --git a/shared/via.h b/shared/via.h index 5c33d6a7..cc63df9f 100644 --- a/shared/via.h +++ b/shared/via.h @@ -30,18 +30,18 @@ #define DRIVER_NAME "via" #define DRIVER_DESC "VIA Unichrome / Pro" -#define DRIVER_DATE "20050715" +#define DRIVER_DATE "20050814" #define DRIVER_MAJOR 2 #define DRIVER_MINOR 6 -#define DRIVER_PATCHLEVEL 4 +#define DRIVER_PATCHLEVEL 7 #define DRIVER_IOCTLS \ [DRM_IOCTL_NR(DRM_IOCTL_VIA_ALLOCMEM)] = { via_mem_alloc, 1, 0 }, \ [DRM_IOCTL_NR(DRM_IOCTL_VIA_FREEMEM)] = { via_mem_free, 1, 0 }, \ - [DRM_IOCTL_NR(DRM_IOCTL_VIA_AGP_INIT)] = { via_agp_init, 1, 0 }, \ - [DRM_IOCTL_NR(DRM_IOCTL_VIA_FB_INIT)] = { via_fb_init, 1, 0 }, \ - [DRM_IOCTL_NR(DRM_IOCTL_VIA_MAP_INIT)] = { via_map_init, 1, 0 }, \ + [DRM_IOCTL_NR(DRM_IOCTL_VIA_AGP_INIT)] = { via_agp_init, 1, 1 }, \ + [DRM_IOCTL_NR(DRM_IOCTL_VIA_FB_INIT)] = { via_fb_init, 1, 1 }, \ + [DRM_IOCTL_NR(DRM_IOCTL_VIA_MAP_INIT)] = { via_map_init, 1, 1 }, \ [DRM_IOCTL_NR(DRM_IOCTL_VIA_DEC_FUTEX)] = { via_decoder_futex, 1, 0}, \ [DRM_IOCTL_NR(DRM_IOCTL_VIA_DMA_INIT)] = { via_dma_init, 1, 0}, \ [DRM_IOCTL_NR(DRM_IOCTL_VIA_CMDBUFFER)] = { via_cmdbuffer, 1, 0}, \ diff --git a/shared/via_verifier.c b/shared/via_verifier.c index ed14b1c6..13b5ccf0 100644 --- a/shared/via_verifier.c +++ b/shared/via_verifier.c @@ -248,7 +248,7 @@ static hazard_t table3[256]; static __inline__ int eat_words(const uint32_t **buf, const uint32_t *buf_end, unsigned num_words) { - if ((*buf - buf_end) >= num_words) { + if ((buf_end - *buf) >= num_words) { *buf += num_words; return 0; } diff --git a/shared/via_video.c b/shared/via_video.c index 289ddac1..d79ee028 100644 --- a/shared/via_video.c +++ b/shared/via_video.c @@ -54,6 +54,9 @@ via_release_futex(drm_via_private_t *dev_priv, int context) unsigned int i; volatile int *lock; + if (!dev_priv->sarea_priv) + return; + for (i=0; i < VIA_NR_XVMC_LOCKS; ++i) { lock = (int *) XVMCLOCKPTR(dev_priv->sarea_priv, i); if ( (_DRM_LOCKING_CONTEXT( *lock ) == context)) { @@ -77,7 +80,8 @@ via_decoder_futex(DRM_IOCTL_ARGS) DRM_DEBUG("%s\n", __FUNCTION__); - DRM_COPY_FROM_USER_IOCTL(fx, (drm_via_futex_t *) data, sizeof(fx)); + DRM_COPY_FROM_USER_IOCTL(fx, (drm_via_futex_t __user *) data, + sizeof(fx)); if (fx.lock > VIA_NR_XVMC_LOCKS) return -EFAULT; |