Advertisement
Guest User

Untitled

a guest
Apr 12th, 2012
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 1.43 KB | None | 0 0
  1. --- 2.2.7.c 2012-04-12 11:57:47.865103039 +0200
  2. +++ 2.3.4.c 2012-04-12 11:57:47.185099667 +0200
  3. @@ -1,24 +1,29 @@
  4.  typedef struct {
  5.     char *bg_block_id;
  6.     char *blrtsimage;       /* BlrtsImage for this block */
  7. -   int *bp_inx;            /* list index pairs into node_table for *nodes:
  8. -                * start_range_1, end_range_1,
  9. -                * start_range_2, .., -1  */
  10. -   uint16_t conn_type;
  11. -   char *ionodes;
  12. +   uint16_t conn_type[HIGHEST_DIMENSIONS];
  13. +   uint32_t cnode_cnt;
  14.     int *ionode_inx;        /* list index pairs for ionodes in the
  15. -                * node listed for *ionodes:
  16. +                * node listed for *ionode_str:
  17.                  * start_range_1, end_range_1,
  18.                  * start_range_2, .., -1  */
  19. +   char *ionode_str;
  20. +   List job_list;          /* List of running jobs on each block */
  21.     uint32_t job_running;
  22.     char *linuximage;       /* LinuxImage for this block */
  23.     char *mloaderimage;     /* mloaderImage for this block */
  24. -   char *nodes;
  25. -   uint32_t node_cnt;
  26. +   int *mp_inx;            /* list index pairs into node_table for *mp_str:
  27. +                * start_range_1, end_range_1,
  28. +                * start_range_2, .., -1  */
  29. +   char *mp_str;
  30. +   int *mp_used_inx;       /* list index pairs into node_table
  31. +                * for used *mp_str:
  32. +                * start_range_1, end_range_1,
  33. +                * start_range_2, .., -1  */
  34. +   char *mp_used_str;
  35.     uint16_t node_use;
  36.     char *owner_name;
  37.     char *ramdiskimage;     /* RamDiskImage for this block */
  38.     char *reason;
  39.     uint16_t state;
  40.  } block_info_t;
  41. -
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement