Changeset 3561

Show
Ignore:
Timestamp:
10/23/2009 12:52:09 PM (1 month ago)
Author:
brian
Message:

Convert SGE to the new BatchSystem? framework.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gip/trunk/gip/lib/python/gip/batch_systems/sge.py

    r3545 r3561  
    44""" 
    55 
     6import re 
     7from UserDict import UserDict 
     8 
    69import gip_sets as sets 
    710 
     
    912from xml_common import parseXmlSax 
    1013from gip.batch_systems.sge_sax_handler import QueueInfoParser, JobInfoParser, \ 
    11     sgeCommand, convert_time_to_secs 
     14    sgeCommand, convert_time_to_secs, runCommand, HostInfoParser 
    1215from gip.batch_systems.batch_system import BatchSystem 
    1316 
     
    1922sge_job_info_cmd = 'qstat -xml -u \*' 
    2023sge_queue_list_cmd = 'qconf -sql' 
     24sge_qhost_cmd = 'qhost -xml' 
     25 
     26class SGEQueueConfig(UserDict): 
     27    def __init__(self, config_fp): 
     28        from gip_common import _Constants 
     29        UserDict.__init__(self, dict=None) 
     30        self.constants = _Constants() 
     31        self.digest(config_fp) 
     32 
     33    def digest(self, config_fp): 
     34        for pair in config_fp: 
     35            if len(pair) > 1: 
     36                key_val = pair.split() 
     37                if len(key_val) > 1: 
     38                    self[key_val[0].strip()] = key_val[1].strip() 
     39 
    2140 
    2241class SgeBatchSystem(BatchSystem): 
    2342 
    24     def __init__(self): 
     43    def __init__(self, cp): 
     44        super(SgeBatchSystem, self).__init__(cp) 
    2545        self._version = None 
    2646 
     
    3151            self._version = "sge", line.strip('\n') 
    3252            return self._version 
    33     raise Exception("Unable to determine LRMS version info.") 
     53        raise Exception("Unable to determine LRMS version info.") 
    3454 
    3555    def parseNodes(cp): 
     
    4363                (totalCPUs, freeCPUs). 
    4464        """ 
    45         raise NotImplementedError() 
     65        xml = runCommand(sge_qhost_cmd) 
     66        handler = HostInfoParser() 
     67        parseXmlSax(xml, handler) 
     68        hosts = handler.getHosts() 
     69        total = 0 
     70        for host, data in hosts.items(): 
     71            if host == 'global': 
     72                continue 
     73            try: 
     74                total += int(data['num_proc']) 
     75            except: 
     76                pass 
     77 
     78        xml = runCommand(sge_job_info_cmd) 
     79        handler = JobInfoParser() 
     80        parseXmlSax(xml, handler) 
     81        job_info = handler.getJobInfo() 
     82        free = total 
     83        for job in job_info: 
     84            try: 
     85                state = job['state'] 
     86                slots = int(job['slots']) 
     87                if state == 'r': 
     88                    free -= slots 
     89            except: 
     90                pass 
     91        free = max(free, 0) 
     92        log.info("There were %i cores total, %i free." % (total, free)) 
     93        return total, free, {} 
    4694 
    4795    def getQueueList(self): 
     
    58106        return queues 
    59107 
    60     def getVoQueues(self, cp): 
     108    def getVoQueues(self): 
    61109        voMap = self.vo_map 
    62110        try: 
     
    70118 
    71119        vo_queues = [] 
    72         queue_list, q = self.getQueueInfo() 
     120        queue_list = self.getQueueInfo() 
    73121        rvf_info = parseRvf('sge.rvf') 
    74122        rvf_queue_list = rvf_info.get('queue', {}).get('Values', None) 
     
    84132            if queue in queue_exclude: 
    85133                continue 
    86             volist = sets.Set(voList(cp, voMap)) 
     134            volist = sets.Set(voList(self.cp, voMap)) 
    87135            try: 
    88136                whitelist = [i.strip() for i in self.cp.get("sge", 
     
    108156        return vo_queues 
    109157 
     158    def getJobsInfo(self): 
     159        xml = runCommand(sge_job_info_cmd) 
     160        handler = JobInfoParser() 
     161        parseXmlSax(xml, handler) 
     162        job_info = handler.getJobInfo() 
     163        queue_jobs = {} 
     164 
     165        for job in job_info: 
     166            user = job['JB_owner'] 
     167            state = job['state'] 
     168            queue = job.get('queue_name', '') 
     169            if queue.strip() == '': 
     170                queue = 'waiting' 
     171            queue = queue.split('@')[0] 
     172            try: 
     173                vo = self.vo_map[user].lower() 
     174            except: 
     175                # Most likely, this means that the user is local and not 
     176                # associated with a VO, so we skip the job. 
     177                continue 
     178 
     179            voinfo = queue_jobs.setdefault(queue, {}) 
     180            info = voinfo.setdefault(vo, {"running":0, "wait":0, "total":0}) 
     181            if state == "r": 
     182                info["running"] += 1 
     183            else: 
     184                info["wait"] += 1 
     185            info["total"] += 1 
     186            info["vo"] = vo 
     187        log.debug("SGE job info: %s" % str(queue_jobs)) 
     188        return queue_jobs 
     189 
     190    def getQueueInfo(self): 
     191        """ 
     192        Looks up the queue and job information from SGE. 
     193 
     194        @param cp: Configuration of site. 
     195        @returns: A dictionary of queue data and a dictionary of job data. 
     196        """ 
     197        queue_list = {} 
     198        xml = runCommand(sge_queue_info_cmd) 
     199        handler = QueueInfoParser() 
     200        parseXmlSax(xml, handler) 
     201        queue_info = handler.getQueueInfo() 
     202        for queue, qinfo in queue_info.items(): 
     203 
     204            if queue == 'waiting': 
     205                continue 
     206 
     207            # get queue name 
     208            name = queue.split("@")[0] 
     209            if name not in queue_list: 
     210                queue_list[name] = {'slots_used': 0, 'slots_total': 0, 
     211                'slots_free': 0, 'wait' : 0, 'name' : name} 
     212            q = queue_list[name] 
     213            #log.info("Queue name %s; info %s" % (name, str(qinfo))) 
     214            try: 
     215                q['slots_used'] += int(qinfo['slots_used']) 
     216            except: 
     217                pass 
     218            try: 
     219                q['slots_total'] += int(qinfo['slots_total']) 
     220            except: 
     221                pass 
     222            q['slots_free'] = q['slots_total'] - q['slots_used'] 
     223            if 'arch' in qinfo: 
     224                q['arch'] = qinfo['arch'] 
     225            q['max_running'] = q['slots_total'] 
     226            q['running'] = q['slots_used'] 
     227            q['total'] = 0 
     228 
     229            try: 
     230                state = queue_info[queue]["state"] 
     231                if state.find("d") >= 0 or state.find("D") >= 0: 
     232                    status = "Draining" 
     233                elif state.find("s") >= 0: 
     234                    status = "Closed" 
     235                else: 
     236                    status = "Production" 
     237            except: 
     238                status = "Production" 
     239 
     240            q['status'] = status 
     241            q['priority'] = 0  # No such thing that I can find for a queue 
     242 
     243            # How do you handle queues with no limit? 
     244            sqc = SGEQueueConfig(sgeCommand(sge_queue_config_cmd % name, 
     245                self.cp)) 
     246 
     247            try: 
     248                q['priority'] = int(sqc['priority']) 
     249            except: 
     250                pass 
     251 
     252            max_wall_hard = convert_time_to_secs(sqc.get('h_rt', 'INFINITY')) 
     253            max_wall_soft = convert_time_to_secs(sqc.get('s_rt', 'INFINITY')) 
     254            max_wall = min(max_wall_hard, max_wall_soft) 
     255            try: 
     256                q['max_slots'] = int(sqc['slots']) 
     257            except: 
     258                q['max_slots'] = 1 
     259 
     260            try: 
     261                q['max_wall'] = min(max_wall, q['max_wall']) 
     262            except: 
     263                q['max_wall'] = max_wall 
     264 
     265            user_list = sqc.get('user_lists', 'NONE') 
     266            if user_list.lower().find('none') >= 0: 
     267                user_list = re.split('\s*,?\s*', user_list) 
     268            if 'all' in user_list: 
     269                user_list = [] 
     270            q['user_list'] = user_list 
     271 
     272            queue_list[name] = q 
     273 
     274        waiting_jobs = 0 
     275        for job in queue_info['waiting']: 
     276            waiting_jobs += 1 
     277        queue_list['waiting'] = {'waiting': waiting_jobs} 
     278 
     279        return queue_list #, queue_info 
     280 
  • gip/trunk/gip/lib/python/gip/batch_systems/sge_sax_handler.py

    r3545 r3561  
     1 
     2import copy 
     3from xml.sax.handler import ContentHandler 
    14 
    25from gip_testing import runCommand 
    3 from xml.sax.handler import ContentHandler 
    46 
    57class QueueInfoParser(ContentHandler): 
     
    3840 
    3941    def endElement(self, name): 
    40         import copy 
    4142        if name == 'Queue-List': 
    4243            self.currentQueueInfo['jobs'] = copy.deepcopy(self.currentJobList) 
     
    8687 
    8788    def endElement(self, name): 
    88         import copy 
    8989        if name == 'job_list': 
    9090            self.JobList.append(copy.deepcopy(self.currentJobInfo)) 
     
    100100    def getJobInfo(self): 
    101101        return self.JobList 
     102 
     103class HostInfoParser(ContentHandler): 
     104 
     105    def __init__(self): 
     106        self.hosts = {} 
     107        self.curHostInfo = {} 
     108        self.curHost = None 
     109        self.curAtt = None 
     110        self.curVal = None 
     111 
     112    def startElement(self, name, attrs): 
     113        if name == 'host': 
     114            self.curHost = attrs.get('name', 'UNKNOWN') 
     115            self.curHostInfo = {} 
     116        elif name == 'hostvalue': 
     117            self.curAtt = attrs.get('name', 'UNKNOWN') 
     118            self.curVal = '' 
     119 
     120    def characters(self, ch): 
     121        if self.curAtt: 
     122            self.curVal += str(ch) 
     123 
     124    def endElement(self, name): 
     125        if name == 'host': 
     126            self.hosts[self.curHost] = self.curHostInfo 
     127        elif name == 'hostvalue': 
     128            self.curHostInfo[self.curAtt] = self.curVal 
     129            self.curAtt, self.curVal = None, None 
     130 
     131    def getHosts(self): 
     132        return self.hosts 
    102133 
    103134def sgeOutputFilter(fp): 
  • gip/trunk/gip/lib/python/gip/providers/generic_batch_system.py

    r3545 r3561  
    1616from gip.batch_systems.condor import CondorBatchSystem 
    1717from gip.batch_systems.forwarding import Forwarding 
     18from gip.batch_systems.sge import SgeBatchSystem 
    1819 
    1920log = getLogger("GIP.Batch") 
     
    8687            # free_slots <= max_total 
    8788            info['free_slots'] = min(info['free_slots'], info['max_total']) 
    88         info['max_slots'] = 1 
     89        if 'max_slots' not in info: 
     90            info['max_slots'] = 1 
    8991 
    9092        # INVARIANTS: 
     
    184186        elif impl == 'condor': 
    185187            batch = CondorBatchSystem(cp) 
     188        elif impl == 'sge': 
     189            batch = SgeBatchSystem(cp) 
    186190        else: 
    187191            log.error("Unknown job manager: %s" % impl) 
  • gip/trunk/gip/lib/python/sge_common.py

    r3545 r3561  
    3434sge_job_info_cmd = 'qstat -xml -u \*' 
    3535sge_queue_list_cmd = 'qconf -sql' 
     36sge_host_cmd = 'qhost -xml' 
    3637 
    3738# h_rt - hard real time limit (max_walltime) 
  • gip/trunk/gip/providers/batch_system.py

    r3545 r3561  
    2020        log.error("Job manager not specified!") 
    2121        sys.exit(2) 
    22     if job_manager == 'sge': 
    23         sge_main() 
    24     elif job_manager == 'lsf': 
     22    if job_manager == 'lsf': 
    2523        lsf_main() 
    2624    else: 
  • gip/trunk/test/command_output/commands

    r3545 r3561  
    4343qconf_sq_pf24h: qconf -sq pf24h 
    4444qconf_sq_schorr_a: qconf -sq schorr_a 
     45qconf_sq_lsdyna_ib_a: qconf -sq lsdyna-ib_a 
     46qconf_sq_lsdyna_ib_b: qconf -sq lsdyna-ib_b 
     47qconf_sq_pf240h: qconf -sq pf240h 
     48qconf_sq_pf240h_ib: qconf -sq pf240h_ib 
     49qconf_sq_hod: qconf -sq hod 
     50qconf_sq_pf-grid: qconf -sq pf-grid 
     51qconf_sq_ib_b: qconf -sq ib_b 
     52qconf_sq_reid-mm: qconf -sq reid-mm 
     53qconf_sq_reid_ib: qconf -sq reid_ib 
     54qconf_sq_smp: qconf -sq smp 
     55qconf_sq_ib_a: qconf -sq ib_a 
     56qconf_sq_geo_ib: qconf -sq geo_ib 
    4557qconf_sql: qconf -sql 
     58qhost_xml: qhost -xml 
  • gip/trunk/test/command_output/qstat_f_xml

    r2844 r3561  
    33  <queue_info> 
    44    <Queue-List> 
    5       <name>all.q@a1</name> 
    6       <qtype>BI</qtype> 
    7       <slots_used>0</slots_used> 
    8       <slots_resv>0</slots_resv> 
    9       <slots_total>1</slots_total> 
     5      <name>chandra@a18</name> 
     6      <qtype>BIP</qtype> 
     7      <slots_used>0</slots_used> 
     8      <slots_resv>0</slots_resv> 
     9      <slots_total>8</slots_total> 
     10      <arch>lx24-amd64</arch> 
     11    </Queue-List> 
     12    <Queue-List> 
     13      <name>chandra@a19</name> 
     14      <qtype>BIP</qtype> 
     15      <slots_used>0</slots_used> 
     16      <slots_resv>0</slots_resv> 
     17      <slots_total>8</slots_total> 
     18      <arch>lx24-amd64</arch> 
     19    </Queue-List> 
     20    <Queue-List> 
     21      <name>chandra@a20</name> 
     22      <qtype>BIP</qtype> 
     23      <slots_used>0</slots_used> 
     24      <slots_resv>0</slots_resv> 
     25      <slots_total>8</slots_total> 
     26      <arch>lx24-amd64</arch> 
     27    </Queue-List> 
     28    <Queue-List> 
     29      <name>chandra@a21</name> 
     30      <qtype>BIP</qtype> 
     31      <slots_used>0</slots_used> 
     32      <slots_resv>0</slots_resv> 
     33      <slots_total>8</slots_total> 
     34      <arch>lx24-amd64</arch> 
     35    </Queue-List> 
     36    <Queue-List> 
     37      <name>chandra@a22</name> 
     38      <qtype>BIP</qtype> 
     39      <slots_used>0</slots_used> 
     40      <slots_resv>0</slots_resv> 
     41      <slots_total>8</slots_total> 
     42      <arch>lx24-amd64</arch> 
     43    </Queue-List> 
     44    <Queue-List> 
     45      <name>chandra@a23</name> 
     46      <qtype>BIP</qtype> 
     47      <slots_used>0</slots_used> 
     48      <slots_resv>0</slots_resv> 
     49      <slots_total>8</slots_total> 
     50      <arch>lx24-amd64</arch> 
     51    </Queue-List> 
     52    <Queue-List> 
     53      <name>chandra@a24</name> 
     54      <qtype>BIP</qtype> 
     55      <slots_used>0</slots_used> 
     56      <slots_resv>0</slots_resv> 
     57      <slots_total>8</slots_total> 
     58      <arch>lx24-amd64</arch> 
     59    </Queue-List> 
     60    <Queue-List> 
     61      <name>chandra@a25</name> 
     62      <qtype>BIP</qtype> 
     63      <slots_used>0</slots_used> 
     64      <slots_resv>0</slots_resv> 
     65      <slots_total>8</slots_total> 
     66      <arch>lx24-amd64</arch> 
     67    </Queue-List> 
     68    <Queue-List> 
     69      <name>geo_ib@a14</name> 
     70      <qtype>BIP</qtype> 
     71      <slots_used>0</slots_used> 
     72      <slots_resv>0</slots_resv> 
     73      <slots_total>8</slots_total> 
     74      <arch>lx24-amd64</arch> 
     75    </Queue-List> 
     76    <Queue-List> 
     77      <name>geo_ib@a15</name> 
     78      <qtype>BIP</qtype> 
     79      <slots_used>8</slots_used> 
     80      <slots_resv>0</slots_resv> 
     81      <slots_total>8</slots_total> 
     82      <arch>lx24-amd64</arch> 
     83    </Queue-List> 
     84    <Queue-List> 
     85      <name>geo_ib@a16</name> 
     86      <qtype>BIP</qtype> 
     87      <slots_used>0</slots_used> 
     88      <slots_resv>0</slots_resv> 
     89      <slots_total>8</slots_total> 
     90      <arch>lx24-amd64</arch> 
     91    </Queue-List> 
     92    <Queue-List> 
     93      <name>geo_ib@a17</name> 
     94      <qtype>BIP</qtype> 
     95      <slots_used>8</slots_used> 
     96      <slots_resv>0</slots_resv> 
     97      <slots_total>8</slots_total> 
     98      <arch>lx24-amd64</arch> 
     99    </Queue-List> 
     100    <Queue-List> 
     101      <name>hod@a01</name> 
     102      <qtype>BIP</qtype> 
     103      <slots_used>0</slots_used> 
     104      <slots_resv>0</slots_resv> 
     105      <slots_total>8</slots_total> 
    10106      <arch>lx24-amd64</arch> 
    11107      <state>au</state> 
    12108    </Queue-List> 
    13109    <Queue-List> 
    14       <name>all.q@a10</name> 
    15       <qtype>BI</qtype> 
    16       <slots_used>0</slots_used> 
    17       <slots_resv>0</slots_resv> 
    18       <slots_total>1</slots_total> 
    19       <arch>lx24-amd64</arch> 
    20     </Queue-List> 
    21     <Queue-List> 
    22       <name>all.q@a11</name> 
    23       <qtype>BI</qtype> 
    24       <slots_used>0</slots_used> 
    25       <slots_resv>0</slots_resv> 
    26       <slots_total>1</slots_total> 
    27       <arch>lx24-amd64</arch> 
    28     </Queue-List> 
    29     <Queue-List> 
    30       <name>all.q@a12</name> 
    31       <qtype>BI</qtype> 
    32       <slots_used>0</slots_used> 
    33       <slots_resv>0</slots_resv> 
    34       <slots_total>1</slots_total> 
    35       <arch>lx24-amd64</arch> 
    36     </Queue-List> 
    37     <Queue-List> 
    38       <name>all.q@a13</name> 
    39       <qtype>BI</qtype> 
    40       <slots_used>0</slots_used> 
    41       <slots_resv>0</slots_resv> 
    42       <slots_total>1</slots_total> 
    43       <arch>lx24-amd64</arch> 
    44     </Queue-List> 
    45     <Queue-List> 
    46       <name>all.q@a14</name> 
    47       <qtype>BI</qtype> 
    48       <slots_used>0</slots_used> 
    49       <slots_resv>0</slots_resv> 
    50       <slots_total>1</slots_total> 
    51       <arch>lx24-amd64</arch> 
    52     </Queue-List> 
    53     <Queue-List> 
    54       <name>all.q@a15</name> 
    55       <qtype>BI</qtype> 
    56       <slots_used>0</slots_used> 
    57       <slots_resv>0</slots_resv> 
    58       <slots_total>1</slots_total> 
    59       <arch>lx24-amd64</arch> 
    60     </Queue-List> 
    61     <Queue-List> 
    62       <name>all.q@a16</name> 
    63       <qtype>BI</qtype> 
    64       <slots_used>0</slots_used> 
    65       <slots_resv>0</slots_resv> 
    66       <slots_total>1</slots_total> 
    67       <arch>lx24-amd64</arch> 
    68     </Queue-List> 
    69     <Queue-List> 
    70       <name>all.q@a17</name> 
    71       <qtype>BI</qtype> 
    72       <slots_used>0</slots_used> 
    73       <slots_resv>0</slots_resv> 
    74       <slots_total>1</slots_total> 
    75       <arch>lx24-amd64</arch> 
    76     </Queue-List> 
    77     <Queue-List> 
    78       <name>all.q@a18</name> 
    79       <qtype>BI</qtype> 
    80       <slots_used>0</slots_used> 
    81       <slots_resv>0</slots_resv> 
    82       <slots_total>1</slots_total> 
    83       <arch>lx24-amd64</arch> 
    84     </Queue-List> 
    85     <Queue-List> 
    86       <name>all.q@a19</name> 
    87       <qtype>BI</qtype> 
    88       <slots_used>0</slots_used> 
    89       <slots_resv>0</slots_resv> 
    90       <slots_total>1</slots_total> 
    91       <arch>lx24-amd64</arch> 
    92     </Queue-List> 
    93     <Queue-List> 
    94       <name>all.q@a2</name> 
    95       <qtype>BI</qtype> 
    96       <slots_used>0</slots_used> 
    97       <slots_resv>0</slots_resv> 
    98       <slots_total>1</slots_total> 
    99       <arch>lx24-amd64</arch> 
    100     </Queue-List> 
    101     <Queue-List> 
    102       <name>all.q@a20</name> 
    103       <qtype>BI</qtype> 
    104       <slots_used>0</slots_used> 
    105       <slots_resv>0</slots_resv> 
    106       <slots_total>1</slots_total> 
    107       <arch>lx24-amd64</arch> 
    108     </Queue-List> 
    109     <Queue-List> 
    110       <name>all.q@a21</name> 
    111       <qtype>BI</qtype> 
    112       <slots_used>0</slots_used> 
    113       <slots_resv>0</slots_resv> 
    114       <slots_total>1</slots_total> 
    115       <arch>lx24-amd64</arch> 
    116     </Queue-List> 
    117     <Queue-List> 
    118       <name>all.q@a22</name> 
    119       <qtype>BI</qtype> 
    120       <slots_used>0</slots_used> 
    121       <slots_resv>0</slots_resv> 
    122       <slots_total>1</slots_total> 
    123       <arch>lx24-amd64</arch> 
    124     </Queue-List> 
    125     <Queue-List> 
    126       <name>all.q@a23</name> 
    127       <qtype>BI</qtype> 
    128       <slots_used>0</slots_used> 
    129       <slots_resv>0</slots_resv> 
    130       <slots_total>1</slots_total> 
    131       <arch>lx24-amd64</arch> 
    132     </Queue-List> 
    133     <Queue-List> 
    134       <name>all.q@a24</name> 
    135       <qtype>BI</qtype> 
    136       <slots_used>0</slots_used> 
    137       <slots_resv>0</slots_resv> 
    138       <slots_total>1</slots_total> 
    139       <arch>lx24-amd64</arch> 
    140     </Queue-List> 
    141     <Queue-List> 
    142       <name>all.q@a25</name> 
    143       <qtype>BI</qtype> 
    144       <slots_used>0</slots_used> 
    145       <slots_resv>0</slots_resv> 
    146       <slots_total>1</slots_total> 
    147       <arch>lx24-amd64</arch> 
    148     </Queue-List> 
    149     <Queue-List> 
    150       <name>all.q@a3</name> 
    151       <qtype>BI</qtype> 
    152       <slots_used>0</slots_used> 
    153       <slots_resv>0</slots_resv> 
    154       <slots_total>1</slots_total> 
    155       <arch>lx24-amd64</arch> 
    156     </Queue-List> 
    157     <Queue-List> 
    158       <name>all.q@a4</name> 
    159       <qtype>BI</qtype> 
    160       <slots_used>0</slots_used> 
    161       <slots_resv>0</slots_resv> 
    162       <slots_total>1</slots_total> 
    163       <arch>lx24-amd64</arch> 
    164     </Queue-List> 
    165     <Queue-List> 
    166       <name>all.q@a5</name> 
    167       <qtype>BI</qtype> 
    168       <slots_used>0</slots_used> 
    169       <slots_resv>0</slots_resv> 
    170       <slots_total>1</slots_total> 
    171       <arch>lx24-amd64</arch> 
    172     </Queue-List> 
    173     <Queue-List> 
    174       <name>all.q@a6</name> 
    175       <qtype>BI</qtype> 
    176       <slots_used>0</slots_used> 
    177       <slots_resv>0</slots_resv> 
    178       <slots_total>1</slots_total> 
    179       <arch>lx24-amd64</arch> 
    180     </Queue-List> 
    181     <Queue-List> 
    182       <name>all.q@a7</name> 
    183       <qtype>BI</qtype> 
    184       <slots_used>0</slots_used> 
    185       <slots_resv>0</slots_resv> 
    186       <slots_total>1</slots_total> 
    187       <arch>lx24-amd64</arch> 
    188     </Queue-List> 
    189     <Queue-List> 
    190       <name>all.q@a8</name> 
    191       <qtype>BI</qtype> 
    192       <slots_used>0</slots_used> 
    193       <slots_resv>0</slots_resv> 
    194       <slots_total>1</slots_total> 
    195       <arch>lx24-amd64</arch> 
    196     </Queue-List> 
    197     <Queue-List> 
    198       <name>all.q@a9</name> 
    199       <qtype>BI</qtype> 
    200       <slots_used>0</slots_used> 
    201       <slots_resv>0</slots_resv> 
    202       <slots_total>1</slots_total> 
    203       <arch>lx24-amd64</arch> 
    204     </Queue-List> 
    205     <Queue-List> 
    206       <name>all.q@b1</name> 
    207       <qtype>BI</qtype> 
    208       <slots_used>0</slots_used> 
    209       <slots_resv>0</slots_resv> 
    210       <slots_total>1</slots_total> 
    211       <arch>lx24-amd64</arch> 
    212     </Queue-List> 
    213     <Queue-List> 
    214       <name>all.q@b10</name> 
    215       <qtype>BI</qtype> 
    216       <slots_used>0</slots_used> 
    217       <slots_resv>0</slots_resv> 
    218       <slots_total>1</slots_total> 
    219       <arch>lx24-amd64</arch> 
    220     </Queue-List> 
    221     <Queue-List> 
    222       <name>all.q@b11</name> 
    223       <qtype>BI</qtype> 
    224       <slots_used>0</slots_used> 
    225       <slots_resv>0</slots_resv> 
    226       <slots_total>1</slots_total> 
    227       <arch>lx24-amd64</arch> 
    228     </Queue-List> 
    229     <Queue-List> 
    230       <name>all.q@b12</name> 
    231       <qtype>BI</qtype> 
    232       <slots_used>0</slots_used> 
    233       <slots_resv>0</slots_resv> 
    234       <slots_total>1</slots_total> 
    235       <arch>lx24-amd64</arch> 
    236     </Queue-List> 
    237     <Queue-List> 
    238       <name>all.q@b13</name> 
    239       <qtype>BI</qtype> 
    240       <slots_used>0</slots_used> 
    241       <slots_resv>0</slots_resv> 
    242       <slots_total>1</slots_total> 
    243       <arch>lx24-amd64</arch> 
    244     </Queue-List> 
    245     <Queue-List> 
    246       <name>all.q@b14</name> 
    247       <qtype>BI</qtype> 
    248       <slots_used>0</slots_used> 
    249       <slots_resv>0</slots_resv> 
    250       <slots_total>1</slots_total> 
    251       <arch>lx24-amd64</arch> 
    252     </Queue-List> 
    253     <Queue-List> 
    254       <name>all.q@b15</name> 
    255       <qtype>BI</qtype> 
    256       <slots_used>0</slots_used> 
    257       <slots_resv>0</slots_resv> 
    258       <slots_total>1</slots_total> 
    259       <arch>lx24-amd64</arch> 
    260     </Queue-List> 
    261     <Queue-List> 
    262       <name>all.q@b16</name> 
    263       <qtype>BI</qtype> 
    264       <slots_used>0</slots_used> 
    265       <slots_resv>0</slots_resv> 
    266       <slots_total>1</slots_total> 
    267       <arch>lx24-amd64</arch> 
    268     </Queue-List> 
    269     <Queue-List> 
    270       <name>all.q@b17</name> 
    271       <qtype>BI</qtype> 
    272       <slots_used>0</slots_used> 
    273       <slots_resv>0</slots_resv> 
    274       <slots_total>1</slots_total> 
    275       <arch>lx24-amd64</arch> 
    276     </Queue-List> 
    277     <Queue-List> 
    278       <name>all.q@b18</name> 
    279       <qtype>BI</qtype> 
    280       <slots_used>0</slots_used> 
    281       <slots_resv>0</slots_resv> 
    282       <slots_total>1</slots_total> 
    283       <arch>lx24-amd64</arch> 
    284     </Queue-List> 
    285     <Queue-List> 
    286       <name>all.q@b19</name> 
    287       <qtype>BI</qtype> 
    288       <slots_used>0</slots_used> 
    289       <slots_resv>0</slots_resv> 
    290       <slots_total>8</slots_total> 
    291       <arch>lx24-amd64</arch> 
    292     </Queue-List> 
    293     <Queue-List> 
    294       <name>all.q@b2</name> 
    295       <qtype>BI</qtype> 
    296       <slots_used>0</slots_used> 
    297       <slots_resv>0</slots_resv> 
    298       <slots_total>1</slots_total> 
    299       <arch>lx24-amd64</arch> 
    300     </Queue-List> 
    301     <Queue-List> 
    302       <name>all.q@b20</name> 
    303       <qtype>BI</qtype> 
    304       <slots_used>0</slots_used> 
    305       <slots_resv>0</slots_resv> 
    306       <slots_total>8</slots_total> 
    307       <arch>lx24-amd64</arch> 
    308     </Queue-List> 
    309     <Queue-List> 
    310       <name>all.q@b21</name> 
    311       <qtype>BI</qtype> 
    312       <slots_used>0</slots_used> 
    313       <slots_resv>0</slots_resv> 
    314       <slots_total>8</slots_total> 
    315       <arch>lx24-amd64</arch> 
    316     </Queue-List> 
    317     <Queue-List> 
    318       <name>all.q@b22</name> 
    319       <qtype>BI</qtype> 
    320       <slots_used>0</slots_used> 
    321       <slots_resv>0</slots_resv> 
    322       <slots_total>1</slots_total> 
    323       <arch>lx24-amd64</arch> 
    324     </Queue-List> 
    325     <Queue-List> 
    326       <name>all.q@b23</name> 
    327       <qtype>BI</qtype> 
    328       <slots_used>0</slots_used> 
    329       <slots_resv>0</slots_resv> 
    330       <slots_total>1</slots_total> 
    331       <arch>lx24-amd64</arch> 
    332     </Queue-List> 
    333     <Queue-List> 
    334       <name>all.q@b24</name> 
    335       <qtype>BI</qtype> 
    336       <slots_used>0</slots_used> 
    337       <slots_resv>0</slots_resv> 
    338       <slots_total>1</slots_total> 
    339       <arch>lx24-amd64</arch> 
    340     </Queue-List> 
    341     <Queue-List> 
    342       <name>all.q@b3</name> 
    343       <qtype>BI</qtype> 
    344       <slots_used>0</slots_used> 
    345       <slots_resv>0</slots_resv> 
    346       <slots_total>1</slots_total> 
    347       <arch>lx24-amd64</arch> 
    348     </Queue-List> 
    349     <Queue-List> 
    350       <name>all.q@b4</name> 
    351       <qtype>BI</qtype> 
    352       <slots_used>0</slots_used> 
    353       <slots_resv>0</slots_resv> 
    354       <slots_total>1</slots_total> 
    355       <arch>lx24-amd64</arch> 
    356       <state>a</state> 
    357     </Queue-List> 
    358     <Queue-List> 
    359       <name>all.q@b5</name> 
    360       <qtype>BI</qtype> 
    361       <slots_used>0</slots_used> 
    362       <slots_resv>0</slots_resv> 
    363       <slots_total>1</slots_total> 
    364       <arch>lx24-amd64</arch> 
    365       <state>a</state> 
    366     </Queue-List> 
    367     <Queue-List> 
    368       <name>all.q@b6</name> 
    369       <qtype>BI</qtype> 
    370       <slots_used>0</slots_used> 
    371       <slots_resv>0</slots_resv> 
    372       <slots_total>1</slots_total> 
    373       <arch>lx24-amd64</arch> 
    374     </Queue-List> 
    375     <Queue-List> 
    376       <name>all.q@b7</name> 
    377       <qtype>BI</qtype> 
    378       <slots_used>0</slots_used> 
    379       <slots_resv>0</slots_resv> 
    380       <slots_total>1</slots_total> 
    381       <arch>lx24-amd64</arch> 
    382     </Queue-List> 
    383     <Queue-List> 
    384       <name>all.q@b8</name> 
    385       <qtype>BI</qtype> 
    386       <slots_used>0</slots_used> 
    387       <slots_resv>0</slots_resv> 
    388       <slots_total>1</slots_total> 
    389       <arch>lx24-amd64</arch> 
    390     </Queue-List> 
    391     <Queue-List> 
    392       <name>all.q@b9</name> 
    393       <qtype>BI</qtype> 
    394       <slots_used>0</slots_used> 
    395       <slots_resv>0</slots_resv> 
    396       <slots_total>1</slots_total> 
    397       <arch>lx24-amd64</arch> 
    398     </Queue-List> 
    399     <Queue-List> 
    400       <name>all.q@c1</name> 
    401       <qtype>BI</qtype> 
    402       <slots_used>0</slots_used> 
    403       <slots_resv>0</slots_resv> 
    404       <slots_total>1</slots_total> 
    405       <arch>lx24-amd64</arch> 
    406     </Queue-List> 
    407     <Queue-List> 
    408       <name>all.q@c10</name> 
    409       <qtype>BI</qtype> 
    410       <slots_used>0</slots_used> 
    411       <slots_resv>0</slots_resv> 
    412       <slots_total>1</slots_total> 
    413       <arch>lx24-amd64</arch> 
    414     </Queue-List> 
    415     <Queue-List> 
    416       <name>all.q@c11</name> 
    417       <qtype>BI</qtype> 
    418       <slots_used>0</slots_used> 
    419       <slots_resv>0</slots_resv> 
    420       <slots_total>1</slots_total> 
    421       <arch>lx24-amd64</arch> 
    422     </Queue-List> 
    423     <Queue-List> 
    424       <name>all.q@c19</name> 
    425       <qtype>BI</qtype> 
    426       <slots_used>0</slots_used> 
    427       <slots_resv>0</slots_resv> 
    428       <slots_total>1</slots_total> 
    429       <arch>lx24-amd64</arch> 
     110      <name>hod@a02</name> 
     111      <qtype>BIP</qtype> 
     112      <slots_used>0</slots_used> 
     113      <slots_resv>0</slots_resv> 
     114      <slots_total>8</slots_total> 
    430115      <state>au</state> 
    431116    </Queue-List> 
    432117    <Queue-List> 
    433       <name>all.q@c2</name> 
    434       <qtype>BI</qtype> 
    435       <slots_used>0</slots_used> 
    436       <slots_resv>0</slots_resv> 
    437       <slots_total>1</slots_total> 
    438       <arch>lx24-amd64</arch> 
    439     </Queue-List> 
    440     <Queue-List> 
    441       <name>all.q@c20</name> 
    442       <qtype>BI</qtype> 
    443       <slots_used>0</slots_used> 
    444       <slots_resv>0</slots_resv> 
    445       <slots_total>1</slots_total> 
    446       <arch>lx24-amd64</arch> 
    447     </Queue-List> 
    448     <Queue-List> 
    449       <name>all.q@c21</name> 
    450       <qtype>BI</qtype> 
     118      <name>hod@a03</name> 
     119      <qtype>BIP</qtype> 
     120      <slots_used>0</slots_used> 
     121      <slots_resv>0</slots_resv> 
     122      <slots_total>8</slots_total> 
     123      <arch>lx24-amd64</arch> 
     124    </Queue-List> 
     125    <Queue-List> 
     126      <name>hod@a04</name> 
     127      <qtype>BIP</qtype> 
     128      <slots_used>0</slots_used> 
     129      <slots_resv>0</slots_resv> 
     130      <slots_total>8</slots_total> 
     131      <arch>lx24-amd64</arch> 
     132    </Queue-List> 
     133    <Queue-List> 
     134      <name>hod@a05</name> 
     135      <qtype>BIP</qtype> 
     136      <slots_used>0</slots_used> 
     137      <slots_resv>0</slots_resv> 
     138      <slots_total>8</slots_total> 
     139      <arch>lx24-amd64</arch> 
     140    </Queue-List> 
     141    <Queue-List> 
     142      <name>hod@b01</name> 
     143      <qtype>BIP</qtype> 
     144      <slots_used>0</slots_used> 
     145      <slots_resv>0</slots_resv> 
     146      <slots_total>8</slots_total> 
     147      <arch>lx24-amd64</arch> 
     148      <state>au</state> 
     149    </Queue-List> 
     150    <Queue-List> 
     151      <name>hod@b02</name> 
     152      <qtype>BIP</qtype> 
     153      <slots_used>0</slots_used> 
     154      <slots_resv>0</slots_resv> 
     155      <slots_total>8</slots_total> 
     156      <arch>lx24-amd64</arch> 
     157    </Queue-List> 
     158    <Queue-List> 
     159      <name>hod@b03</name> 
     160      <qtype>BIP</qtype> 
     161      <slots_used>0</slots_used> 
     162      <slots_resv>0</slots_resv> 
     163      <slots_total>8</slots_total> 
     164      <arch>lx24-amd64</arch> 
     165      <state>E</state> 
     166    </Queue-List> 
     167    <Queue-List> 
     168      <name>hod@b04</name> 
     169      <qtype>BIP</qtype> 
     170      <slots_used>0</slots_used> 
     171      <slots_resv>0</slots_resv> 
     172      <slots_total>8</slots_total> 
     173      <arch>lx24-amd64</arch> 
     174    </Queue-List> 
     175    <Queue-List> 
     176      <name>hod@b05</name> 
     177      <qtype>BIP</qtype> 
     178      <slots_used>0</slots_used> 
     179      <slots_resv>0</slots_resv> 
     180      <slots_total>8</slots_total> 
     181      <arch>lx24-amd64</arch> 
     182    </Queue-List> 
     183    <Queue-List> 
     184      <name>hod@b06</name> 
     185      <qtype>BIP</qtype> 
     186      <slots_used>0</slots_used> 
     187      <slots_resv>0</slots_resv> 
     188      <slots_total>8</slots_total> 
     189      <arch>lx24-amd64</arch> 
     190    </Queue-List> 
     191    <Queue-List> 
     192      <name>hod@b07</name> 
     193      <qtype>BIP</qtype> 
     194      <slots_used>0</slots_used> 
     195      <slots_resv>0</slots_resv> 
     196      <slots_total>8</slots_total> 
     197      <arch>lx24-amd64</arch> 
     198    </Queue-List> 
     199    <Queue-List> 
     200      <name>hod@b08</name> 
     201      <qtype>BIP</qtype> 
     202      <slots_used>0</slots_used> 
     203      <slots_resv>0</slots_resv> 
     204      <slots_total>8</slots_total> 
     205      <arch>lx24-amd64</arch> 
     206    </Queue-List> 
     207    <Queue-List> 
     208      <name>hod@b09</name> 
     209      <qtype>BIP</qtype> 
     210      <slots_used>0</slots_used> 
     211      <slots_resv>0</slots_resv> 
     212      <slots_total>8</slots_total> 
     213      <arch>lx24-amd64</arch> 
     214    </Queue-List> 
     215    <Queue-List> 
     216      <name>hod@b10</name> 
     217      <qtype>BIP</qtype> 
     218      <slots_used>0</slots_used> 
     219      <slots_resv>0</slots_resv> 
     220      <slots_total>8</slots_total> 
     221      <arch>lx24-amd64</arch> 
     222    </Queue-List> 
     223    <Queue-List> 
     224      <name>hod@b11</name> 
     225      <qtype>BIP</qtype> 
     226      <slots_used>0</slots_used> 
     227      <slots_resv>0</slots_resv> 
     228      <slots_total>8</slots_total> 
     229      <arch>lx24-amd64</arch> 
     230    </Queue-List> 
     231    <Queue-List> 
     232      <name>hod@b12</name> 
     233      <qtype>BIP</qtype> 
     234      <slots_used>0</slots_used> 
     235      <slots_resv>0</slots_resv> 
     236      <slots_total>8</slots_total> 
     237      <arch>lx24-amd64</arch> 
     238    </Queue-List> 
     239    <Queue-List> 
     240      <name>hod@b13</name> 
     241      <qtype>BIP</qtype> 
     242      <slots_used>0</slots_used> 
     243      <slots_resv>0</slots_resv> 
     244      <slots_total>8</slots_total> 
     245      <arch>lx24-amd64</arch> 
     246    </Queue-List> 
     247    <Queue-List> 
     248      <name>hod@b14</name> 
     249      <qtype>BIP</qtype> 
     250      <slots_used>0</slots_used> 
     251      <slots_resv>0</slots_resv> 
     252      <slots_total>8</slots_total> 
     253      <arch>lx24-amd64</arch> 
     254    </Queue-List> 
     255    <Queue-List> 
     256      <name>hod@b15</name> 
     257      <qtype>BIP</qtype> 
     258      <slots_used>0</slots_used> 
     259      <slots_resv>0</slots_resv> 
     260      <slots_total>8</slots_total> 
     261      <arch>lx24-amd64</arch> 
     262    </Queue-List> 
     263    <Queue-List> 
     264      <name>hod@b16</name> 
     265      <qtype>BIP</qtype> 
     266      <slots_used>0</slots_used> 
     267      <slots_resv>0</slots_resv> 
     268      <slots_total>8</slots_total> 
     269      <arch>lx24-amd64</arch> 
     270    </Queue-List> 
     271    <Queue-List> 
     272      <name>hod@b17</name> 
     273      <qtype>BIP</qtype> 
     274      <slots_used>0</slots_used> 
     275      <slots_resv>0</slots_resv> 
     276      <slots_total>8</slots_total> 
     277      <arch>lx24-amd64</arch> 
     278    </Queue-List> 
     279    <Queue-List> 
     280      <name>hod@b18</name> 
     281      <qtype>BIP</qtype> 
     282      <slots_used>0</slots_used> 
     283      <slots_resv>0</slots_resv> 
     284      <slots_total>8</slots_total> 
     285      <arch>lx24-amd64</arch> 
     286    </Queue-List> 
     287    <Queue-List> 
     288      <name>hod@b20</name> 
     289      <qtype>BIP</qtype> 
     290      <slots_used>0</slots_used> 
     291      <slots_resv>0</slots_resv> 
     292      <slots_total>8</slots_total> 
     293      <arch>lx24-amd64</arch> 
     294    </Queue-List> 
     295    <Queue-List> 
     296      <name>hod@b22</name> 
     297      <qtype>BIP</qtype> 
     298      <slots_used>0</slots_used> 
     299      <slots_resv>0</slots_resv> 
     300      <slots_total>8</slots_total> 
     301      <arch>lx24-amd64</arch> 
     302      <state>au</state> 
     303    </Queue-List> 
     304    <Queue-List> 
     305      <name>hod@b23</name> 
     306      <qtype>BIP</qtype> 
     307      <slots_used>0</slots_used> 
     308      <slots_resv>0</slots_resv> 
     309      <slots_total>8</slots_total> 
     310      <arch>lx24-amd64</arch> 
     311    </Queue-List> 
     312    <Queue-List> 
     313      <name>ib_a@a03</name> 
     314      <qtype>BIP</qtype> 
     315      <slots_used>0</slots_used> 
     316      <slots_resv>0</slots_resv> 
     317      <slots_total>8</slots_total> 
     318      <arch>lx24-amd64</arch> 
     319    </Queue-List> 
     320    <Queue-List> 
     321      <name>ib_a@a04</name> 
     322      <qtype>BIP</qtype> 
     323      <slots_used>0</slots_used> 
     324      <slots_resv>0</slots_resv> 
     325      <slots_total>8</slots_total> 
     326      <arch>lx24-amd64</arch> 
     327    </Queue-List> 
     328    <Queue-List> 
     329      <name>ib_a@a05</name> 
     330      <qtype>BIP</qtype> 
     331      <slots_used>0</slots_used> 
     332      <slots_resv>0</slots_resv> 
     333      <slots_total>8</slots_total> 
     334      <arch>lx24-amd64</arch> 
     335    </Queue-List> 
     336    <Queue-List> 
     337      <name>ib_b@b02</name> 
     338      <qtype>BIP</qtype> 
     339      <slots_used>0</slots_used> 
     340      <slots_resv>0</slots_resv> 
     341      <slots_total>8</slots_total> 
     342      <arch>lx24-amd64</arch> 
     343    </Queue-List> 
     344    <Queue-List> 
     345      <name>ib_b@b03</name> 
     346      <qtype>BIP</qtype> 
     347      <slots_used>0</slots_used> 
     348      <slots_resv>0</slots_resv> 
     349      <slots_total>8</slots_total> 
     350      <arch>lx24-amd64</arch> 
     351    </Queue-List> 
     352    <Queue-List> 
     353      <name>ib_b@b04</name> 
     354      <qtype>BIP</qtype> 
     355      <slots_used>0</slots_used> 
     356      <slots_resv>0</slots_resv> 
     357      <slots_total>8</slots_total> 
     358      <arch>lx24-amd64</arch> 
     359    </Queue-List> 
     360    <Queue-List> 
     361      <name>ib_b@b05</name> 
     362      <qtype>BIP</qtype> 
     363      <slots_used>0</slots_used> 
     364      <slots_resv>0</slots_resv> 
     365      <slots_total>8</slots_total> 
     366      <arch>lx24-amd64</arch> 
     367    </Queue-List> 
     368    <Queue-List> 
     369      <name>ib_b@b06</name> 
     370      <qtype>BIP</qtype> 
     371      <slots_used>0</slots_used> 
     372      <slots_resv>0</slots_resv> 
     373      <slots_total>8</slots_total> 
     374      <arch>lx24-amd64</arch> 
     375    </Queue-List> 
     376    <Queue-List> 
     377      <name>ib_b@b07</name> 
     378      <qtype>BIP</qtype> 
     379      <slots_used>0</slots_used> 
     380      <slots_resv>0</slots_resv> 
     381      <slots_total>8</slots_total> 
     382      <arch>lx24-amd64</arch> 
     383    </Queue-List> 
     384    <Queue-List> 
     385      <name>ib_b@b08</name> 
     386      <qtype>BIP</qtype> 
     387      <slots_used>0</slots_used> 
     388      <slots_resv>0</slots_resv> 
     389      <slots_total>8</slots_total> 
     390      <arch>lx24-amd64</arch> 
     391    </Queue-List> 
     392    <Queue-List> 
     393      <name>ib_b@b09</name> 
     394      <qtype>BIP</qtype> 
     395      <slots_used>0</slots_used> 
     396      <slots_resv>0</slots_resv> 
     397      <slots_total>8</slots_total> 
     398      <arch>lx24-amd64</arch> 
     399    </Queue-List> 
     400    <Queue-List> 
     401      <name>ib_b@b10</name> 
     402      <qtype>BIP</qtype> 
     403      <slots_used>0</slots_used> 
     404      <slots_resv>0</slots_resv> 
     405      <slots_total>8</slots_total> 
     406      <arch>lx24-amd64</arch> 
     407      <state>d</state> 
     408    </Queue-List> 
     409    <Queue-List> 
     410      <name>ib_b@b11</name> 
     411      <qtype>BIP</qtype> 
     412      <slots_used>0</slots_used> 
     413      <slots_resv>0</slots_resv> 
     414      <slots_total>8</slots_total> 
     415      <arch>lx24-amd64</arch> 
     416    </Queue-List> 
     417    <Queue-List> 
     418      <name>ib_b@b12</name> 
     419      <qtype>BIP</qtype> 
     420      <slots_used>0</slots_used> 
     421      <slots_resv>0</slots_resv> 
     422      <slots_total>8</slots_total> 
     423      <arch>lx24-amd64</arch> 
     424    </Queue-List> 
     425    <Queue-List> 
     426      <name>ib_b@b13</name> 
     427      <qtype>BIP</qtype> 
     428      <slots_used>0</slots_used> 
     429      <slots_resv>0</slots_resv> 
     430      <slots_total>8</slots_total> 
     431      <arch>lx24-amd64</arch> 
     432    </Queue-List> 
     433    <Queue-List> 
     434      <name>ib_b@b14</name> 
     435      <qtype>BIP</qtype> 
     436      <slots_used>0</slots_used> 
     437      <slots_resv>0</slots_resv> 
     438      <slots_total>8</slots_total> 
     439      <arch>lx24-amd64</arch> 
     440    </Queue-List> 
     441    <Queue-List> 
     442      <name>ib_b@b15</name> 
     443      <qtype>BIP</qtype> 
     444      <slots_used>0</slots_used> 
     445      <slots_resv>0</slots_resv> 
     446      <slots_total>8</slots_total> 
     447      <arch>lx24-amd64</arch> 
     448    </Queue-List> 
     449    <Queue-List> 
     450      <name>ib_b@b16</name> 
     451      <qtype>BIP</qtype> 
     452      <slots_used>0</slots_used> 
     453      <slots_resv>0</slots_resv> 
     454      <slots_total>8</slots_total> 
     455      <arch>lx24-amd64</arch> 
     456    </Queue-List> 
     457    <Queue-List> 
     458      <name>ib_b@b17</name> 
     459      <qtype>BIP</qtype> 
     460      <slots_used>0</slots_used> 
     461      <slots_resv>0</slots_resv> 
     462      <slots_total>8</slots_total> 
     463      <arch>lx24-amd64</arch> 
     464    </Queue-List> 
     465    <Queue-List> 
     466      <name>ib_b@b18</name> 
     467      <qtype>BIP</qtype> 
     468      <slots_used>0</slots_used> 
     469      <slots_resv>0</slots_resv> 
     470      <slots_total>8</slots_total> 
     471      <arch>lx24-amd64</arch> 
     472      <state>d</state> 
     473    </Queue-List> 
     474    <Queue-List> 
     475      <name>ib_b@b19</name> 
     476      <qtype>BIP</qtype> 
     477      <slots_used>0</slots_used> 
     478      <slots_resv>0</slots_resv> 
     479      <slots_total>8</slots_total> 
     480      <arch>lx24-amd64</arch> 
     481    </Queue-List> 
     482    <Queue-List> 
     483      <name>ib_b@b20</name> 
     484      <qtype>BIP</qtype> 
     485      <slots_used>0</slots_used> 
     486      <slots_resv>0</slots_resv> 
     487      <slots_total>8</slots_total> 
     488      <arch>lx24-amd64</arch> 
     489      <state>d</state> 
     490    </Queue-List> 
     491    <Queue-List> 
     492      <name>ib_b@b21</name> 
     493      <qtype>BIP</qtype> 
     494      <slots_used>0</slots_used> 
     495      <slots_resv>0</slots_resv> 
     496      <slots_total>8</slots_total> 
     497      <arch>lx24-amd64</arch> 
     498    </Queue-List> 
     499    <Queue-List> 
     500      <name>ib_b@b23</name> 
     501      <qtype>BIP</qtype> 
     502      <slots_used>0</slots_used> 
     503      <slots_resv>0</slots_resv> 
     504      <slots_total>8</slots_total> 
     505      <arch>lx24-amd64</arch> 
     506    </Queue-List> 
     507    <Queue-List> 
     508      <name>ib_b@b25</name> 
     509      <qtype>BIP</qtype> 
     510      <slots_used>0</slots_used> 
     511      <slots_resv>0</slots_resv> 
     512      <slots_total>8</slots_total> 
     513      <arch>lx24-amd64</arch> 
     514    </Queue-List> 
     515    <Queue-List> 
     516      <name>lsdyna@a10</name> 
     517      <qtype>BIP</qtype> 
    451518      <slots_used>0</slots_used> 
    452519      <slots_resv>0</slots_resv> 
    453520      <slots_total>4</slots_total> 
    454521      <arch>lx24-amd64</arch> 
    455       <state>a</state> 
    456     </Queue-List> 
    457     <Queue-List> 
    458       <name>all.q@c22</name> 
    459       <qtype>BI</qtype> 
    460       <slots_used>0</slots_used> 
    461       <slots_resv>0</slots_resv> 
    462       <slots_total>1</slots_total> 
    463       <arch>lx24-amd64</arch> 
    464     </Queue-List> 
    465     <Queue-List> 
    466       <name>all.q@c23</name> 
    467       <qtype>BI</qtype> 
    468       <slots_used>0</slots_used> 
    469       <slots_resv>0</slots_resv> 
    470       <slots_total>1</slots_total> 
    471       <arch>lx24-amd64</arch> 
    472       <state>a</state> 
    473     </Queue-List> 
    474     <Queue-List> 
    475       <name>all.q@c25</name> 
    476       <qtype>BI</qtype> 
    477       <slots_used>0</slots_used> 
    478       <slots_resv>0</slots_resv> 
    479       <slots_total>1</slots_total> 
    480       <arch>lx24-amd64</arch> 
    481     </Queue-List> 
    482     <Queue-List> 
    483       <name>all.q@c3</name> 
    484       <qtype>BI</qtype> 
    485       <slots_used>0</slots_used> 
    486       <slots_resv>0</slots_resv> 
    487       <slots_total>1</slots_total> 
    488       <arch>lx24-amd64</arch> 
    489     </Queue-List> 
    490     <Queue-List> 
    491       <name>all.q@c4</name> 
    492       <qtype>BI</qtype> 
    493       <slots_used>0</slots_used> 
    494       <slots_resv>0</slots_resv> 
    495       <slots_total>1</slots_total> 
    496       <arch>lx24-amd64</arch> 
    497     </Queue-List> 
    498     <Queue-List> 
    499       <name>all.q@c5</name> 
    500       <qtype>BI</qtype> 
    501       <slots_used>0</slots_used> 
    502       <slots_resv>0</slots_resv> 
    503       <slots_total>1</slots_total> 
    504       <arch>lx24-amd64</arch> 
    505     </Queue-List> 
    506     <Queue-List> 
    507       <name>all.q@c6</name> 
    508       <qtype>BI</qtype> 
    509       <slots_used>0</slots_used> 
    510       <slots_resv>0</slots_resv> 
    511       <slots_total>1</slots_total> 
     522    </Queue-List> 
     523    <Queue-List> 
     524      <name>lsdyna@a11</name> 
     525      <qtype>BIP</qtype> 
     526      <slots_used>0</slots_used> 
     527      <slots_resv>0</slots_resv> 
     528      <slots_total>4</slots_total> 
     529      <arch>lx24-amd64</arch> 
     530    </Queue-List> 
     531    <Queue-List> 
     532      <name>lsdyna@a12</name> 
     533      <qtype>BIP</qtype> 
     534      <slots_used>0</slots_used> 
     535      <slots_resv>0</slots_resv> 
     536      <slots_total>4</slots_total> 
     537      <arch>lx24-amd64</arch> 
     538    </Queue-List> 
     539    <Queue-List> 
     540      <name>lsdyna@a13</name> 
     541      <qtype>BIP</qtype> 
     542      <slots_used>0</slots_used> 
     543      <slots_resv>0</slots_resv> 
     544      <slots_total>4</slots_total> 
     545      <arch>lx24-amd64</arch> 
     546    </Queue-List> 
     547    <Queue-List> 
     548      <name>lsdyna-ib_a@a03</name> 
     549      <qtype>BIP</qtype> 
     550      <slots_used>0</slots_used> 
     551      <slots_resv>0</slots_resv> 
     552      <slots_total>8</slots_total> 
     553      <arch>lx24-amd64</arch> 
     554    </Queue-List> 
     555    <Queue-List> 
     556      <name>lsdyna-ib_a@a04</name> 
     557      <qtype>BIP</qtype> 
     558      <slots_used>0</slots_used> 
     559      <slots_resv>0</slots_resv> 
     560      <slots_total>8</slots_total> 
     561      <arch>lx24-amd64</arch> 
     562    </Queue-List> 
     563    <Queue-List> 
     564      <name>lsdyna-ib_a@a05</name> 
     565      <qtype>BIP</qtype> 
     566      <slots_used>0</slots_used> 
     567      <slots_resv>0</slots_resv> 
     568      <slots_total>8</slots_total> 
     569      <arch>lx24-amd64</arch> 
     570    </Queue-List> 
     571    <Queue-List> 
     572      <name>lsdyna-ib_b@b02</name> 
     573      <qtype>BIP</qtype> 
     574      <slots_used>0</slots_used> 
     575      <slots_resv>0</slots_resv> 
     576      <slots_total>8</slots_total> 
     577      <arch>lx24-amd64</arch> 
     578    </Queue-List> 
     579    <Queue-List> 
     580      <name>lsdyna-ib_b@b03</name> 
     581      <qtype>BIP</qtype> 
     582      <slots_used>0</slots_used> 
     583      <slots_resv>0</slots_resv> 
     584      <slots_total>8</slots_total> 
     585      <arch>lx24-amd64</arch> 
     586    </Queue-List> 
     587    <Queue-List> 
     588      <name>lsdyna-ib_b@b04</name> 
     589      <qtype>BIP</qtype> 
     590      <slots_used>0</slots_used> 
     591      <slots_resv>0</slots_resv> 
     592      <slots_total>8</slots_total> 
     593      <arch>lx24-amd64</arch> 
     594    </Queue-List> 
     595    <Queue-List> 
     596      <name>lsdyna-ib_b@b05</name> 
     597      <qtype>BIP</qtype> 
     598      <slots_used>0</slots_used> 
     599      <slots_resv>0</slots_resv> 
     600      <slots_total>8</slots_total> 
     601      <arch>lx24-amd64</arch> 
     602    </Queue-List> 
     603    <Queue-List> 
     604      <name>lsdyna-ib_b@b06</name> 
     605      <qtype>BIP</qtype> 
     606      <slots_used>0</slots_used> 
     607      <slots_resv>0</slots_resv> 
     608      <slots_total>8</slots_total> 
     609      <arch>lx24-amd64</arch> 
     610    </Queue-List> 
     611    <Queue-List> 
     612      <name>lsdyna-ib_b@b07</name> 
     613      <qtype>BIP</qtype> 
     614      <slots_used>0</slots_used> 
     615      <slots_resv>0</slots_resv> 
     616      <slots_total>8</slots_total> 
     617      <arch>lx24-amd64</arch> 
     618    </Queue-List> 
     619    <Queue-List> 
     620      <name>lsdyna-ib_b@b08</name> 
     621      <qtype>BIP</qtype> 
     622      <slots_used>0</slots_used> 
     623      <slots_resv>0</slots_resv> 
     624      <slots_total>8</slots_total> 
     625      <arch>lx24-amd64</arch> 
     626    </Queue-List> 
     627    <Queue-List> 
     628      <name>lsdyna-ib_b@b09</name> 
     629      <qtype>BIP</qtype> 
     630      <slots_used>0</slots_used> 
     631      <slots_resv>0</slots_resv> 
     632      <slots_total>8</slots_total> 
     633      <arch>lx24-amd64</arch> 
     634    </Queue-List> 
     635    <Queue-List> 
     636      <name>lsdyna-ib_b@b10</name> 
     637      <qtype>BIP</qtype> 
     638      <slots_used>0</slots_used> 
     639      <slots_resv>0</slots_resv> 
     640      <slots_total>8</slots_total> 
     641      <arch>lx24-amd64</arch> 
     642    </Queue-List> 
     643    <Queue-List> 
     644      <name>lsdyna-ib_b@b11</name> 
     645      <qtype>BIP</qtype> 
     646      <slots_used>0</slots_used> 
     647      <slots_resv>0</slots_resv> 
     648      <slots_total>8</slots_total> 
     649      <arch>lx24-amd64</arch> 
     650    </Queue-List> 
     651    <Queue-List> 
     652      <name>lsdyna-ib_b@b12</name> 
     653      <qtype>BIP</qtype> 
     654      <slots_used>0</slots_used> 
     655      <slots_resv>0</slots_resv> 
     656      <slots_total>8</slots_total> 
     657      <arch>lx24-amd64</arch> 
     658    </Queue-List> 
     659    <Queue-List> 
     660      <name>lsdyna-ib_b@b13</name> 
     661      <qtype>BIP</qtype> 
     662      <slots_used>0</slots_used> 
     663      <slots_resv>0</slots_resv> 
     664      <slots_total>8</slots_total> 
     665      <arch>lx24-amd64</arch> 
     666    </Queue-List> 
     667    <Queue-List> 
     668      <name>lsdyna-ib_b@b14</name> 
     669      <qtype>BIP</qtype> 
     670      <slots_used>0</slots_used> 
     671      <slots_resv>0</slots_resv> 
     672      <slots_total>8</slots_total> 
     673      <arch>lx24-amd64</arch> 
     674    </Queue-List> 
     675    <Queue-List> 
     676      <name>lsdyna-ib_b@b15</name> 
     677      <qtype>BIP</qtype> 
     678      <slots_used>0</slots_used> 
     679      <slots_resv>0</slots_resv> 
     680      <slots_total>8</slots_total> 
     681      <arch>lx24-amd64</arch> 
     682    </Queue-List> 
     683    <Queue-List> 
     684      <name>lsdyna-ib_b@b16</name> 
     685      <qtype>BIP</qtype> 
     686      <slots_used>0</slots_used> 
     687      <slots_resv>0</slots_resv> 
     688      <slots_total>8</slots_total> 
     689      <arch>lx24-amd64</arch> 
     690    </Queue-List> 
     691    <Queue-List> 
     692      <name>lsdyna-ib_b@b17</name> 
     693      <qtype>BIP</qtype> 
     694      <slots_used>0</slots_used> 
     695      <slots_resv>0</slots_resv> 
     696      <slots_total>8</slots_total> 
     697      <arch>lx24-amd64</arch> 
     698    </Queue-List> 
     699    <Queue-List> 
     700      <name>lsdyna-ib_b@b18</name> 
     701      <qtype>BIP</qtype> 
     702      <slots_used>0</slots_used> 
     703      <slots_resv>0</slots_resv> 
     704      <slots_total>8</slots_total> 
     705      <arch>lx24-amd64</arch> 
     706    </Queue-List> 
     707    <Queue-List> 
     708      <name>lsdyna-ib_b@b19</name> 
     709      <qtype>BIP</qtype> 
     710      <slots_used>0</slots_used> 
     711      <slots_resv>0</slots_resv> 
     712      <slots_total>8</slots_total> 
     713      <arch>lx24-amd64</arch> 
     714    </Queue-List> 
     715    <Queue-List> 
     716      <name>lsdyna-ib_b@b20</name> 
     717      <qtype>BIP</qtype> 
     718      <slots_used>0</slots_used> 
     719      <slots_resv>0</slots_resv> 
     720      <slots_total>8</slots_total> 
     721      <arch>lx24-amd64</arch> 
     722    </Queue-List> 
     723    <Queue-List> 
     724      <name>lsdyna-ib_b@b21</name> 
     725      <qtype>BIP</qtype> 
     726      <slots_used>0</slots_used> 
     727      <slots_resv>0</slots_resv> 
     728      <slots_total>8</slots_total> 
     729      <arch>lx24-amd64</arch> 
     730    </Queue-List> 
     731    <Queue-List> 
     732      <name>lsdyna-ib_b@b23</name> 
     733      <qtype>BIP</qtype> 
     734      <slots_used>0</slots_used> 
     735      <slots_resv>0</slots_resv> 
     736      <slots_total>8</slots_total> 
     737      <arch>lx24-amd64</arch> 
     738    </Queue-List> 
     739    <Queue-List> 
     740      <name>lsdyna-ib_b@b25</name> 
     741      <qtype>BIP</qtype> 
     742      <slots_used>0</slots_used> 
     743      <slots_resv>0</slots_resv> 
     744      <slots_total>8</slots_total> 
     745      <arch>lx24-amd64</arch> 
     746    </Queue-List> 
     747    <Queue-List> 
     748      <name>pf-grid@c04</name> 
     749      <qtype>BIP</qtype> 
     750      <slots_used>0</slots_used> 
     751      <slots_resv>0</slots_resv> 
     752      <slots_total>2</slots_total> 
     753      <arch>lx24-amd64</arch> 
     754    </Queue-List> 
     755    <Queue-List> 
     756      <name>pf-grid@c05</name> 
     757      <qtype>BIP</qtype> 
     758      <slots_used>0</slots_used> 
     759      <slots_resv>0</slots_resv> 
     760      <slots_total>2</slots_total> 
     761      <arch>lx24-amd64</arch> 
     762    </Queue-List> 
     763    <Queue-List> 
     764      <name>pf-grid@c06</name> 
     765      <qtype>BIP</qtype> 
     766      <slots_used>0</slots_used> 
     767      <slots_resv>0</slots_resv> 
     768      <slots_total>2</slots_total> 
     769      <arch>lx24-amd64</arch> 
     770    </Queue-List> 
     771    <Queue-List> 
     772      <name>pf-grid@c07</name> 
     773      <qtype>BIP</qtype> 
     774      <slots_used>0</slots_used> 
     775      <slots_resv>0</slots_resv> 
     776      <slots_total>2</slots_total> 
     777      <arch>lx24-amd64</arch> 
     778    </Queue-List> 
     779    <Queue-List> 
     780      <name>pf-grid@c08</name> 
     781      <qtype>BIP</qtype> 
     782      <slots_used>0</slots_used> 
     783      <slots_resv>0</slots_resv> 
     784      <slots_total>2</slots_total> 
     785      <arch>lx24-amd64</arch> 
     786    </Queue-List> 
     787    <Queue-List> 
     788      <name>pf-grid@c09</name> 
     789      <qtype>BIP</qtype> 
     790      <slots_used>0</slots_used> 
     791      <slots_resv>0</slots_resv> 
     792      <slots_total>2</slots_total> 
     793      <arch>lx24-amd64</arch> 
     794    </Queue-List> 
     795    <Queue-List> 
     796      <name>pf-grid@c10</name> 
     797      <qtype>BIP</qtype> 
     798      <slots_used>0</slots_used> 
     799      <slots_resv>0</slots_resv> 
     800      <slots_total>2</slots_total> 
     801      <arch>lx24-amd64</arch> 
     802    </Queue-List> 
     803    <Queue-List> 
     804      <name>pf240h@c01</name> 
     805      <qtype>BIP</qtype> 
     806      <slots_used>0</slots_used> 
     807      <slots_resv>0</slots_resv> 
     808      <slots_total>2</slots_total> 
     809      <arch>lx24-amd64</arch> 
     810      <state>E</state> 
     811    </Queue-List> 
     812    <Queue-List> 
     813      <name>pf240h@c02</name> 
     814      <qtype>BIP</qtype> 
     815      <slots_used>0</slots_used> 
     816      <slots_resv>0</slots_resv> 
     817      <slots_total>2</slots_total> 
     818      <arch>lx24-amd64</arch> 
     819      <state>E</state> 
     820    </Queue-List> 
     821    <Queue-List> 
     822      <name>pf240h@c03</name> 
     823      <qtype>BIP</qtype> 
     824      <slots_used>0</slots_used> 
     825      <slots_resv>0</slots_resv> 
     826      <slots_total>2</slots_total> 
     827      <arch>lx24-amd64</arch> 
     828      <state>E</state> 
     829    </Queue-List> 
     830    <Queue-List> 
     831      <name>pf240h@c04</name> 
     832      <qtype>BIP</qtype> 
     833      <slots_used>0</slots_used> 
     834      <slots_resv>0</slots_resv> 
     835      <slots_total>2</slots_total> 
     836      <arch>lx24-amd64</arch> 
     837      <state>E</state> 
     838    </Queue-List> 
     839    <Queue-List> 
     840      <name>pf240h@c05</name> 
     841      <qtype>BIP</qtype> 
     842      <slots_used>0</slots_used> 
     843      <slots_resv>0</slots_resv> 
     844      <slots_total>2</slots_total> 
     845      <arch>lx24-amd64</arch> 
     846      <state>E</state> 
     847    </Queue-List> 
     848    <Queue-List> 
     849      <name>pf240h@c06</name> 
     850      <qtype>BIP</qtype> 
     851      <slots_used>0</slots_used> 
     852      <slots_resv>0</slots_resv> 
     853      <slots_total>2</slots_total> 
     854      <arch>lx24-amd64</arch> 
     855    </Queue-List> 
     856    <Queue-List> 
     857      <name>pf240h@c07</name> 
     858      <qtype>BIP</qtype> 
     859      <slots_used>0</slots_used> 
     860      <slots_resv>0</slots_resv> 
     861      <slots_total>2</slots_total> 
     862      <arch>lx24-amd64</arch> 
     863      <state>E</state> 
     864    </Queue-List> 
     865    <Queue-List> 
     866      <name>pf240h@c08</name> 
     867      <qtype>BIP</qtype> 
     868      <slots_used>0</slots_used> 
     869      <slots_resv>0</slots_resv> 
     870      <slots_total>2</slots_total> 
     871      <arch>lx24-amd64</arch> 
     872      <state>E</state> 
     873    </Queue-List> 
     874    <Queue-List> 
     875      <name>pf240h@c09</name> 
     876      <qtype>BIP</qtype> 
     877      <slots_used>1</slots_used> 
     878      <slots_resv>0</slots_resv> 
     879      <slots_total>2</slots_total> 
     880      <arch>lx24-amd64</arch> 
     881    </Queue-List> 
     882    <Queue-List> 
     883      <name>pf240h@c10</name> 
     884      <qtype>BIP</qtype> 
     885      <slots_used>1</slots_used> 
     886      <slots_resv>0</slots_resv> 
     887      <slots_total>2</slots_total> 
     888      <arch>lx24-amd64</arch> 
     889    </Queue-List> 
     890    <Queue-List> 
     891      <name>pf240h@c11</name> 
     892      <qtype>BIP</qtype> 
     893      <slots_used>0</slots_used> 
     894      <slots_resv>0</slots_resv> 
     895      <slots_total>2</slots_total> 
     896      <arch>lx24-amd64</arch> 
     897      <state>E</state> 
     898    </Queue-List> 
     899    <Queue-List> 
     900      <name>pf240h@c12</name> 
     901      <qtype>BIP</qtype> 
     902      <slots_used>1</slots_used> 
     903      <slots_resv>0</slots_resv> 
     904      <slots_total>2</slots_total> 
     905      <arch>lx24-amd64</arch> 
     906      <state>E</state> 
     907    </Queue-List> 
     908    <Queue-List> 
     909      <name>pf240h@c13</name> 
     910      <qtype>BIP</qtype> 
     911      <slots_used>0</slots_used> 
     912      <slots_resv>0</slots_resv> 
     913      <slots_total>2</slots_total> 
     914      <arch>lx24-amd64</arch> 
     915      <state>E</state> 
     916    </Queue-List> 
     917    <Queue-List> 
     918      <name>pf240h@c14</name> 
     919      <qtype>BIP</qtype> 
     920      <slots_used>1</slots_used> 
     921      <slots_resv>0</slots_resv> 
     922      <slots_total>2</slots_total> 
     923      <arch>lx24-amd64</arch> 
     924      <state>E</state> 
     925    </Queue-List> 
     926    <Queue-List> 
     927      <name>pf240h@c15</name> 
     928      <qtype>BIP</qtype> 
     929      <slots_used>0</slots_used> 
     930      <slots_resv>0</slots_resv> 
     931      <slots_total>2</slots_total> 
     932      <arch>lx24-amd64</arch> 
     933      <state>E</state> 
     934    </Queue-List> 
     935    <Queue-List> 
     936      <name>pf240h@c16</name> 
     937      <qtype>BIP</qtype> 
     938      <slots_used>0</slots_used> 
     939      <slots_resv>0</slots_resv> 
     940      <slots_total>2</slots_total> 
     941      <arch>lx24-amd64</arch> 
     942      <state>E</state> 
     943    </Queue-List> 
     944    <Queue-List> 
     945      <name>pf240h@c17</name> 
     946      <qtype>BIP</qtype> 
     947      <slots_used>0</slots_used> 
     948      <slots_resv>0</slots_resv> 
     949      <slots_total>2</slots_total> 
     950      <arch>lx24-amd64</arch> 
     951      <state>E</state> 
     952    </Queue-List> 
     953    <Queue-List> 
     954      <name>pf240h@c18</name> 
     955      <qtype>BIP</qtype> 
     956      <slots_used>0</slots_used> 
     957      <slots_resv>0</slots_resv> 
     958      <slots_total>2</slots_total> 
     959      <arch>lx24-amd64</arch> 
     960    </Queue-List> 
     961    <Queue-List> 
     962      <name>pf240h@c19</name> 
     963      <qtype>BIP</qtype> 
     964      <slots_used>0</slots_used> 
     965      <slots_resv>0</slots_resv> 
     966      <slots_total>2</slots_total> 
     967      <arch>lx24-amd64</arch> 
     968      <state>E</state> 
     969    </Queue-List> 
     970    <Queue-List> 
     971      <name>pf240h@c20</name> 
     972      <qtype>BIP</qtype> 
     973      <slots_used>0</slots_used> 
     974      <slots_resv>0</slots_resv> 
     975      <slots_total>2</slots_total> 
     976      <arch>lx24-amd64</arch> 
     977      <state>E</state> 
     978    </Queue-List> 
     979    <Queue-List> 
     980      <name>pf240h@c21</name> 
     981      <qtype>BIP</qtype> 
     982      <slots_used>0</slots_used> 
     983      <slots_resv>0</slots_resv> 
     984      <slots_total>2</slots_total> 
     985      <arch>lx24-amd64</arch> 
     986      <state>E</state> 
     987    </Queue-List> 
     988    <Queue-List> 
     989      <name>pf240h@c22</name> 
     990      <qtype>BIP</qtype> 
     991      <slots_used>0</slots_used> 
     992      <slots_resv>0</slots_resv> 
     993      <slots_total>2</slots_total> 
     994      <arch>lx24-amd64</arch> 
     995      <state>E</state> 
     996    </Queue-List> 
     997    <Queue-List> 
     998      <name>pf240h@c23</name> 
     999      <qtype>BIP</qtype> 
     1000      <slots_used>0</slots_used> 
     1001      <slots_resv>0</slots_resv> 
     1002      <slots_total>2</slots_total> 
     1003      <arch>lx24-amd64</arch> 
     1004      <state>E</state> 
     1005    </Queue-List> 
     1006    <Queue-List> 
     1007      <name>pf240h_ib@b02</name> 
     1008      <qtype>BIP</qtype> 
     1009      <slots_used>0</slots_used> 
     1010      <slots_resv>0</slots_resv> 
     1011      <slots_total>8</slots_total> 
     1012      <arch>lx24-amd64</arch> 
     1013    </Queue-List> 
     1014    <Queue-List> 
     1015      <name>pf240h_ib@b03</name> 
     1016      <qtype>BIP</qtype> 
     1017      <slots_used>0</slots_used> 
     1018      <slots_resv>0</slots_resv> 
     1019      <slots_total>8</slots_total> 
     1020      <arch>lx24-amd64</arch> 
     1021    </Queue-List> 
     1022    <Queue-List> 
     1023      <name>pf240h_ib@b04</name> 
     1024      <qtype>BIP</qtype> 
     1025      <slots_used>0</slots_used> 
     1026      <slots_resv>0</slots_resv> 
     1027      <slots_total>8</slots_total> 
     1028      <arch>lx24-amd64</arch> 
     1029    </Queue-List> 
     1030    <Queue-List> 
     1031      <name>pf240h_ib@b05</name> 
     1032      <qtype>BIP</qtype> 
     1033      <slots_used>0</slots_used> 
     1034      <slots_resv>0</slots_resv> 
     1035      <slots_total>8</slots_total> 
     1036      <arch>lx24-amd64</arch> 
     1037    </Queue-List> 
     1038    <Queue-List> 
     1039      <name>pf240h_ib@b06</name> 
     1040      <qtype>BIP</qtype> 
     1041      <slots_used>0</slots_used> 
     1042      <slots_resv>0</slots_resv> 
     1043      <slots_total>8</slots_total> 
     1044      <arch>lx24-amd64</arch> 
     1045    </Queue-List> 
     1046    <Queue-List> 
     1047      <name>pf240h_ib@b07</name> 
     1048      <qtype>BIP</qtype> 
     1049      <slots_used>0</slots_used> 
     1050      <slots_resv>0</slots_resv> 
     1051      <slots_total>8</slots_total> 
     1052      <arch>lx24-amd64</arch> 
     1053    </Queue-List> 
     1054    <Queue-List> 
     1055      <name>pf240h_ib@b08</name> 
     1056      <qtype>BIP</qtype> 
     1057      <slots_used>0</slots_used> 
     1058      <slots_resv>0</slots_resv> 
     1059      <slots_total>8</slots_total> 
     1060      <arch>lx24-amd64</arch> 
     1061    </Queue-List> 
     1062    <Queue-List> 
     1063      <name>pf240h_ib@b09</name> 
     1064      <qtype>BIP</qtype> 
     1065      <slots_used>0</slots_used> 
     1066      <slots_resv>0</slots_resv> 
     1067      <slots_total>8</slots_total> 
     1068      <arch>lx24-amd64</arch> 
     1069      <state>E</state> 
     1070    </Queue-List> 
     1071    <Queue-List> 
     1072      <name>pf240h_ib@b10</name> 
     1073      <qtype>BIP</qtype> 
     1074      <slots_used>0</slots_used> 
     1075      <slots_resv>0</slots_resv> 
     1076      <slots_total>8</slots_total> 
     1077      <arch>lx24-amd64</arch> 
     1078    </Queue-List> 
     1079    <Queue-List> 
     1080      <name>pf240h_ib@b11</name> 
     1081      <qtype>BIP</qtype> 
     1082      <slots_used>0</slots_used> 
     1083      <slots_resv>0</slots_resv> 
     1084      <slots_total>8</slots_total> 
     1085      <arch>lx24-amd64</arch> 
     1086    </Queue-List> 
     1087    <Queue-List> 
     1088      <name>pf240h_ib@b12</name> 
     1089      <qtype>BIP</qtype> 
     1090      <slots_used>0</slots_used> 
     1091      <slots_resv>0</slots_resv> 
     1092      <slots_total>8</slots_total> 
     1093      <arch>lx24-amd64</arch> 
     1094      <state>E</state> 
     1095    </Queue-List> 
     1096    <Queue-List> 
     1097      <name>pf240h_ib@b13</name> 
     1098      <qtype>BIP</qtype> 
     1099      <slots_used>0</slots_used> 
     1100      <slots_resv>0</slots_resv> 
     1101      <slots_total>8</slots_total> 
     1102      <arch>lx24-amd64</arch> 
     1103      <state>E</state> 
     1104    </Queue-List> 
     1105    <Queue-List> 
     1106      <name>pf240h_ib@b14</name> 
     1107      <qtype>BIP</qtype> 
     1108      <slots_used>0</slots_used> 
     1109      <slots_resv>0</slots_resv> 
     1110      <slots_total>8</slots_total> 
     1111      <arch>lx24-amd64</arch> 
     1112    </Queue-List> 
     1113    <Queue-List> 
     1114      <name>pf240h_ib@b15</name> 
     1115      <qtype>BIP</qtype> 
     1116      <slots_used>0</slots_used> 
     1117      <slots_resv>0</slots_resv> 
     1118      <slots_total>8</slots_total> 
     1119      <arch>lx24-amd64</arch> 
     1120    </Queue-List> 
     1121    <Queue-List> 
     1122      <name>pf240h_ib@b16</name> 
     1123      <qtype>BIP</qtype> 
     1124      <slots_used>0</slots_used> 
     1125      <slots_resv>0</slots_resv> 
     1126      <slots_total>8</slots_total> 
     1127      <arch>lx24-amd64</arch> 
     1128    </Queue-List> 
     1129    <Queue-List> 
     1130      <name>pf240h_ib@b17</name> 
     1131      <qtype>BIP</qtype> 
     1132      <slots_used>0</slots_used> 
     1133      <slots_resv>0</slots_resv> 
     1134      <slots_total>8</slots_total> 
     1135      <arch>lx24-amd64</arch> 
     1136    </Queue-List> 
     1137    <Queue-List> 
     1138      <name>pf240h_ib@b18</name> 
     1139      <qtype>BIP</qtype> 
     1140      <slots_used>0</slots_used> 
     1141      <slots_resv>0</slots_resv> 
     1142      <slots_total>8</slots_total> 
     1143      <arch>lx24-amd64</arch> 
     1144    </Queue-List> 
     1145    <Queue-List> 
     1146      <name>pf240h_ib@b20</name> 
     1147      <qtype>BIP</qtype> 
     1148      <slots_used>0</slots_used> 
     1149      <slots_resv>0</slots_resv> 
     1150      <slots_total>8</slots_total> 
     1151      <arch>lx24-amd64</arch> 
     1152    </Queue-List> 
     1153    <Queue-List> 
     1154      <name>pf240h_ib@b22</name> 
     1155      <qtype>BIP</qtype> 
     1156      <slots_used>0</slots_used> 
     1157      <slots_resv>0</slots_resv> 
     1158      <slots_total>8</slots_total> 
     1159      <arch>lx24-amd64</arch> 
     1160      <state>u</state> 
     1161    </Queue-List> 
     1162    <Queue-List> 
     1163      <name>pf240h_ib@b23</name> 
     1164      <qtype>BIP</qtype> 
     1165      <slots_used>0</slots_used> 
     1166      <slots_resv>0</slots_resv> 
     1167      <slots_total>8</slots_total> 
     1168      <arch>lx24-amd64</arch> 
     1169    </Queue-List> 
     1170    <Queue-List> 
     1171      <name>pf24h@a03</name> 
     1172      <qtype>BIP</qtype> 
     1173      <slots_used>0</slots_used> 
     1174      <slots_resv>0</slots_resv> 
     1175      <slots_total>8</slots_total> 
     1176      <arch>lx24-amd64</arch> 
     1177    </Queue-List> 
     1178    <Queue-List> 
     1179      <name>pf24h@a04</name> 
     1180      <qtype>BIP</qtype> 
     1181      <slots_used>0</slots_used> 
     1182      <slots_resv>0</slots_resv> 
     1183      <slots_total>8</slots_total> 
     1184      <arch>lx24-amd64</arch> 
     1185    </Queue-List> 
     1186    <Queue-List> 
     1187      <name>pf24h@a05</name> 
     1188      <qtype>BIP</qtype> 
     1189      <slots_used>1</slots_used> 
     1190      <slots_resv>0</slots_resv> 
     1191      <slots_total>8</slots_total> 
     1192      <arch>lx24-amd64</arch> 
     1193    </Queue-List> 
     1194    <Queue-List> 
     1195      <name>pf24h@b01</name> 
     1196      <qtype>BIP</qtype> 
     1197      <slots_used>0</slots_used> 
     1198      <slots_resv>0</slots_resv> 
     1199      <slots_total>8</slots_total> 
     1200      <arch>lx24-amd64</arch> 
     1201      <state>u</state> 
     1202    </Queue-List> 
     1203    <Queue-List> 
     1204      <name>pf24h@b02</name> 
     1205      <qtype>BIP</qtype> 
     1206      <slots_used>0</slots_used> 
     1207      <slots_resv>0</slots_resv> 
     1208      <slots_total>8</slots_total> 
     1209      <arch>lx24-amd64</arch> 
     1210    </Queue-List> 
     1211    <Queue-List> 
     1212      <name>pf24h@b03</name> 
     1213      <qtype>BIP</qtype> 
     1214      <slots_used>0</slots_used> 
     1215      <slots_resv>0</slots_resv> 
     1216      <slots_total>8</slots_total> 
     1217      <arch>lx24-amd64</arch> 
     1218    </Queue-List> 
     1219    <Queue-List> 
     1220      <name>pf24h@b04</name> 
     1221      <qtype>BIP</qtype> 
     1222      <slots_used>0</slots_used> 
     1223      <slots_resv>0</slots_resv> 
     1224      <slots_total>8</slots_total> 
     1225      <arch>lx24-amd64</arch> 
     1226    </Queue-List> 
     1227    <Queue-List> 
     1228      <name>pf24h@b05</name> 
     1229      <qtype>BIP</qtype> 
     1230      <slots_used>0</slots_used> 
     1231      <slots_resv>0</slots_resv> 
     1232      <slots_total>8</slots_total> 
     1233      <arch>lx24-amd64</arch> 
     1234    </Queue-List> 
     1235    <Queue-List> 
     1236      <name>pf24h@b06</name> 
     1237      <qtype>BIP</qtype> 
     1238      <slots_used>0</slots_used> 
     1239      <slots_resv>0</slots_resv> 
     1240      <slots_total>8</slots_total> 
     1241      <arch>lx24-amd64</arch> 
     1242    </Queue-List> 
     1243    <Queue-List> 
     1244      <name>pf24h@b07</name> 
     1245      <qtype>BIP</qtype> 
     1246      <slots_used>0</slots_used> 
     1247      <slots_resv>0</slots_resv> 
     1248      <slots_total>8</slots_total> 
     1249      <arch>lx24-amd64</arch> 
     1250    </Queue-List> 
     1251    <Queue-List> 
     1252      <name>pf24h@b09</name> 
     1253      <qtype>BIP</qtype> 
     1254      <slots_used>0</slots_used> 
     1255      <slots_resv>0</slots_resv> 
     1256      <slots_total>8</slots_total> 
     1257      <arch>lx24-amd64</arch> 
     1258    </Queue-List> 
     1259    <Queue-List> 
     1260      <name>pf24h@b10</name> 
     1261      <qtype>BIP</qtype> 
     1262      <slots_used>0</slots_used> 
     1263      <slots_resv>0</slots_resv> 
     1264      <slots_total>8</slots_total> 
     1265      <arch>lx24-amd64</arch> 
     1266    </Queue-List> 
     1267    <Queue-List> 
     1268      <name>pf24h@b11</name> 
     1269      <qtype>BIP</qtype> 
     1270      <slots_used>0</slots_used> 
     1271      <slots_resv>0</slots_resv> 
     1272      <slots_total>8</slots_total> 
     1273      <arch>lx24-amd64</arch> 
     1274    </Queue-List> 
     1275    <Queue-List> 
     1276      <name>pf24h@b12</name> 
     1277      <qtype>BIP</qtype> 
     1278      <slots_used>0</slots_used> 
     1279      <slots_resv>0</slots_resv> 
     1280      <slots_total>8</slots_total> 
     1281      <arch>lx24-amd64</arch> 
     1282    </Queue-List> 
     1283    <Queue-List> 
     1284      <name>pf24h@b13</name> 
     1285      <qtype>BIP</qtype> 
     1286      <slots_used>0</slots_used> 
     1287      <slots_resv>0</slots_resv> 
     1288      <slots_total>8</slots_total> 
     1289      <arch>lx24-amd64</arch> 
     1290    </Queue-List> 
     1291    <Queue-List> 
     1292      <name>pf24h@b14</name> 
     1293      <qtype>BIP</qtype> 
     1294      <slots_used>0</slots_used> 
     1295      <slots_resv>0</slots_resv> 
     1296      <slots_total>8</slots_total> 
     1297      <arch>lx24-amd64</arch> 
     1298    </Queue-List> 
     1299    <Queue-List> 
     1300      <name>pf24h@b15</name> 
     1301      <qtype>BIP</qtype> 
     1302      <slots_used>0</slots_used> 
     1303      <slots_resv>0</slots_resv> 
     1304      <slots_total>8</slots_total> 
     1305      <arch>lx24-amd64</arch> 
     1306    </Queue-List> 
     1307    <Queue-List> 
     1308      <name>pf24h@b16</name> 
     1309      <qtype>BIP</qtype> 
     1310      <slots_used>0</slots_used> 
     1311      <slots_resv>0</slots_resv> 
     1312      <slots_total>8</slots_total> 
     1313      <arch>lx24-amd64</arch> 
     1314    </Queue-List> 
     1315    <Queue-List> 
     1316      <name>pf24h@b17</name> 
     1317      <qtype>BIP</qtype> 
     1318      <slots_used>0</slots_used> 
     1319      <slots_resv>0</slots_resv> 
     1320      <slots_total>8</slots_total> 
     1321      <arch>lx24-amd64</arch> 
     1322    </Queue-List> 
     1323    <Queue-List> 
     1324      <name>pf24h@b18</name> 
     1325      <qtype>BIP</qtype> 
     1326      <slots_used>0</slots_used> 
     1327      <slots_resv>0</slots_resv> 
     1328      <slots_total>8</slots_total> 
     1329      <arch>lx24-amd64</arch> 
     1330    </Queue-List> 
     1331    <Queue-List> 
     1332      <name>pf24h@b19</name> 
     1333      <qtype>BIP</qtype> 
     1334      <slots_used>0</slots_used> 
     1335      <slots_resv>0</slots_resv> 
     1336      <slots_total>8</slots_total> 
     1337      <arch>lx24-amd64</arch> 
     1338    </Queue-List> 
     1339    <Queue-List> 
     1340      <name>pf24h@b20</name> 
     1341      <qtype>BIP</qtype> 
     1342      <slots_used>0</slots_used> 
     1343      <slots_resv>0</slots_resv> 
     1344      <slots_total>8</slots_total> 
     1345      <arch>lx24-amd64</arch> 
     1346    </Queue-List> 
     1347    <Queue-List> 
     1348      <name>pf24h@b21</name> 
     1349      <qtype>BIP</qtype> 
     1350      <slots_used>0</slots_used> 
     1351      <slots_resv>0</slots_resv> 
     1352      <slots_total>8</slots_total> 
     1353      <arch>lx24-amd64</arch> 
     1354    </Queue-List> 
     1355    <Queue-List> 
     1356      <name>pf24h@b23</name> 
     1357      <qtype>BIP</qtype> 
     1358      <slots_used>0</slots_used> 
     1359      <slots_resv>0</slots_resv> 
     1360      <slots_total>8</slots_total> 
     1361      <arch>lx24-amd64</arch> 
     1362    </Queue-List> 
     1363    <Queue-List> 
     1364      <name>pf24h@b24</name> 
     1365      <qtype>BIP</qtype> 
     1366      <slots_used>0</slots_used> 
     1367      <slots_resv>0</slots_resv> 
     1368      <slots_total>8</slots_total> 
     1369      <arch>lx24-amd64</arch> 
     1370    </Queue-List> 
     1371    <Queue-List> 
     1372      <name>reid-mm@a06</name> 
     1373      <qtype>BIP</qtype> 
     1374      <slots_used>0</slots_used> 
     1375      <slots_resv>0</slots_resv> 
     1376      <slots_total>8</slots_total> 
     1377      <arch>lx24-amd64</arch> 
     1378    </Queue-List> 
     1379    <Queue-List> 
     1380      <name>reid-mm@a07</name> 
     1381      <qtype>BIP</qtype> 
     1382      <slots_used>0</slots_used> 
     1383      <slots_resv>0</slots_resv> 
     1384      <slots_total>8</slots_total> 
     1385      <arch>lx24-amd64</arch> 
     1386    </Queue-List> 
     1387    <Queue-List> 
     1388      <name>reid-mm@a08</name> 
     1389      <qtype>BIP</qtype> 
     1390      <slots_used>0</slots_used> 
     1391      <slots_resv>0</slots_resv> 
     1392      <slots_total>8</slots_total> 
     1393      <arch>lx24-amd64</arch> 
     1394    </Queue-List> 
     1395    <Queue-List> 
     1396      <name>reid-mm@a09</name> 
     1397      <qtype>BIP</qtype> 
     1398      <slots_used>0</slots_used> 
     1399      <slots_resv>0</slots_resv> 
     1400      <slots_total>8</slots_total> 
     1401      <arch>lx24-amd64</arch> 
     1402    </Queue-List> 
     1403    <Queue-List> 
     1404      <name>reid_ib@a10</name> 
     1405      <qtype>BIP</qtype> 
     1406      <slots_used>0</slots_used> 
     1407      <slots_resv>0</slots_resv> 
     1408      <slots_total>8</slots_total> 
     1409      <arch>lx24-amd64</arch> 
     1410    </Queue-List> 
     1411    <Queue-List> 
     1412      <name>reid_ib@a11</name> 
     1413      <qtype>BIP</qtype> 
     1414      <slots_used>0</slots_used> 
     1415      <slots_resv>0</slots_resv> 
     1416      <slots_total>8</slots_total> 
     1417      <arch>lx24-amd64</arch> 
     1418    </Queue-List> 
     1419    <Queue-List> 
     1420      <name>reid_ib@a12</name> 
     1421      <qtype>BIP</qtype> 
     1422      <slots_used>0</slots_used> 
     1423      <slots_resv>0</slots_resv> 
     1424      <slots_total>8</slots_total> 
     1425      <arch>lx24-amd64</arch> 
     1426    </Queue-List> 
     1427    <Queue-List> 
     1428      <name>reid_ib@a13</name> 
     1429      <qtype>BIP</qtype> 
     1430      <slots_used>0</slots_used> 
     1431      <slots_resv>0</slots_resv> 
     1432      <slots_total>8</slots_total> 
     1433      <arch>lx24-amd64</arch> 
     1434    </Queue-List> 
     1435    <Queue-List> 
     1436      <name>schorr_a@a03</name> 
     1437      <qtype>BIP</qtype> 
     1438      <slots_used>0</slots_used> 
     1439      <slots_resv>0</slots_resv> 
     1440      <slots_total>8</slots_total> 
     1441      <arch>lx24-amd64</arch> 
     1442    </Queue-List> 
     1443    <Queue-List> 
     1444      <name>schorr_a@a04</name> 
     1445      <qtype>BIP</qtype> 
     1446      <slots_used>0</slots_used> 
     1447      <slots_resv>0</slots_resv> 
     1448      <slots_total>8</slots_total> 
     1449      <arch>lx24-amd64</arch> 
     1450    </Queue-List> 
     1451    <Queue-List> 
     1452      <name>schorr_a@a05</name> 
     1453      <qtype>BIP</qtype> 
     1454      <slots_used>0</slots_used> 
     1455      <slots_resv>0</slots_resv> 
     1456      <slots_total>8</slots_total> 
     1457      <arch>lx24-amd64</arch> 
     1458    </Queue-List> 
     1459    <Queue-List> 
     1460      <name>smp@smp01</name> 
     1461      <qtype>BIP</qtype> 
     1462      <slots_used>0</slots_used> 
     1463      <slots_resv>0</slots_resv> 
     1464      <slots_total>16</slots_total> 
     1465      <arch>lx24-amd64</arch> 
    5121466      <state>au</state> 
    5131467    </Queue-List> 
    5141468    <Queue-List> 
    515       <name>all.q@c7</name> 
    516       <qtype>BI</qtype> 
    517       <slots_used>0</slots_used> 
    518       <slots_resv>0</slots_resv> 
    519       <slots_total>1</slots_total> 
    520       <arch>lx24-amd64</arch> 
    521     </Queue-List> 
    522     <Queue-List> 
    523       <name>all.q@c8</name> 
    524       <qtype>BI</qtype> 
    525       <slots_used>0</slots_used> 
    526       <slots_resv>0</slots_resv> 
    527       <slots_total>1</slots_total> 
    528       <arch>lx24-amd64</arch> 
    529     </Queue-List> 
    530     <Queue-List> 
    531       <name>all.q@c9</name> 
    532       <qtype>BI</qtype> 
    533       <slots_used>0</slots_used> 
    534       <slots_resv>0</slots_resv> 
    535       <slots_total>1</slots_total> 
    536       <arch>lx24-amd64</arch> 
    537     </Queue-List> 
    538     <Queue-List> 
    539       <name>all.q@e1</name> 
    540       <qtype>BI</qtype> 
    541       <slots_used>0</slots_used> 
    542       <slots_resv>0</slots_resv> 
    543       <slots_total>1</slots_total> 
    544       <arch>lx24-amd64</arch> 
    545       <state>a</state> 
    546     </Queue-List> 
    547     <Queue-List> 
    548       <name>all.q@e2</name> 
    549       <qtype>BI</qtype> 
    550       <slots_used>0</slots_used> 
    551       <slots_resv>0</slots_resv> 
    552       <slots_total>1</slots_total> 
    553       <arch>lx24-amd64</arch> 
    554     </Queue-List> 
    555     <Queue-List> 
    556       <name>all.q@e3</name> 
    557       <qtype>BI</qtype> 
    558       <slots_used>0</slots_used> 
    559       <slots_resv>0</slots_resv> 
    560       <slots_total>1</slots_total> 
    561       <arch>lx24-amd64</arch> 
    562     </Queue-List> 
    563     <Queue-List> 
    564       <name>all.q@e4</name> 
    565       <qtype>BI</qtype> 
    566       <slots_used>0</slots_used> 
    567       <slots_resv>0</slots_resv> 
    568       <slots_total>1</slots_total> 
    569       <arch>lx24-amd64</arch> 
    570     </Queue-List> 
    571     <Queue-List> 
    572       <name>all.q@e5</name> 
    573       <qtype>BI</qtype> 
    574       <slots_used>0</slots_used> 
    575       <slots_resv>0</slots_resv> 
    576       <slots_total>1</slots_total> 
    577       <arch>lx24-amd64</arch> 
    578     </Queue-List> 
    579     <Queue-List> 
    580       <name>all.q@e6</name> 
    581       <qtype>BI</qtype> 
    582       <slots_used>0</slots_used> 
    583       <slots_resv>0</slots_resv> 
    584       <slots_total>1</slots_total> 
    585       <arch>lx24-amd64</arch> 
    586       <state>a</state> 
    587     </Queue-List> 
    588     <Queue-List> 
    589       <name>all.q@f1</name> 
    590       <qtype>BI</qtype> 
    591       <slots_used>0</slots_used> 
    592       <slots_resv>0</slots_resv> 
    593       <slots_total>1</slots_total> 
    594       <arch>lx24-amd64</arch> 
    595     </Queue-List> 
    596     <Queue-List> 
    597       <name>all.q@f10</name> 
    598       <qtype>BI</qtype> 
    599       <slots_used>0</slots_used> 
    600       <slots_resv>0</slots_resv> 
    601       <slots_total>1</slots_total> 
    602       <arch>lx24-amd64</arch> 
    603     </Queue-List> 
    604     <Queue-List> 
    605       <name>all.q@f11</name> 
    606       <qtype>BI</qtype> 
    607       <slots_used>0</slots_used> 
    608       <slots_resv>0</slots_resv> 
    609       <slots_total>1</slots_total> 
    610       <arch>lx24-amd64</arch> 
    611     </Queue-List> 
    612     <Queue-List> 
    613       <name>all.q@f2</name> 
    614       <qtype>BI</qtype> 
    615       <slots_used>0</slots_used> 
    616       <slots_resv>0</slots_resv> 
    617       <slots_total>1</slots_total> 
    618       <arch>lx24-amd64</arch> 
    619     </Queue-List> 
    620     <Queue-List> 
    621       <name>all.q@f3</name> 
    622       <qtype>BI</qtype> 
    623       <slots_used>0</slots_used> 
    624       <slots_resv>0</slots_resv> 
    625       <slots_total>1</slots_total> 
    626       <arch>lx24-amd64</arch> 
    627       <state>au</state> 
    628     </Queue-List> 
    629     <Queue-List> 
    630       <name>all.q@f4</name> 
    631       <qtype>BI</qtype> 
    632       <slots_used>0</slots_used> 
    633       <slots_resv>0</slots_resv> 
    634       <slots_total>1</slots_total> 
    635       <arch>lx24-amd64</arch> 
    636     </Queue-List> 
    637     <Queue-List> 
    638       <name>all.q@f5</name> 
    639       <qtype>BI</qtype> 
    640       <slots_used>0</slots_used> 
    641       <slots_resv>0</slots_resv> 
    642       <slots_total>1</slots_total> 
    643       <state>au</state> 
    644     </Queue-List> 
    645     <Queue-List> 
    646       <name>all.q@f6</name> 
    647       <qtype>BI</qtype> 
    648       <slots_used>0</slots_used> 
    649       <slots_resv>0</slots_resv> 
    650       <slots_total>1</slots_total> 
    651       <arch>lx24-amd64</arch> 
    652     </Queue-List> 
    653     <Queue-List> 
    654       <name>all.q@f7</name> 
    655       <qtype>BI</qtype> 
    656       <slots_used>0</slots_used> 
    657       <slots_resv>0</slots_resv> 
    658       <slots_total>1</slots_total> 
    659       <state>au</state> 
    660     </Queue-List> 
    661     <Queue-List> 
    662       <name>all.q@f8</name> 
    663       <qtype>BI</qtype> 
    664       <slots_used>0</slots_used> 
    665       <slots_resv>0</slots_resv> 
    666       <slots_total>1</slots_total> 
    667       <arch>lx24-amd64</arch> 
    668     </Queue-List> 
    669     <Queue-List> 
    670       <name>all.q@f9</name> 
    671       <qtype>BI</qtype> 
    672       <slots_used>0</slots_used> 
    673       <slots_resv>0</slots_resv> 
    674       <slots_total>1</slots_total> 
    675       <arch>lx24-amd64</arch> 
    676     </Queue-List> 
    677     <Queue-List> 
    678       <name>all.q@reid01</name> 
    679       <qtype>BI</qtype> 
    680       <slots_used>0</slots_used> 
    681       <slots_resv>0</slots_resv> 
    682       <slots_total>1</slots_total> 
    683       <arch>lx24-amd64</arch> 
    684     </Queue-List> 
    685     <Queue-List> 
    686       <name>all.q@reid02</name> 
    687       <qtype>BI</qtype> 
    688       <slots_used>0</slots_used> 
    689       <slots_resv>0</slots_resv> 
    690       <slots_total>1</slots_total> 
    691       <arch>lx24-amd64</arch> 
    692       <state>au</state> 
    693     </Queue-List> 
    694     <Queue-List> 
    695       <name>all.q@reid03</name> 
    696       <qtype>BI</qtype> 
    697       <slots_used>0</slots_used> 
    698       <slots_resv>0</slots_resv> 
    699       <slots_total>1</slots_total> 
    700       <arch>lx24-amd64</arch> 
    701     </Queue-List> 
    702     <Queue-List> 
    703       <name>all.q@reid04</name> 
    704       <qtype>BI</qtype> 
    705       <slots_used>0</slots_used> 
    706       <slots_resv>0</slots_resv> 
    707       <slots_total>1</slots_total> 
    708       <arch>lx24-amd64</arch> 
    709     </Queue-List> 
    710     <Queue-List> 
    711       <name>all.q@reid05</name> 
    712       <qtype>BI</qtype> 
    713       <slots_used>0</slots_used> 
    714       <slots_resv>0</slots_resv> 
    715       <slots_total>1</slots_total> 
    716       <arch>lx24-amd64</arch> 
    717     </Queue-List> 
    718     <Queue-List> 
    719       <name>all.q@reid06</name> 
    720       <qtype>BI</qtype> 
    721       <slots_used>0</slots_used> 
    722       <slots_resv>0</slots_resv> 
    723       <slots_total>1</slots_total> 
    724       <arch>lx24-amd64</arch> 
    725     </Queue-List> 
    726     <Queue-List> 
    727       <name>all.q@reid07</name> 
    728       <qtype>BI</qtype> 
    729       <slots_used>0</slots_used> 
    730       <slots_resv>0</slots_resv> 
    731       <slots_total>1</slots_total> 
    732       <arch>lx24-amd64</arch> 
    733     </Queue-List> 
    734     <Queue-List> 
    735       <name>all.q@reid08</name> 
    736       <qtype>BI</qtype> 
    737       <slots_used>0</slots_used> 
    738       <slots_resv>0</slots_resv> 
    739       <slots_total>1</slots_total> 
    740       <arch>lx24-amd64</arch> 
    741     </Queue-List> 
    742     <Queue-List> 
    743       <name>all.q@smp01</name> 
    744       <qtype>BI</qtype> 
    745       <slots_used>0</slots_used> 
    746       <slots_resv>0</slots_resv> 
    747       <slots_total>1</slots_total> 
    748       <arch>lx24-amd64</arch> 
    749     </Queue-List> 
    750     <Queue-List> 
    751       <name>all.q@smp02</name> 
    752       <qtype>BI</qtype> 
    753       <slots_used>0</slots_used> 
    754       <slots_resv>0</slots_resv> 
    755       <slots_total>1</slots_total> 
    756       <arch>lx24-amd64</arch> 
    757     </Queue-List> 
    758     <Queue-List> 
    759       <name>chandra@a18</name> 
    760       <qtype>BIP</qtype> 
    761       <slots_used>0</slots_used> 
    762       <slots_resv>0</slots_resv> 
    763       <slots_total>8</slots_total> 
    764       <arch>lx24-amd64</arch> 
    765     </Queue-List> 
    766     <Queue-List> 
    767       <name>chandra@a19</name> 
    768       <qtype>BIP</qtype> 
    769       <slots_used>0</slots_used> 
    770       <slots_resv>0</slots_resv> 
    771       <slots_total>8</slots_total> 
    772       <arch>lx24-amd64</arch> 
    773     </Queue-List> 
    774     <Queue-List> 
    775       <name>chandra@a20</name> 
    776       <qtype>BIP</qtype> 
    777       <slots_used>0</slots_used> 
    778       <slots_resv>0</slots_resv> 
    779       <slots_total>8</slots_total> 
    780       <arch>lx24-amd64</arch> 
    781     </Queue-List> 
    782     <Queue-List> 
    783       <name>chandra@a21</name> 
    784       <qtype>BIP</qtype> 
    785       <slots_used>0</slots_used> 
    786       <slots_resv>0</slots_resv> 
    787       <slots_total>8</slots_total> 
    788       <arch>lx24-amd64</arch> 
    789     </Queue-List> 
    790     <Queue-List> 
    791       <name>chandra@a22</name> 
    792       <qtype>BIP</qtype> 
    793       <slots_used>0</slots_used> 
    794       <slots_resv>0</slots_resv> 
    795       <slots_total>8</slots_total> 
    796       <arch>lx24-amd64</arch> 
    797     </Queue-List> 
    798     <Queue-List> 
    799       <name>chandra@a23</name> 
    800       <qtype>BIP</qtype> 
    801       <slots_used>0</slots_used> 
    802       <slots_resv>0</slots_resv> 
    803       <slots_total>8</slots_total> 
    804       <arch>lx24-amd64</arch> 
    805     </Queue-List> 
    806     <Queue-List> 
    807       <name>chandra@a24</name> 
    808       <qtype>BIP</qtype> 
    809       <slots_used>0</slots_used> 
    810       <slots_resv>0</slots_resv> 
    811       <slots_total>8</slots_total> 
    812       <arch>lx24-amd64</arch> 
    813     </Queue-List> 
    814     <Queue-List> 
    815       <name>chandra@a25</name> 
    816       <qtype>BIP</qtype> 
    817       <slots_used>0</slots_used> 
    818       <slots_resv>0</slots_resv> 
    819       <slots_total>8</slots_total> 
    820       <arch>lx24-amd64</arch> 
    821     </Queue-List> 
    822     <Queue-List> 
    823       <name>geo@c21</name> 
    824       <qtype>BIP</qtype> 
    825       <slots_used>0</slots_used> 
    826       <slots_resv>0</slots_resv> 
    827       <slots_total>4</slots_total> 
    828       <arch>lx24-amd64</arch> 
    829       <state>a</state> 
    830     </Queue-List> 
    831     <Queue-List> 
    832       <name>geo@c23</name> 
    833       <qtype>BIP</qtype> 
    834       <slots_used>0</slots_used> 
    835       <slots_resv>0</slots_resv> 
    836       <slots_total>4</slots_total> 
    837       <arch>lx24-amd64</arch> 
    838       <state>a</state> 
    839     </Queue-List> 
    840     <Queue-List> 
    841       <name>geo@e1</name> 
    842       <qtype>BIP</qtype> 
    843       <slots_used>0</slots_used> 
    844       <slots_resv>0</slots_resv> 
    845       <slots_total>4</slots_total> 
    846       <arch>lx24-amd64</arch> 
    847       <state>a</state> 
    848     </Queue-List> 
    849     <Queue-List> 
    850       <name>geo@e2</name> 
    851       <qtype>BIP</qtype> 
    852       <slots_used>0</slots_used> 
    853       <slots_resv>0</slots_resv> 
    854       <slots_total>4</slots_total> 
    855       <arch>lx24-amd64</arch> 
    856       <state>a</state> 
    857     </Queue-List> 
    858     <Queue-List> 
    859       <name>geo@e3</name> 
    860       <qtype>BIP</qtype> 
    861       <slots_used>0</slots_used> 
    862       <slots_resv>0</slots_resv> 
    863       <slots_total>4</slots_total> 
    864       <arch>lx24-amd64</arch> 
    865       <state>a</state> 
    866     </Queue-List> 
    867     <Queue-List> 
    868       <name>geo@e4</name> 
    869       <qtype>BIP</qtype> 
    870       <slots_used>0</slots_used> 
    871       <slots_resv>0</slots_resv> 
    872       <slots_total>4</slots_total> 
    873       <arch>lx24-amd64</arch> 
    874       <state>a</state> 
    875     </Queue-List> 
    876     <Queue-List> 
    877       <name>geo@e5</name> 
    878       <qtype>BIP</qtype> 
    879       <slots_used>0</slots_used> 
    880       <slots_resv>0</slots_resv> 
    881       <slots_total>4</slots_total> 
    882       <arch>lx24-amd64</arch> 
    883       <state>a</state> 
    884     </Queue-List> 
    885     <Queue-List> 
    886       <name>geo@e6</name> 
    887       <qtype>BIP</qtype> 
    888       <slots_used>0</slots_used> 
    889       <slots_resv>0</slots_resv> 
    890       <slots_total>4</slots_total> 
    891       <arch>lx24-amd64</arch> 
    892       <state>a</state> 
    893     </Queue-List> 
    894     <Queue-List> 
    895       <name>lsdyna@reid01</name> 
    896       <qtype>BIP</qtype> 
    897       <slots_used>0</slots_used> 
    898       <slots_resv>0</slots_resv> 
    899       <slots_total>4</slots_total> 
    900       <arch>lx24-amd64</arch> 
    901     </Queue-List> 
    902     <Queue-List> 
    903       <name>lsdyna@reid02</name> 
    904       <qtype>BIP</qtype> 
    905       <slots_used>0</slots_used> 
    906       <slots_resv>0</slots_resv> 
    907       <slots_total>4</slots_total> 
    908       <arch>lx24-amd64</arch> 
    909       <state>u</state> 
    910     </Queue-List> 
    911     <Queue-List> 
    912       <name>lsdyna@reid03</name> 
    913       <qtype>BIP</qtype> 
    914       <slots_used>0</slots_used> 
    915       <slots_resv>0</slots_resv> 
    916       <slots_total>4</slots_total> 
    917       <arch>lx24-amd64</arch> 
    918     </Queue-List> 
    919     <Queue-List> 
    920       <name>lsdyna@reid04</name> 
    921       <qtype>BIP</qtype> 
    922       <slots_used>0</slots_used> 
    923       <slots_resv>0</slots_resv> 
    924       <slots_total>4</slots_total> 
    925       <arch>lx24-amd64</arch> 
    926     </Queue-List> 
    927     <Queue-List> 
    928       <name>lsdyna@reid05</name> 
    929       <qtype>BIP</qtype> 
    930       <slots_used>0</slots_used> 
    931       <slots_resv>0</slots_resv> 
    932       <slots_total>4</slots_total> 
    933       <arch>lx24-amd64</arch> 
    934     </Queue-List> 
    935     <Queue-List> 
    936       <name>lsdyna@reid06</name> 
    937       <qtype>BIP</qtype> 
    938       <slots_used>0</slots_used> 
    939       <slots_resv>0</slots_resv> 
    940       <slots_total>4</slots_total> 
    941       <arch>lx24-amd64</arch> 
    942     </Queue-List> 
    943     <Queue-List> 
    944       <name>lsdyna@reid07</name> 
    945       <qtype>BIP</qtype> 
    946       <slots_used>0</slots_used> 
    947       <slots_resv>0</slots_resv> 
    948       <slots_total>4</slots_total> 
    949       <arch>lx24-amd64</arch> 
    950     </Queue-List> 
    951     <Queue-List> 
    952       <name>lsdyna@reid08</name> 
    953       <qtype>BIP</qtype> 
    954       <slots_used>0</slots_used> 
    955       <slots_resv>0</slots_resv> 
    956       <slots_total>4</slots_total> 
    957       <arch>lx24-amd64</arch> 
    958     </Queue-List> 
    959     <Queue-List> 
    960       <name>myrinet@c1</name> 
    961       <qtype>BIP</qtype> 
    962       <slots_used>0</slots_used> 
    963       <slots_resv>0</slots_resv> 
    964       <slots_total>1</slots_total> 
    965       <arch>lx24-amd64</arch> 
    966     </Queue-List> 
    967     <Queue-List> 
    968       <name>myrinet@c10</name> 
    969       <qtype>BIP</qtype> 
    970       <slots_used>0</slots_used> 
    971       <slots_resv>0</slots_resv> 
    972       <slots_total>1</slots_total> 
    973       <arch>lx24-amd64</arch> 
    974     </Queue-List> 
    975     <Queue-List> 
    976       <name>myrinet@c11</name> 
    977       <qtype>BIP</qtype> 
    978       <slots_used>0</slots_used> 
    979       <slots_resv>0</slots_resv> 
    980       <slots_total>1</slots_total> 
    981       <arch>lx24-amd64</arch> 
    982     </Queue-List> 
    983     <Queue-List> 
    984       <name>myrinet@c19</name> 
    985       <qtype>BIP</qtype> 
    986       <slots_used>0</slots_used> 
    987       <slots_resv>0</slots_resv> 
    988       <slots_total>1</slots_total> 
    989       <arch>lx24-amd64</arch> 
    990       <state>au</state> 
    991     </Queue-List> 
    992     <Queue-List> 
    993       <name>myrinet@c2</name> 
    994       <qtype>BIP</qtype> 
    995       <slots_used>0</slots_used> 
    996       <slots_resv>0</slots_resv> 
    997       <slots_total>1</slots_total> 
    998       <arch>lx24-amd64</arch> 
    999     </Queue-List> 
    1000     <Queue-List> 
    1001       <name>myrinet@c20</name> 
    1002       <qtype>BIP</qtype> 
    1003       <slots_used>0</slots_used> 
    1004       <slots_resv>0</slots_resv> 
    1005       <slots_total>1</slots_total> 
    1006       <arch>lx24-amd64</arch> 
    1007     </Queue-List> 
    1008     <Queue-List> 
    1009       <name>myrinet@c21</name> 
    1010       <qtype>BIP</qtype> 
    1011       <slots_used>0</slots_used> 
    1012       <slots_resv>0</slots_resv> 
    1013       <slots_total>1</slots_total> 
    1014       <arch>lx24-amd64</arch> 
    1015       <state>a</state> 
    1016     </Queue-List> 
    1017     <Queue-List> 
    1018       <name>myrinet@c22</name> 
    1019       <qtype>BIP</qtype> 
    1020       <slots_used>0</slots_used> 
    1021       <slots_resv>0</slots_resv> 
    1022       <slots_total>1</slots_total> 
    1023       <arch>lx24-amd64</arch> 
    1024     </Queue-List> 
    1025     <Queue-List> 
    1026       <name>myrinet@c23</name> 
    1027       <qtype>BIP</qtype> 
    1028       <slots_used>0</slots_used> 
    1029       <slots_resv>0</slots_resv> 
    1030       <slots_total>1</slots_total> 
    1031       <arch>lx24-amd64</arch> 
    1032       <state>a</state> 
    1033     </Queue-List> 
    1034     <Queue-List> 
    1035       <name>myrinet@c25</name> 
    1036       <qtype>BIP</qtype> 
    1037       <slots_used>0</slots_used> 
    1038       <slots_resv>0</slots_resv> 
    1039       <slots_total>1</slots_total> 
    1040       <arch>lx24-amd64</arch> 
    1041     </Queue-List> 
    1042     <Queue-List> 
    1043       <name>myrinet@c3</name> 
    1044       <qtype>BIP</qtype> 
    1045       <slots_used>0</slots_used> 
    1046       <slots_resv>0</slots_resv> 
    1047       <slots_total>1</slots_total> 
    1048       <arch>lx24-amd64</arch> 
    1049     </Queue-List> 
    1050     <Queue-List> 
    1051       <name>myrinet@c4</name> 
    1052       <qtype>BIP</qtype> 
    1053       <slots_used>0</slots_used> 
    1054       <slots_resv>0</slots_resv> 
    1055       <slots_total>1</slots_total> 
    1056       <arch>lx24-amd64</arch> 
    1057     </Queue-List> 
    1058     <Queue-List> 
    1059       <name>myrinet@c5</name> 
    1060       <qtype>BIP</qtype> 
    1061       <slots_used>0</slots_used> 
    1062       <slots_resv>0</slots_resv> 
    1063       <slots_total>1</slots_total> 
    1064       <arch>lx24-amd64</arch> 
    1065     </Queue-List> 
    1066     <Queue-List> 
    1067       <name>myrinet@c6</name> 
    1068       <qtype>BIP</qtype> 
    1069       <slots_used>0</slots_used> 
    1070       <slots_resv>0</slots_resv> 
    1071       <slots_total>1</slots_total> 
    1072       <state>au</state> 
    1073     </Queue-List> 
    1074     <Queue-List> 
    1075       <name>myrinet@c7</name> 
    1076       <qtype>BIP</qtype> 
    1077       <slots_used>0</slots_used> 
    1078       <slots_resv>0</slots_resv> 
    1079       <slots_total>1</slots_total> 
    1080       <arch>lx24-amd64</arch> 
    1081     </Queue-List> 
    1082     <Queue-List> 
    1083       <name>myrinet@c8</name> 
    1084       <qtype>BIP</qtype> 
    1085       <slots_used>0</slots_used> 
    1086       <slots_resv>0</slots_resv> 
    1087       <slots_total>1</slots_total> 
    1088       <arch>lx24-amd64</arch> 
    1089     </Queue-List> 
    1090     <Queue-List> 
    1091       <name>myrinet@c9</name> 
    1092       <qtype>BIP</qtype> 
    1093       <slots_used>0</slots_used> 
    1094       <slots_resv>0</slots_resv> 
    1095       <slots_total>1</slots_total> 
    1096       <arch>lx24-amd64</arch> 
    1097     </Queue-List> 
    1098     <Queue-List> 
    1099       <name>myrinet@e1</name> 
    1100       <qtype>BIP</qtype> 
    1101       <slots_used>0</slots_used> 
    1102       <slots_resv>0</slots_resv> 
    1103       <slots_total>1</slots_total> 
    1104       <arch>lx24-amd64</arch> 
    1105       <state>a</state> 
    1106     </Queue-List> 
    1107     <Queue-List> 
    1108       <name>myrinet@e2</name> 
    1109       <qtype>BIP</qtype> 
    1110       <slots_used>0</slots_used> 
    1111       <slots_resv>0</slots_resv> 
    1112       <slots_total>1</slots_total> 
    1113       <arch>lx24-amd64</arch> 
    1114     </Queue-List> 
    1115     <Queue-List> 
    1116       <name>myrinet@e3</name> 
    1117       <qtype>BIP</qtype> 
    1118       <slots_used>0</slots_used> 
    1119       <slots_resv>0</slots_resv> 
    1120       <slots_total>1</slots_total> 
    1121       <arch>lx24-amd64</arch> 
    1122     </Queue-List> 
    1123     <Queue-List> 
    1124       <name>myrinet@e4</name> 
    1125       <qtype>BIP</qtype> 
    1126       <slots_used>0</slots_used> 
    1127       <slots_resv>0</slots_resv> 
    1128       <slots_total>1</slots_total> 
    1129       <arch>lx24-amd64</arch> 
    1130     </Queue-List> 
    1131     <Queue-List> 
    1132       <name>myrinet@e5</name> 
    1133       <qtype>BIP</qtype> 
    1134       <slots_used>0</slots_used> 
    1135       <slots_resv>0</slots_resv> 
    1136       <slots_total>1</slots_total> 
    1137       <arch>lx24-amd64</arch> 
    1138     </Queue-List> 
    1139     <Queue-List> 
    1140       <name>myrinet@e6</name> 
    1141       <qtype>BIP</qtype> 
    1142       <slots_used>0</slots_used> 
    1143       <slots_resv>0</slots_resv> 
    1144       <slots_total>1</slots_total> 
    1145       <arch>lx24-amd64</arch> 
    1146       <state>a</state> 
    1147     </Queue-List> 
    1148     <Queue-List> 
    1149       <name>myrinet@f10</name> 
    1150       <qtype>BIP</qtype> 
    1151       <slots_used>0</slots_used> 
    1152       <slots_resv>0</slots_resv> 
    1153       <slots_total>1</slots_total> 
    1154       <arch>lx24-amd64</arch> 
    1155     </Queue-List> 
    1156     <Queue-List> 
    1157       <name>myrinet@f11</name> 
    1158       <qtype>BIP</qtype> 
    1159       <slots_used>0</slots_used> 
    1160       <slots_resv>0</slots_resv> 
    1161       <slots_total>1</slots_total> 
    1162       <arch>lx24-amd64</arch> 
    1163     </Queue-List> 
    1164     <Queue-List> 
    1165       <name>myrinet@f2</name> 
    1166       <qtype>BIP</qtype> 
    1167       <slots_used>0</slots_used> 
    1168       <slots_resv>0</slots_resv> 
    1169       <slots_total>1</slots_total> 
    1170       <arch>lx24-amd64</arch> 
    1171     </Queue-List> 
    1172     <Queue-List> 
    1173       <name>myrinet@f3</name> 
    1174       <qtype>BIP</qtype> 
    1175       <slots_used>0</slots_used> 
    1176       <slots_resv>0</slots_resv> 
    1177       <slots_total>1</slots_total> 
    1178       <arch>lx24-amd64</arch> 
    1179       <state>au</state> 
    1180     </Queue-List> 
    1181     <Queue-List> 
    1182       <name>myrinet@f4</name> 
    1183       <qtype>BIP</qtype> 
    1184       <slots_used>0</slots_used> 
    1185       <slots_resv>0</slots_resv> 
    1186       <slots_total>1</slots_total> 
    1187       <arch>lx24-amd64</arch> 
    1188     </Queue-List> 
    1189     <Queue-List> 
    1190       <name>myrinet@f5</name> 
    1191       <qtype>BIP</qtype> 
    1192       <slots_used>0</slots_used> 
    1193       <slots_resv>0</slots_resv> 
    1194       <slots_total>1</slots_total> 
    1195       <state>au</state> 
    1196     </Queue-List> 
    1197     <Queue-List> 
    1198       <name>myrinet@f6</name> 
    1199       <qtype>BIP</qtype> 
    1200       <slots_used>0</slots_used> 
    1201       <slots_resv>0</slots_resv> 
    1202       <slots_total>1</slots_total> 
    1203       <arch>lx24-amd64</arch> 
    1204     </Queue-List> 
    1205     <Queue-List> 
    1206       <name>myrinet@f7</name> 
    1207       <qtype>BIP</qtype> 
    1208       <slots_used>0</slots_used> 
    1209       <slots_resv>0</slots_resv> 
    1210       <slots_total>1</slots_total> 
    1211       <state>au</state> 
    1212     </Queue-List> 
    1213     <Queue-List> 
    1214       <name>myrinet@f8</name> 
    1215       <qtype>BIP</qtype> 
    1216       <slots_used>0</slots_used> 
    1217       <slots_resv>0</slots_resv> 
    1218       <slots_total>1</slots_total> 
    1219       <arch>lx24-amd64</arch> 
    1220     </Queue-List> 
    1221     <Queue-List> 
    1222       <name>myrinet@f9</name> 
    1223       <qtype>BIP</qtype> 
    1224       <slots_used>0</slots_used> 
    1225       <slots_resv>0</slots_resv> 
    1226       <slots_total>1</slots_total> 
    1227       <arch>lx24-amd64</arch> 
    1228     </Queue-List> 
    1229     <Queue-List> 
    1230       <name>pf24h@a1</name> 
    1231       <qtype>BIP</qtype> 
    1232       <slots_used>0</slots_used> 
    1233       <slots_resv>0</slots_resv> 
    1234       <slots_total>8</slots_total> 
    1235       <arch>lx24-amd64</arch> 
    1236       <state>u</state> 
    1237     </Queue-List> 
    1238     <Queue-List> 
    1239       <name>pf24h@a10</name> 
    1240       <qtype>BIP</qtype> 
    1241       <slots_used>0</slots_used> 
    1242       <slots_resv>0</slots_resv> 
    1243       <slots_total>8</slots_total> 
    1244       <arch>lx24-amd64</arch> 
    1245       <state>E</state> 
    1246     </Queue-List> 
    1247     <Queue-List> 
    1248       <name>pf24h@a11</name> 
    1249       <qtype>BIP</qtype> 
    1250       <slots_used>0</slots_used> 
    1251       <slots_resv>0</slots_resv> 
    1252       <slots_total>8</slots_total> 
    1253       <arch>lx24-amd64</arch> 
    1254       <state>E</state> 
    1255     </Queue-List> 
    1256     <Queue-List> 
    1257       <name>pf24h@a12</name> 
    1258       <qtype>BIP</qtype> 
    1259       <slots_used>8</slots_used> 
    1260       <slots_resv>0</slots_resv> 
    1261       <slots_total>8</slots_total> 
    1262       <arch>lx24-amd64</arch> 
    1263     </Queue-List> 
    1264     <Queue-List> 
    1265       <name>pf24h@a13</name> 
    1266       <qtype>BIP</qtype> 
    1267       <slots_used>0</slots_used> 
    1268       <slots_resv>0</slots_resv> 
    1269       <slots_total>8</slots_total> 
    1270       <arch>lx24-amd64</arch> 
    1271       <state>E</state> 
    1272     </Queue-List> 
    1273     <Queue-List> 
    1274       <name>pf24h@a14</name> 
    1275       <qtype>BIP</qtype> 
    1276       <slots_used>0</slots_used> 
    1277       <slots_resv>0</slots_resv> 
    1278       <slots_total>8</slots_total> 
    1279       <arch>lx24-amd64</arch> 
    1280       <state>E</state> 
    1281     </Queue-List> 
    1282     <Queue-List> 
    1283       <name>pf24h@a16</name> 
    1284       <qtype>BIP</qtype> 
    1285       <slots_used>8</slots_used> 
    1286       <slots_resv>0</slots_resv> 
    1287       <slots_total>8</slots_total> 
    1288       <arch>lx24-amd64</arch> 
    1289     </Queue-List> 
    1290     <Queue-List> 
    1291       <name>pf24h@a17</name> 
    1292       <qtype>BIP</qtype> 
    1293       <slots_used>8</slots_used> 
    1294       <slots_resv>0</slots_resv> 
    1295       <slots_total>8</slots_total> 
    1296       <arch>lx24-amd64</arch> 
    1297     </Queue-List> 
    1298     <Queue-List> 
    1299       <name>pf24h@a25</name> 
    1300       <qtype>BIP</qtype> 
    1301       <slots_used>0</slots_used> 
    1302       <slots_resv>0</slots_resv> 
    1303       <slots_total>8</slots_total> 
    1304       <arch>lx24-amd64</arch> 
    1305     </Queue-List> 
    1306     <Queue-List> 
    1307       <name>pf24h@a4</name> 
    1308       <qtype>BIP</qtype> 
    1309       <slots_used>8</slots_used> 
    1310       <slots_resv>0</slots_resv> 
    1311       <slots_total>8</slots_total> 
    1312       <arch>lx24-amd64</arch> 
    1313     </Queue-List> 
    1314     <Queue-List> 
    1315       <name>pf24h@a5</name> 
    1316       <qtype>BIP</qtype> 
    1317       <slots_used>8</slots_used> 
    1318       <slots_resv>0</slots_resv> 
    1319       <slots_total>8</slots_total> 
    1320       <arch>lx24-amd64</arch> 
    1321     </Queue-List> 
    1322     <Queue-List> 
    1323       <name>pf24h@a6</name> 
    1324       <qtype>BIP</qtype> 
    1325       <slots_used>0</slots_used> 
    1326       <slots_resv>0</slots_resv> 
    1327       <slots_total>8</slots_total> 
    1328       <arch>lx24-amd64</arch> 
    1329       <state>E</state> 
    1330     </Queue-List> 
    1331     <Queue-List> 
    1332       <name>pf24h@a7</name> 
    1333       <qtype>BIP</qtype> 
    1334       <slots_used>0</slots_used> 
    1335       <slots_resv>0</slots_resv> 
    1336       <slots_total>8</slots_total> 
    1337       <arch>lx24-amd64</arch> 
    1338       <state>E</state> 
    1339     </Queue-List> 
    1340     <Queue-List> 
    1341       <name>pf24h@a8</name> 
    1342       <qtype>BIP</qtype> 
    1343       <slots_used>0</slots_used> 
    1344       <slots_resv>0</slots_resv> 
    1345       <slots_total>8</slots_total> 
    1346       <arch>lx24-amd64</arch> 
    1347       <state>E</state> 
    1348     </Queue-List> 
    1349     <Queue-List> 
    1350       <name>pf24h@a9</name> 
    1351       <qtype>BIP</qtype> 
    1352       <slots_used>0</slots_used> 
    1353       <slots_resv>0</slots_resv> 
    1354       <slots_total>8</slots_total> 
    1355       <arch>lx24-amd64</arch> 
    1356       <state>E</state> 
    1357     </Queue-List> 
    1358     <Queue-List> 
    1359       <name>pf24h@b1</name> 
    1360       <qtype>BIP</qtype> 
    1361       <slots_used>8</slots_used> 
    1362       <slots_resv>0</slots_resv> 
    1363       <slots_total>8</slots_total> 
    1364       <arch>lx24-amd64</arch> 
    1365     </Queue-List> 
    1366     <Queue-List> 
    1367       <name>pf24h@b10</name> 
    1368       <qtype>BIP</qtype> 
    1369       <slots_used>0</slots_used> 
    1370       <slots_resv>0</slots_resv> 
    1371       <slots_total>8</slots_total> 
    1372       <arch>lx24-amd64</arch> 
    1373     </Queue-List> 
    1374     <Queue-List> 
    1375       <name>pf24h@b11</name> 
    1376       <qtype>BIP</qtype> 
    1377       <slots_used>0</slots_used> 
    1378       <slots_resv>0</slots_resv> 
    1379       <slots_total>8</slots_total> 
    1380       <arch>lx24-amd64</arch> 
    1381     </Queue-List> 
    1382     <Queue-List> 
    1383       <name>pf24h@b12</name> 
    1384       <qtype>BIP</qtype> 
    1385       <slots_used>0</slots_used> 
    1386       <slots_resv>0</slots_resv> 
    1387       <slots_total>8</slots_total> 
    1388       <arch>lx24-amd64</arch> 
    1389     </Queue-List> 
    1390     <Queue-List> 
    1391       <name>pf24h@b13</name> 
    1392       <qtype>BIP</qtype> 
    1393       <slots_used>8</slots_used> 
    1394       <slots_resv>0</slots_resv> 
    1395       <slots_total>8</slots_total> 
    1396       <arch>lx24-amd64</arch> 
    1397     </Queue-List> 
    1398     <Queue-List> 
    1399       <name>pf24h@b14</name> 
    1400       <qtype>BIP</qtype> 
    1401       <slots_used>8</slots_used> 
    1402       <slots_resv>0</slots_resv> 
    1403       <slots_total>8</slots_total> 
    1404       <arch>lx24-amd64</arch> 
    1405     </Queue-List> 
    1406     <Queue-List> 
    1407       <name>pf24h@b15</name> 
    1408       <qtype>BIP</qtype> 
    1409       <slots_used>0</slots_used> 
    1410       <slots_resv>0</slots_resv> 
    1411       <slots_total>8</slots_total> 
    1412       <arch>lx24-amd64</arch> 
    1413     </Queue-List> 
    1414     <Queue-List> 
    1415       <name>pf24h@b16</name> 
    1416       <qtype>BIP</qtype> 
    1417       <slots_used>0</slots_used> 
    1418       <slots_resv>0</slots_resv> 
    1419       <slots_total>8</slots_total> 
    1420       <arch>lx24-amd64</arch> 
    1421     </Queue-List> 
    1422     <Queue-List> 
    1423       <name>pf24h@b17</name> 
    1424       <qtype>BIP</qtype> 
    1425       <slots_used>0</slots_used> 
    1426       <slots_resv>0</slots_resv> 
    1427       <slots_total>8</slots_total> 
    1428       <arch>lx24-amd64</arch> 
    1429     </Queue-List> 
    1430     <Queue-List> 
    1431       <name>pf24h@b18</name> 
    1432       <qtype>BIP</qtype> 
    1433       <slots_used>0</slots_used> 
    1434       <slots_resv>0</slots_resv> 
    1435       <slots_total>8</slots_total> 
    1436       <arch>lx24-amd64</arch> 
    1437     </Queue-List> 
    1438     <Queue-List> 
    1439       <name>pf24h@b19</name> 
    1440       <qtype>BIP</qtype> 
    1441       <slots_used>8</slots_used> 
    1442       <slots_resv>0</slots_resv> 
    1443       <slots_total>8</slots_total> 
    1444       <arch>lx24-amd64</arch> 
    1445     </Queue-List> 
    1446     <Queue-List> 
    1447       <name>pf24h@b2</name> 
    1448       <qtype>BIP</qtype> 
    1449       <slots_used>8</slots_used> 
    1450       <slots_resv>0</slots_resv> 
    1451       <slots_total>8</slots_total> 
    1452       <arch>lx24-amd64</arch> 
    1453     </Queue-List> 
    1454     <Queue-List> 
    1455       <name>pf24h@b20</name> 
    1456       <qtype>BIP</qtype> 
    1457       <slots_used>0</slots_used> 
    1458       <slots_resv>0</slots_resv> 
    1459       <slots_total>8</slots_total> 
    1460       <arch>lx24-amd64</arch> 
    1461     </Queue-List> 
    1462     <Queue-List> 
    1463       <name>pf24h@b21</name> 
    1464       <qtype>BIP</qtype> 
    1465       <slots_used>0</slots_used> 
    1466       <slots_resv>0</slots_resv> 
    1467       <slots_total>8</slots_total> 
    1468       <arch>lx24-amd64</arch> 
    1469     </Queue-List> 
    1470     <Queue-List> 
    1471       <name>pf24h@b22</name> 
    1472       <qtype>BIP</qtype> 
    1473       <slots_used>0</slots_used> 
    1474       <slots_resv>0</slots_resv> 
    1475       <slots_total>8</slots_total> 
    1476       <arch>lx24-amd64</arch> 
    1477     </Queue-List> 
    1478     <Queue-List> 
    1479       <name>pf24h@b23</name> 
    1480       <qtype>BIP</qtype> 
    1481       <slots_used>0</slots_used> 
    1482       <slots_resv>0</slots_resv> 
    1483       <slots_total>8</slots_total> 
    1484       <arch>lx24-amd64</arch> 
    1485     </Queue-List> 
    1486     <Queue-List> 
    1487       <name>pf24h@b24</name> 
    1488       <qtype>BIP</qtype> 
    1489       <slots_used>0</slots_used> 
    1490       <slots_resv>0</slots_resv> 
    1491       <slots_total>8</slots_total> 
    1492       <arch>lx24-amd64</arch> 
    1493     </Queue-List> 
    1494     <Queue-List> 
    1495       <name>pf24h@b3</name> 
    1496       <qtype>BIP</qtype> 
    1497       <slots_used>0</slots_used> 
    1498       <slots_resv>0</slots_resv> 
    1499       <slots_total>8</slots_total> 
    1500       <arch>lx24-amd64</arch> 
    1501     </Queue-List> 
    1502     <Queue-List> 
    1503       <name>pf24h@b4</name> 
    1504       <qtype>BIP</qtype> 
    1505       <slots_used>8</slots_used> 
    1506       <slots_resv>0</slots_resv> 
    1507       <slots_total>8</slots_total> 
    1508       <arch>lx24-amd64</arch> 
    1509     </Queue-List> 
    1510     <Queue-List> 
    1511       <name>pf24h@b5</name> 
    1512       <qtype>BIP</qtype> 
    1513       <slots_used>8</slots_used> 
    1514       <slots_resv>0</slots_resv> 
    1515       <slots_total>8</slots_total> 
    1516       <arch>lx24-amd64</arch> 
    1517     </Queue-List> 
    1518     <Queue-List> 
    1519       <name>pf24h@b6</name> 
    1520       <qtype>BIP</qtype> 
    1521       <slots_used>0</slots_used> 
    1522       <slots_resv>0</slots_resv> 
    1523       <slots_total>8</slots_total> 
    1524       <arch>lx24-amd64</arch> 
    1525     </Queue-List> 
    1526     <Queue-List> 
    1527       <name>pf24h@b7</name> 
    1528       <qtype>BIP</qtype> 
    1529       <slots_used>0</slots_used> 
    1530       <slots_resv>0</slots_resv> 
    1531       <slots_total>8</slots_total> 
    1532       <arch>lx24-amd64</arch> 
    1533     </Queue-List> 
    1534     <Queue-List> 
    1535       <name>pf24h@b8</name> 
    1536       <qtype>BIP</qtype> 
    1537       <slots_used>0</slots_used> 
    1538       <slots_resv>0</slots_resv> 
    1539       <slots_total>8</slots_total> 
    1540       <arch>lx24-amd64</arch> 
    1541     </Queue-List> 
    1542     <Queue-List> 
    1543       <name>pf24h@b9</name> 
    1544       <qtype>BIP</qtype> 
    1545       <slots_used>0</slots_used> 
    1546       <slots_resv>0</slots_resv> 
    1547       <slots_total>8</slots_total> 
    1548       <arch>lx24-amd64</arch> 
    1549     </Queue-List> 
    1550     <Queue-List> 
    1551       <name>schorr_a@a1</name> 
    1552       <qtype>BIP</qtype> 
    1553       <slots_used>0</slots_used> 
    1554       <slots_resv>0</slots_resv> 
    1555       <slots_total>8</slots_total> 
    1556       <arch>lx24-amd64</arch> 
    1557       <state>u</state> 
    1558     </Queue-List> 
    1559     <Queue-List> 
    1560       <name>schorr_a@a10</name> 
    1561       <qtype>BIP</qtype> 
    1562       <slots_used>0</slots_used> 
    1563       <slots_resv>0</slots_resv> 
    1564       <slots_total>8</slots_total> 
    1565       <arch>lx24-amd64</arch> 
    1566     </Queue-List> 
    1567     <Queue-List> 
    1568       <name>schorr_a@a11</name> 
    1569       <qtype>BIP</qtype> 
    1570       <slots_used>0</slots_used> 
    1571       <slots_resv>0</slots_resv> 
    1572       <slots_total>8</slots_total> 
    1573       <arch>lx24-amd64</arch> 
    1574     </Queue-List> 
    1575     <Queue-List> 
    1576       <name>schorr_a@a12</name> 
    1577       <qtype>BIP</qtype> 
    1578       <slots_used>0</slots_used> 
    1579       <slots_resv>0</slots_resv> 
    1580       <slots_total>8</slots_total> 
    1581       <arch>lx24-amd64</arch> 
    1582     </Queue-List> 
    1583     <Queue-List> 
    1584       <name>schorr_a@a13</name> 
    1585       <qtype>BIP</qtype> 
    1586       <slots_used>0</slots_used> 
    1587       <slots_resv>0</slots_resv> 
    1588       <slots_total>8</slots_total> 
    1589       <arch>lx24-amd64</arch> 
    1590     </Queue-List> 
    1591     <Queue-List> 
    1592       <name>schorr_a@a14</name> 
    1593       <qtype>BIP</qtype> 
    1594       <slots_used>0</slots_used> 
    1595       <slots_resv>0</slots_resv> 
    1596       <slots_total>8</slots_total> 
    1597       <arch>lx24-amd64</arch> 
    1598     </Queue-List> 
    1599     <Queue-List> 
    1600       <name>schorr_a@a16</name> 
    1601       <qtype>BIP</qtype> 
    1602       <slots_used>0</slots_used> 
    1603       <slots_resv>0</slots_resv> 
    1604       <slots_total>8</slots_total> 
    1605       <arch>lx24-amd64</arch> 
    1606     </Queue-List> 
    1607     <Queue-List> 
    1608       <name>schorr_a@a17</name> 
    1609       <qtype>BIP</qtype> 
    1610       <slots_used>0</slots_used> 
    1611       <slots_resv>0</slots_resv> 
    1612       <slots_total>8</slots_total> 
    1613       <arch>lx24-amd64</arch> 
    1614     </Queue-List> 
    1615     <Queue-List> 
    1616       <name>schorr_a@a4</name> 
    1617       <qtype>BIP</qtype> 
    1618       <slots_used>0</slots_used> 
    1619       <slots_resv>0</slots_resv> 
    1620       <slots_total>8</slots_total> 
    1621       <arch>lx24-amd64</arch> 
    1622     </Queue-List> 
    1623     <Queue-List> 
    1624       <name>schorr_a@a5</name> 
    1625       <qtype>BIP</qtype> 
    1626       <slots_used>0</slots_used> 
    1627       <slots_resv>0</slots_resv> 
    1628       <slots_total>8</slots_total> 
    1629       <arch>lx24-amd64</arch> 
    1630     </Queue-List> 
    1631     <Queue-List> 
    1632       <name>schorr_a@a6</name> 
    1633       <qtype>BIP</qtype> 
    1634       <slots_used>0</slots_used> 
    1635       <slots_resv>0</slots_resv> 
    1636       <slots_total>8</slots_total> 
    1637       <arch>lx24-amd64</arch> 
    1638     </Queue-List> 
    1639     <Queue-List> 
    1640       <name>schorr_a@a7</name> 
    1641       <qtype>BIP</qtype> 
    1642       <slots_used>0</slots_used> 
    1643       <slots_resv>0</slots_resv> 
    1644       <slots_total>8</slots_total> 
    1645       <arch>lx24-amd64</arch> 
    1646     </Queue-List> 
    1647     <Queue-List> 
    1648       <name>schorr_a@a8</name> 
    1649       <qtype>BIP</qtype> 
    1650       <slots_used>0</slots_used> 
    1651       <slots_resv>0</slots_resv> 
    1652       <slots_total>8</slots_total> 
    1653       <arch>lx24-amd64</arch> 
    1654     </Queue-List> 
    1655     <Queue-List> 
    1656       <name>schorr_a@a9</name> 
    1657       <qtype>BIP</qtype> 
    1658       <slots_used>0</slots_used> 
    1659       <slots_resv>0</slots_resv> 
    1660       <slots_total>8</slots_total> 
     1469      <name>smp@smp02</name> 
     1470      <qtype>BIP</qtype> 
     1471      <slots_used>16</slots_used> 
     1472      <slots_resv>0</slots_resv> 
     1473      <slots_total>16</slots_total> 
     1474      <arch>lx24-amd64</arch> 
     1475    </Queue-List> 
     1476    <Queue-List> 
     1477      <name>smp@smp03</name> 
     1478      <qtype>BIP</qtype> 
     1479      <slots_used>1</slots_used> 
     1480      <slots_resv>0</slots_resv> 
     1481      <slots_total>16</slots_total> 
    16611482      <arch>lx24-amd64</arch> 
    16621483    </Queue-List> 
  • gip/trunk/test/command_output/qstat_xml

    r2860 r3561  
    44  </queue_info> 
    55  <job_info> 
     6    <job_list state="running"> 
     7      <JB_job_number>19380</JB_job_number> 
     8      <JAT_prio>0.50250</JAT_prio> 
     9      <JB_name>cr2</JB_name> 
     10      <JB_owner>xczeng</JB_owner> 
     11      <state>r</state> 
     12      <JAT_start_time>2009-10-13T14:00:37</JAT_start_time> 
     13      <queue_name>pf240h@c09</queue_name> 
     14      <slots>1</slots> 
     15    </job_list> 
     16    <job_list state="running"> 
     17      <JB_job_number>19384</JB_job_number> 
     18      <JAT_prio>0.50250</JAT_prio> 
     19      <JB_name>cr3</JB_name> 
     20      <JB_owner>xczeng</JB_owner> 
     21      <state>r</state> 
     22      <JAT_start_time>2009-10-13T14:05:07</JAT_start_time> 
     23      <queue_name>pf240h@c12</queue_name> 
     24      <slots>1</slots> 
     25    </job_list> 
     26    <job_list state="running"> 
     27      <JB_job_number>19385</JB_job_number> 
     28      <JAT_prio>0.50250</JAT_prio> 
     29      <JB_name>cr4</JB_name> 
     30      <JB_owner>xczeng</JB_owner> 
     31      <state>r</state> 
     32      <JAT_start_time>2009-10-13T14:06:07</JAT_start_time> 
     33      <queue_name>pf240h@c10</queue_name> 
     34      <slots>1</slots> 
     35    </job_list> 
     36    <job_list state="running"> 
     37      <JB_job_number>19386</JB_job_number> 
     38      <JAT_prio>0.50250</JAT_prio> 
     39      <JB_name>cr5</JB_name> 
     40      <JB_owner>xczeng</JB_owner> 
     41      <state>r</state> 
     42      <JAT_start_time>2009-10-13T14:07:37</JAT_start_time> 
     43      <queue_name>pf240h@c14</queue_name> 
     44      <slots>1</slots> 
     45    </job_list> 
     46    <job_list state="running"> 
     47      <JB_job_number>19645</JB_job_number> 
     48      <JAT_prio>0.61000</JAT_prio> 
     49      <JB_name>wrf</JB_name> 
     50      <JB_owner>rachim</JB_owner> 
     51      <state>r</state> 
     52      <JAT_start_time>2009-10-18T18:08:08</JAT_start_time> 
     53      <queue_name>geo_ib@a17</queue_name> 
     54      <slots>16</slots> 
     55    </job_list> 
     56    <job_list state="running"> 
     57      <JB_job_number>19835</JB_job_number> 
     58      <JAT_prio>0.51000</JAT_prio> 
     59      <JB_name>progs</JB_name> 
     60      <JB_owner>shantk</JB_owner> 
     61      <state>r</state> 
     62      <JAT_start_time>2009-10-21T13:57:22</JAT_start_time> 
     63      <queue_name>smp@smp03</queue_name> 
     64      <slots>1</slots> 
     65    </job_list> 
     66    <job_list state="running"> 
     67      <JB_job_number>19899</JB_job_number> 
     68      <JAT_prio>0.51000</JAT_prio> 
     69      <JB_name>jobname</JB_name> 
     70      <JB_owner>rsabiria</JB_owner> 
     71      <state>r</state> 
     72      <JAT_start_time>2009-10-22T23:24:52</JAT_start_time> 
     73      <queue_name>pf24h@a05</queue_name> 
     74      <slots>1</slots> 
     75    </job_list> 
     76    <job_list state="running"> 
     77      <JB_job_number>19901</JB_job_number> 
     78      <JAT_prio>0.61000</JAT_prio> 
     79      <JB_name>GEOS-chem</JB_name> 
     80      <JB_owner>jwang7</JB_owner> 
     81      <state>r</state> 
     82      <JAT_start_time>2009-10-23T10:59:20</JAT_start_time> 
     83      <queue_name>smp@smp02</queue_name> 
     84      <slots>16</slots> 
     85    </job_list> 
    686    <job_list state="pending"> 
    787      <JB_job_number>1136</JB_job_number> 
  • gip/trunk/test/test_configs/pf-sge.conf

    r2860 r3561  
    99 
    1010[sge] 
    11 queue_exclude=all.q,chandra,geo,myrinet,lsdyna,waiting 
     11queue_exclude=all.q,chandra,geo,myrinet,lsdyna,waiting,ib_a,ib_b,lsdyna-ib_a,lsdyna-ib_b,pf240h_ib,reid_ib,schorr_a,hod,reid-mm 
    1212