Remove #if 0'd code and some unused string functions
authorKeith Whitwell <keith@tungstengraphics.com>
Thu, 24 Apr 2003 09:41:33 +0000 (09:41 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Thu, 24 Apr 2003 09:41:33 +0000 (09:41 +0000)
linux-core/drmP.h
linux-core/drm_drv.c
linux-core/drm_memory.h
linux/drmP.h
linux/drm_drv.h
linux/drm_memory.h
linux/gamma_context.h
tests/dristat.c

index 8ebd1ec..08f4faa 100644 (file)
@@ -447,21 +447,6 @@ typedef struct drm_lock_data {
 } drm_lock_data_t;
 
 typedef struct drm_device_dma {
-#if 0
-                               /* Performance Counters */
-       atomic_t          total_prio;   /* Total DRM_DMA_PRIORITY          */
-       atomic_t          total_bytes;  /* Total bytes DMA'd               */
-       atomic_t          total_dmas;   /* Total DMA buffers dispatched    */
-
-       atomic_t          total_missed_dma;  /* Missed drm_do_dma           */
-       atomic_t          total_missed_lock; /* Missed lock in drm_do_dma   */
-       atomic_t          total_missed_free; /* Missed drm_free_this_buffer */
-       atomic_t          total_missed_sched;/* Missed drm_dma_schedule     */
-
-       atomic_t          total_tried;  /* Tried next_buffer                */
-       atomic_t          total_hit;    /* Sent next_buffer                 */
-       atomic_t          total_lost;   /* Lost interrupt                   */
-#endif
 
        drm_buf_entry_t   bufs[DRM_MAX_ORDER+1];
        int               buf_count;
@@ -694,8 +679,6 @@ extern int       DRM(mem_info)(char *buf, char **start, off_t offset,
 extern void         *DRM(alloc)(size_t size, int area);
 extern void         *DRM(realloc)(void *oldpt, size_t oldsize, size_t size,
                                   int area);
-extern char         *DRM(strdup)(const char *s, int area);
-extern void         DRM(strfree)(const char *s, int area);
 extern void         DRM(free)(void *pt, size_t size, int area);
 extern unsigned long DRM(alloc_pages)(int order, int area);
 extern void         DRM(free_pages)(unsigned long address, int order,
index dad961f..88d27e1 100644 (file)
@@ -815,9 +815,6 @@ int DRM(release)( struct inode *inode, struct file *filp )
                                break;  /* Got lock */
                        }
                                /* Contention */
-#if 0
-                       atomic_inc( &dev->total_sleeps );
-#endif
                        schedule();
                        if ( signal_pending( current ) ) {
                                retcode = -ERESTARTSYS;
index 22aab7f..138de87 100644 (file)
@@ -178,26 +178,6 @@ void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size, int area)
        return pt;
 }
 
-char *DRM(strdup)(const char *s, int area)
-{
-       char *pt;
-       int      length = s ? strlen(s) : 0;
-
-       if (!(pt = DRM(alloc)(length+1, area))) return NULL;
-       strcpy(pt, s);
-       return pt;
-}
-
-void DRM(strfree)(const char *s, int area)
-{
-       unsigned int size;
-
-       if (!s) return;
-
-       size = 1 + (s ? strlen(s) : 0);
-       DRM(free)((void *)s, size, area);
-}
-
 void DRM(free)(void *pt, size_t size, int area)
 {
        int alloc_count;
index 8ebd1ec..08f4faa 100644 (file)
@@ -447,21 +447,6 @@ typedef struct drm_lock_data {
 } drm_lock_data_t;
 
 typedef struct drm_device_dma {
-#if 0
-                               /* Performance Counters */
-       atomic_t          total_prio;   /* Total DRM_DMA_PRIORITY          */
-       atomic_t          total_bytes;  /* Total bytes DMA'd               */
-       atomic_t          total_dmas;   /* Total DMA buffers dispatched    */
-
-       atomic_t          total_missed_dma;  /* Missed drm_do_dma           */
-       atomic_t          total_missed_lock; /* Missed lock in drm_do_dma   */
-       atomic_t          total_missed_free; /* Missed drm_free_this_buffer */
-       atomic_t          total_missed_sched;/* Missed drm_dma_schedule     */
-
-       atomic_t          total_tried;  /* Tried next_buffer                */
-       atomic_t          total_hit;    /* Sent next_buffer                 */
-       atomic_t          total_lost;   /* Lost interrupt                   */
-#endif
 
        drm_buf_entry_t   bufs[DRM_MAX_ORDER+1];
        int               buf_count;
@@ -694,8 +679,6 @@ extern int       DRM(mem_info)(char *buf, char **start, off_t offset,
 extern void         *DRM(alloc)(size_t size, int area);
 extern void         *DRM(realloc)(void *oldpt, size_t oldsize, size_t size,
                                   int area);
-extern char         *DRM(strdup)(const char *s, int area);
-extern void         DRM(strfree)(const char *s, int area);
 extern void         DRM(free)(void *pt, size_t size, int area);
 extern unsigned long DRM(alloc_pages)(int order, int area);
 extern void         DRM(free_pages)(unsigned long address, int order,
index dad961f..88d27e1 100644 (file)
@@ -815,9 +815,6 @@ int DRM(release)( struct inode *inode, struct file *filp )
                                break;  /* Got lock */
                        }
                                /* Contention */
-#if 0
-                       atomic_inc( &dev->total_sleeps );
-#endif
                        schedule();
                        if ( signal_pending( current ) ) {
                                retcode = -ERESTARTSYS;
index 22aab7f..138de87 100644 (file)
@@ -178,26 +178,6 @@ void *DRM(realloc)(void *oldpt, size_t oldsize, size_t size, int area)
        return pt;
 }
 
-char *DRM(strdup)(const char *s, int area)
-{
-       char *pt;
-       int      length = s ? strlen(s) : 0;
-
-       if (!(pt = DRM(alloc)(length+1, area))) return NULL;
-       strcpy(pt, s);
-       return pt;
-}
-
-void DRM(strfree)(const char *s, int area)
-{
-       unsigned int size;
-
-       if (!s) return;
-
-       size = 1 + (s ? strlen(s) : 0);
-       DRM(free)((void *)s, size, area);
-}
-
 void DRM(free)(void *pt, size_t size, int area)
 {
        int alloc_count;
index 9e4b913..2338cb3 100644 (file)
@@ -143,16 +143,11 @@ int DRM(context_switch)(drm_device_t *dev, int old, int new)
        char        buf[64];
        drm_queue_t *q;
 
-#if 0
-       atomic_inc(&dev->total_ctx);
-#endif
-
        if (test_and_set_bit(0, &dev->context_flag)) {
                DRM_ERROR("Reentering -- FIXME\n");
                return -EBUSY;
        }
 
-
        DRM_DEBUG("Context switch from %d to %d\n", old, new);
 
        if (new >= dev->queue_count) {
index 47193ab..07ab54e 100644 (file)
@@ -69,18 +69,6 @@ static void getbusid(int fd)
     drmFreeBusid(busid);
 }
 
-#if 0
-typedef struct {
-    unsigned long      offset;  /* Requested physical address (0 for SAREA)*/
-    unsigned long      size;    /* Requested physical size (bytes)         */
-    drm_map_type_t     type;    /* Type of memory to map                   */
-    drm_map_flags_t flags;      /* Flags                                   */
-    void               *handle; /* User-space: "Handle" to pass to mmap    */
-    /* Kernel-space: kernel-virtual address    */
-    int                mtrr;    /* MTRR slot used                          */
-                                /* Private data                            */
-} drmVmRec, *drmVmPtr;
-#endif
 
 static void getvm(int fd)
 {