newbus 37 drivers/pci/hotplug/ibmphp_res.c struct bus_node *newbus; newbus 44 drivers/pci/hotplug/ibmphp_res.c newbus = kzalloc(sizeof(struct bus_node), GFP_KERNEL); newbus 45 drivers/pci/hotplug/ibmphp_res.c if (!newbus) newbus 49 drivers/pci/hotplug/ibmphp_res.c newbus->busno = busno; newbus 51 drivers/pci/hotplug/ibmphp_res.c newbus->busno = curr->bus_num; newbus 52 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 53 drivers/pci/hotplug/ibmphp_res.c return newbus; newbus 79 drivers/pci/hotplug/ibmphp_res.c struct bus_node *newbus; newbus 84 drivers/pci/hotplug/ibmphp_res.c newbus = kzalloc(sizeof(struct bus_node), GFP_KERNEL); newbus 85 drivers/pci/hotplug/ibmphp_res.c if (!newbus) newbus 88 drivers/pci/hotplug/ibmphp_res.c newbus->busno = curr->bus_num; newbus 90 drivers/pci/hotplug/ibmphp_res.c newbus = *new_bus; newbus 93 drivers/pci/hotplug/ibmphp_res.c num_ranges = newbus->noMemRanges; newbus 96 drivers/pci/hotplug/ibmphp_res.c num_ranges = newbus->noPFMemRanges; newbus 99 drivers/pci/hotplug/ibmphp_res.c num_ranges = newbus->noIORanges; newbus 107 drivers/pci/hotplug/ibmphp_res.c kfree(newbus); newbus 117 drivers/pci/hotplug/ibmphp_res.c add_bus_range(flag, newrange, newbus); newbus 118 drivers/pci/hotplug/ibmphp_res.c debug("%d resource Primary Bus inserted on bus %x [%x - %x]\n", flag, newbus->busno, newrange->start, newrange->end); newbus 123 drivers/pci/hotplug/ibmphp_res.c newbus->rangeMem = newrange; newbus 125 drivers/pci/hotplug/ibmphp_res.c newbus->noMemRanges = 1; newbus 127 drivers/pci/hotplug/ibmphp_res.c debug("First Memory Primary on bus %x, [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 128 drivers/pci/hotplug/ibmphp_res.c ++newbus->noMemRanges; newbus 129 drivers/pci/hotplug/ibmphp_res.c fix_resources(newbus); newbus 133 drivers/pci/hotplug/ibmphp_res.c newbus->rangeIO = newrange; newbus 135 drivers/pci/hotplug/ibmphp_res.c newbus->noIORanges = 1; newbus 137 drivers/pci/hotplug/ibmphp_res.c debug("First IO Primary on bus %x, [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 138 drivers/pci/hotplug/ibmphp_res.c ++newbus->noIORanges; newbus 139 drivers/pci/hotplug/ibmphp_res.c fix_resources(newbus); newbus 143 drivers/pci/hotplug/ibmphp_res.c newbus->rangePFMem = newrange; newbus 145 drivers/pci/hotplug/ibmphp_res.c newbus->noPFMemRanges = 1; newbus 147 drivers/pci/hotplug/ibmphp_res.c debug("1st PFMemory Primary on Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 148 drivers/pci/hotplug/ibmphp_res.c ++newbus->noPFMemRanges; newbus 149 drivers/pci/hotplug/ibmphp_res.c fix_resources(newbus); newbus 155 drivers/pci/hotplug/ibmphp_res.c *new_bus = newbus; newbus 184 drivers/pci/hotplug/ibmphp_res.c struct bus_node *newbus = NULL; newbus 206 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, MEM, 1); newbus 209 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 210 drivers/pci/hotplug/ibmphp_res.c debug("gbuses = NULL, Memory Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 220 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, MEM, 1); newbus 224 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 225 drivers/pci/hotplug/ibmphp_res.c debug("New Bus, Memory Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 232 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, PFMEM, 1); newbus 235 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 236 drivers/pci/hotplug/ibmphp_res.c debug("gbuses = NULL, PFMemory Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 246 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, PFMEM, 1); newbus 249 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 250 drivers/pci/hotplug/ibmphp_res.c debug("1st Bus, PFMemory Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 257 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, IO, 1); newbus 260 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 261 drivers/pci/hotplug/ibmphp_res.c debug("gbuses = NULL, IO Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 270 drivers/pci/hotplug/ibmphp_res.c rc = alloc_bus_range(&newbus, &newrange, curr, IO, 1); newbus 273 drivers/pci/hotplug/ibmphp_res.c list_add_tail(&newbus->bus_list, &gbuses); newbus 274 drivers/pci/hotplug/ibmphp_res.c debug("1st Bus, IO Primary Bus %x [%x - %x]\n", newbus->busno, newrange->start, newrange->end); newbus 298 drivers/pci/hotplug/ibmphp_res.c newbus = alloc_error_bus(curr, 0, 0); newbus 299 drivers/pci/hotplug/ibmphp_res.c if (!newbus) newbus 301 drivers/pci/hotplug/ibmphp_res.c newbus->firstMem = new_mem; newbus 302 drivers/pci/hotplug/ibmphp_res.c ++newbus->needMemUpdate; newbus 315 drivers/pci/hotplug/ibmphp_res.c newbus = alloc_error_bus(curr, 0, 0); newbus 316 drivers/pci/hotplug/ibmphp_res.c if (!newbus) newbus 318 drivers/pci/hotplug/ibmphp_res.c newbus->firstPFMem = new_pfmem; newbus 319 drivers/pci/hotplug/ibmphp_res.c ++newbus->needPFMemUpdate; newbus 339 drivers/pci/hotplug/ibmphp_res.c newbus = alloc_error_bus(curr, 0, 0); newbus 340 drivers/pci/hotplug/ibmphp_res.c if (!newbus) newbus 342 drivers/pci/hotplug/ibmphp_res.c newbus->firstIO = new_io; newbus 343 drivers/pci/hotplug/ibmphp_res.c ++newbus->needIOUpdate;