/linux-3.4.99/drivers/md/ |
D | dm-log-userspace-transfer.c | 85 struct receiving_pkg *pkg; in fill_pkg() local 97 list_for_each_entry(pkg, &receiving_list, list) { in fill_pkg() 98 if (rtn_seq != pkg->seq) in fill_pkg() 102 pkg->error = -msg->ack; in fill_pkg() 108 if (pkg->error != -EAGAIN) in fill_pkg() 109 *(pkg->data_size) = 0; in fill_pkg() 110 } else if (tfr->data_size > *(pkg->data_size)) { in fill_pkg() 113 tfr->data_size, *(pkg->data_size)); in fill_pkg() 115 *(pkg->data_size) = 0; in fill_pkg() 116 pkg->error = -ENOSPC; in fill_pkg() [all …]
|
D | dm-log-userspace-base.c | 599 } pkg; in userspace_get_resync_work() local 604 rdata_size = sizeof(pkg); in userspace_get_resync_work() 607 (char *)&pkg, &rdata_size); in userspace_get_resync_work() 609 *region = pkg.r; in userspace_get_resync_work() 610 return (r) ? r : (int)pkg.i; in userspace_get_resync_work() 627 } pkg; in userspace_set_region_sync() local 629 pkg.r = region; in userspace_set_region_sync() 630 pkg.i = (int64_t)in_sync; in userspace_set_region_sync() 633 (char *)&pkg, sizeof(pkg), in userspace_set_region_sync() 724 } pkg; in userspace_is_remote_recovering() local [all …]
|
/linux-3.4.99/tools/power/cpupower/utils/helpers/ |
D | topology.c | 41 unsigned int pkg; member 52 if (top1->pkg < top2->pkg) in __compare() 54 else if (top1->pkg > top2->pkg) in __compare() 85 cpu_top->core_info[cpu].pkg = in get_cpu_topology() 87 if ((int)cpu_top->core_info[cpu].pkg != -1 && in get_cpu_topology() 88 cpu_top->core_info[cpu].pkg > cpu_top->pkgs) in get_cpu_topology() 89 cpu_top->pkgs = cpu_top->core_info[cpu].pkg; in get_cpu_topology()
|
D | helpers.h | 105 int pkg; member
|
/linux-3.4.99/scripts/kconfig/ |
D | Makefile | 207 HOSTLOADLIBES_gconf = `pkg-config --libs gtk+-2.0 gmodule-2.0 libglade-2.0` 208 HOSTCFLAGS_gconf.o = `pkg-config --cflags gtk+-2.0 gmodule-2.0 libglade-2.0` \ 222 @set -e; echo " CHECK qt"; dir=""; pkg=""; \ 223 if ! pkg-config --exists QtCore 2> /dev/null; then \ 225 pkg-config --exists qt 2> /dev/null && pkg=qt; \ 226 pkg-config --exists qt-mt 2> /dev/null && pkg=qt-mt; \ 227 if [ -n "$$pkg" ]; then \ 228 cflags="\$$(shell pkg-config $$pkg --cflags)"; \ 229 libs="\$$(shell pkg-config $$pkg --libs)"; \ 230 moc="\$$(shell pkg-config $$pkg --variable=prefix)/bin/moc"; \ [all …]
|
/linux-3.4.99/tools/power/x86/turbostat/ |
D | turbostat.c | 93 int pkg; member 204 if (cnt->pkg) fprintf(stderr, "package: %d ", cnt->pkg); in dump_cnt() 254 fprintf(stderr, "%2d", p->pkg); in print_cnt() 647 if (((*list)->pkg > new->pkg) || in insert_counters() 648 (((*list)->pkg == new->pkg) && ((*list)->core > new->core)) || in insert_counters() 649 (((*list)->pkg == new->pkg) && ((*list)->core == new->core) && ((*list)->cpu > new->cpu))) { in insert_counters() 657 while (prev->next && (prev->next->pkg < new->pkg)) { in insert_counters() 663 while (prev->next && (prev->next->pkg == new->pkg) in insert_counters() 670 while (prev->next && (prev->next->pkg == new->pkg) in insert_counters() 683 void alloc_new_counters(int pkg, int core, int cpu) in alloc_new_counters() argument [all …]
|
/linux-3.4.99/scripts/package/ |
D | buildtar | 26 tar-pkg) 30 targz-pkg) 34 tarbz2-pkg) 38 tarxz-pkg)
|
D | Makefile | 38 rpm-pkg rpm: $(objtree)/kernel.spec FORCE 66 binrpm-pkg: $(objtree)/binkernel.spec FORCE 98 deb-pkg: FORCE 107 tar%pkg: FORCE 136 perf-%pkg: FORCE
|
/linux-3.4.99/drivers/gpu/drm/i915/ |
D | intel_acpi.c | 141 union acpi_object *pkg; in intel_dsm_platform_mux_info() local 163 pkg = (union acpi_object *)output.pointer; in intel_dsm_platform_mux_info() 165 if (pkg->type == ACPI_TYPE_PACKAGE) { in intel_dsm_platform_mux_info() 166 union acpi_object *connector_count = &pkg->package.elements[0]; in intel_dsm_platform_mux_info() 169 for (i = 1; i < pkg->package.count; i++) { in intel_dsm_platform_mux_info() 170 union acpi_object *obj = &pkg->package.elements[i]; in intel_dsm_platform_mux_info()
|
/linux-3.4.99/drivers/acpi/acpica/ |
D | utstate.c | 282 state->pkg.source_object = (union acpi_operand_object *)internal_object; in acpi_ut_create_pkg_state() 283 state->pkg.dest_object = external_object; in acpi_ut_create_pkg_state() 284 state->pkg.index = index; in acpi_ut_create_pkg_state() 285 state->pkg.num_packages = 1; in acpi_ut_create_pkg_state()
|
D | utmisc.c | 952 this_index = state->pkg.index; in acpi_ut_walk_package_tree() 954 state->pkg.source_object->package.elements[this_index]; in acpi_ut_walk_package_tree() 975 state->pkg.index++; in acpi_ut_walk_package_tree() 976 while (state->pkg.index >= in acpi_ut_walk_package_tree() 977 state->pkg.source_object->package.count) { in acpi_ut_walk_package_tree() 1003 state->pkg.index++; in acpi_ut_walk_package_tree() 1021 state->pkg. in acpi_ut_walk_package_tree()
|
D | utcopy.c | 260 this_index = state->pkg.index; in acpi_ut_copy_ielement_to_eelement() 262 &((union acpi_object *)(state->pkg.dest_object))->package. in acpi_ut_copy_ielement_to_eelement() 293 state->pkg.this_target_obj = target_object; in acpi_ut_copy_ielement_to_eelement() 835 this_index = state->pkg.index; in acpi_ut_copy_ielement_to_ielement() 837 &state->pkg.dest_object->package.elements[this_index]; in acpi_ut_copy_ielement_to_ielement() 886 state->pkg.this_target_obj = target_object; in acpi_ut_copy_ielement_to_ielement()
|
D | utobject.c | 608 state->pkg.this_target_obj = NULL; in acpi_ut_get_element_length()
|
/linux-3.4.99/drivers/i2c/busses/ |
D | i2c-scmi.c | 93 union acpi_object *pkg; in acpi_smbus_cmi_access() local 186 pkg = buffer.pointer; in acpi_smbus_cmi_access() 187 if (pkg && pkg->type == ACPI_TYPE_PACKAGE) in acpi_smbus_cmi_access() 188 obj = pkg->package.elements; in acpi_smbus_cmi_access() 225 obj = pkg->package.elements + 1; in acpi_smbus_cmi_access() 233 obj = pkg->package.elements + 2; in acpi_smbus_cmi_access()
|
/linux-3.4.99/drivers/bcma/ |
D | driver_chipcommon_pmu.c | 124 if (bus->chipinfo.pkg == 9 || bus->chipinfo.pkg == 11) in bcma_chipco_bcm4331_ext_pa_lines_ctl()
|
D | scan.c | 380 chipinfo->pkg = (tmp & BCMA_CC_ID_PKG) >> BCMA_CC_ID_PKG_SHIFT; in bcma_init_bus() 382 chipinfo->id, chipinfo->rev, chipinfo->pkg); in bcma_init_bus()
|
D | driver_mips.c | 34 dev->bus->chipinfo.pkg == 11 && in bcma_core_mips_bcm5357b0_quirk()
|
/linux-3.4.99/ |
D | .gitignore | 49 # Debian directory (make deb-pkg)
|
/linux-3.4.99/Documentation/kbuild/ |
D | kbuild.txt | 78 For the deb-pkg target, allows overriding the normal heuristics deployed by 79 deb-pkg. Normally deb-pkg attempts to guess the right architecture based on
|
/linux-3.4.99/drivers/net/wireless/b43/ |
D | bus.c | 118 dev->chip_pkg = core->bus->chipinfo.pkg; in b43_bus_dev_bcma_init()
|
/linux-3.4.99/drivers/staging/rts5139/ |
D | rts51x_chip.h | 826 #define CHECK_PKG(chip, pkg) ((chip)->package == (pkg)) argument
|
/linux-3.4.99/include/linux/bcma/ |
D | bcma.h | 26 u8 pkg; member
|
/linux-3.4.99/tools/power/cpupower/utils/idle_monitor/ |
D | cpupower-monitor.c | 148 printf("%4d|", cpu_top.core_info[cpu].pkg); in print_results()
|
/linux-3.4.99/drivers/staging/rts_pstor/ |
D | rtsx_chip.h | 928 #define CHECK_BARO_PKG(chip, pkg) ((chip)->baro_pkg == (pkg)) argument
|
/linux-3.4.99/drivers/staging/usbip/userspace/ |
D | README | 22 - libtool, automake >= 1.9, autoconf >= 2.5.0, pkg-config
|