Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 67346
b: refs/heads/master
c: 4fca9c4
h: refs/heads/master
v: v3
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Sep 19, 2007
1 parent 7ba80d6 commit ccf5fc5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9a5080f11d67972d7972d824f1b1827fafbce126
refs/heads/master: 4fca9c425009c01d41db6c6ebf0189843ee90f0b
21 changes: 11 additions & 10 deletions trunk/arch/powerpc/platforms/cell/spufs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -2231,23 +2231,24 @@ struct tree_descr spufs_dir_nosched_contents[] = {
};

struct spufs_coredump_reader spufs_coredump_read[] = {
{ "regs", __spufs_regs_read, NULL, 128 * 16 },
{ "fpcr", __spufs_fpcr_read, NULL, 16 },
{ "regs", __spufs_regs_read, NULL, sizeof(struct spu_reg128[128])},
{ "fpcr", __spufs_fpcr_read, NULL, sizeof(struct spu_reg128) },
{ "lslr", NULL, __spufs_lslr_get, 11 },
{ "decr", NULL, __spufs_decr_get, 11 },
{ "decr_status", NULL, __spufs_decr_status_get, 11 },
{ "mem", __spufs_mem_read, NULL, 256 * 1024, },
{ "signal1", __spufs_signal1_read, NULL, 4 },
{ "mem", __spufs_mem_read, NULL, LS_SIZE, },
{ "signal1", __spufs_signal1_read, NULL, sizeof(u32) },
{ "signal1_type", NULL, __spufs_signal1_type_get, 2 },
{ "signal2", __spufs_signal2_read, NULL, 4 },
{ "signal2", __spufs_signal2_read, NULL, sizeof(u32) },
{ "signal2_type", NULL, __spufs_signal2_type_get, 2 },
{ "event_mask", NULL, __spufs_event_mask_get, 8 },
{ "event_status", NULL, __spufs_event_status_get, 8 },
{ "mbox_info", __spufs_mbox_info_read, NULL, 4 },
{ "ibox_info", __spufs_ibox_info_read, NULL, 4 },
{ "wbox_info", __spufs_wbox_info_read, NULL, 16 },
{ "dma_info", __spufs_dma_info_read, NULL, 69 * 8 },
{ "proxydma_info", __spufs_proxydma_info_read, NULL, 35 * 8 },
{ "mbox_info", __spufs_mbox_info_read, NULL, sizeof(u32) },
{ "ibox_info", __spufs_ibox_info_read, NULL, sizeof(u32) },
{ "wbox_info", __spufs_wbox_info_read, NULL, 4 * sizeof(u32)},
{ "dma_info", __spufs_dma_info_read, NULL, sizeof(struct spu_dma_info)},
{ "proxydma_info", __spufs_proxydma_info_read,
NULL, sizeof(struct spu_proxydma_info)},
{ "object-id", NULL, __spufs_object_id_get, 19 },
{ },
};
Expand Down

0 comments on commit ccf5fc5

Please sign in to comment.