aboutsummaryrefslogtreecommitdiff
path: root/linux-core/drm_proc.c
diff options
context:
space:
mode:
authorLeif Delgass <ldelgass@users.sourceforge.net>2003-04-05 19:49:16 +0000
committerLeif Delgass <ldelgass@users.sourceforge.net>2003-04-05 19:49:16 +0000
commit3f7769921bd414f489d4487a5760a8d814efd51d (patch)
treea2fc705e4af7f454c273e449bd6e9f483e1e0a30 /linux-core/drm_proc.c
parent6f88a5351c3f0b8e657708b64060adb833c8a919 (diff)
add 'SG' map type identifier string (pci scatter/gather) to /proc vm info
Diffstat (limited to 'linux-core/drm_proc.c')
-rw-r--r--linux-core/drm_proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/linux-core/drm_proc.c b/linux-core/drm_proc.c
index 510df672..8524d204 100644
--- a/linux-core/drm_proc.c
+++ b/linux-core/drm_proc.c
@@ -169,9 +169,9 @@ static int DRM(_vm_info)(char *buf, char **start, off_t offset, int request,
struct list_head *list;
/* Hardcoded from _DRM_FRAME_BUFFER,
- _DRM_REGISTERS, _DRM_SHM, and
- _DRM_AGP. */
- const char *types[] = { "FB", "REG", "SHM", "AGP" };
+ _DRM_REGISTERS, _DRM_SHM, _DRM_AGP, and
+ _DRM_SCATTER_GATHER. */
+ const char *types[] = { "FB", "REG", "SHM", "AGP", "SG" };
const char *type;
int i;
@@ -190,7 +190,7 @@ static int DRM(_vm_info)(char *buf, char **start, off_t offset, int request,
r_list = (drm_map_list_t *)list;
map = r_list->map;
if(!map) continue;
- if (map->type < 0 || map->type > 3) type = "??";
+ if (map->type < 0 || map->type > 4) type = "??";
else type = types[map->type];
DRM_PROC_PRINT("%4d 0x%08lx 0x%08lx %4.4s 0x%02x 0x%08lx ",
i,