HomeSort by: relevance | last modified time | path
    Searched refs:rpm (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/external/bsd/tre/dist/utils/
build-rpm.sh 3 # Helper script to build the RPM packages. Just run this from the root
5 # $ ./utils/build-rpm.sh
9 # Create the RPM build environment.
10 rm -rf rpm/dist
11 for dir in rpm rpm/RPMS rpm/SRPMS rpm/BUILD rpm/SOURCES rpm/dist; d
    [all...]
build-release.sh 15 ssh hemuli "cd build-tmp; rm -rf $dir; tar xzf $pkg; cd $dir; ./utils/build-rpm.sh"
16 scp hemuli:build-tmp/$dir/\*.rpm dist
  /src/sys/external/bsd/drm2/dist/drm/i915/
intel_runtime_pm.h 98 assert_rpm_device_not_suspended(struct intel_runtime_pm *rpm)
100 WARN_ONCE(rpm->suspended,
105 __assert_rpm_raw_wakeref_held(struct intel_runtime_pm *rpm, int wakeref_count)
107 assert_rpm_device_not_suspended(rpm);
109 "RPM raw-wakeref not held\n");
113 __assert_rpm_wakelock_held(struct intel_runtime_pm *rpm, int wakeref_count)
115 __assert_rpm_raw_wakeref_held(rpm, wakeref_count);
117 "RPM wakelock ref not held during HW access\n");
121 assert_rpm_raw_wakeref_held(struct intel_runtime_pm *rpm)
123 __assert_rpm_raw_wakeref_held(rpm, atomic_read(&rpm->wakeref_count))
    [all...]
intel_runtime_pm.c 85 static void init_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
87 spin_lock_init(&rpm->debug.lock);
90 static void fini_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
92 spin_lock_fini(&rpm->debug.lock);
96 track_intel_runtime_pm_wakeref(struct intel_runtime_pm *rpm)
101 if (!rpm->available)
108 spin_lock_irqsave(&rpm->debug.lock, flags);
110 if (!rpm->debug.count)
111 rpm->debug.last_acquire = stack;
113 stacks = krealloc(rpm->debug.owners
    [all...]
intel_wakeref.c 21 wf->wakeref = intel_runtime_pm_get(wf->rpm);
28 intel_runtime_pm_put(wf->rpm, wakeref);
105 struct intel_runtime_pm *rpm,
109 wf->rpm = rpm;
157 intel_runtime_pm_put(wf->rpm, wakeref);
161 struct intel_runtime_pm *rpm)
167 wf->rpm = rpm;
181 assert_rpm_wakelock_held(wf->rpm);
    [all...]
intel_wakeref.h 46 struct intel_runtime_pm *rpm; member in struct:intel_wakeref
58 struct intel_runtime_pm *rpm,
61 #define intel_wakeref_init(wf, rpm, ops) do { \
64 __intel_wakeref_init((wf), (rpm), (ops), &__key); \
245 struct intel_runtime_pm *rpm; member in struct:intel_wakeref_auto
270 struct intel_runtime_pm *rpm);
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_rpm.c 40 struct rpm { struct
89 return __archive_read_register_bidder(a, NULL, "rpm",
142 struct rpm *rpm; local
145 self->name = "rpm";
147 rpm = calloc(1, sizeof(*rpm));
148 if (rpm == NULL) {
150 "Can't allocate data for rpm");
154 self->data = rpm;
170 struct rpm *rpm; local
287 struct rpm *rpm; local
    [all...]
  /src/usr.sbin/makefs/
ffs.h 53 int rpm; /* rpm */ member in struct:__anon8497
  /src/external/mit/xorg/bin/xedit/modules/progmodes/
Makefile 9 rpm.lsp sgml.lsp sh.lsp xconf.lsp xlog.lsp xrdb.lsp
  /src/sys/dev/i2c/
ibmhawkreg.h 48 uint16_t rpm[IBMHAWK_MAX_FAN]; member in struct:ibmhawk_response::__anon2590
51 #define ihr_fanrpm resp_fan.rpm
  /src/sbin/newfs/
extern.h 38 extern int rpm; /* revolutions/minute of drive */
  /src/sys/external/bsd/drm2/dist/drm/i915/gt/
selftest_reset.c 25 wakeref = intel_runtime_pm_get(gt->uncore->rpm);
36 intel_runtime_pm_put(gt->uncore->rpm, wakeref);
53 wakeref = intel_runtime_pm_get(gt->uncore->rpm);
60 intel_runtime_pm_put(gt->uncore->rpm, wakeref);
selftest_llc.c 24 wakeref = intel_runtime_pm_get(llc_to_gt(llc)->uncore->rpm);
73 intel_runtime_pm_put(llc_to_gt(llc)->uncore->rpm, wakeref);
intel_gt_pm.c 112 intel_wakeref_init(&gt->wakeref, gt->uncore->rpm, &wf_ops);
143 wakeref = intel_runtime_pm_get(gt->uncore->rpm);
173 intel_runtime_pm_put(gt->uncore->rpm, wakeref);
316 with_intel_runtime_pm(gt->uncore->rpm, wakeref) {
selftest_rc6.c 40 wakeref = intel_runtime_pm_get(gt->uncore->rpm);
74 intel_runtime_pm_put(gt->uncore->rpm, wakeref);
intel_engine_pm.c 288 struct intel_runtime_pm *rpm = engine->uncore->rpm; local
290 intel_wakeref_init(&engine->wakeref, rpm, &wf_ops);
debugfs_gt_pm.c 51 with_intel_runtime_pm(gt->uncore->rpm, wakeref)
233 with_intel_runtime_pm(gt->uncore->rpm, wakeref) {
254 wakeref = intel_runtime_pm_get(uncore->rpm);
464 intel_runtime_pm_put(uncore->rpm, wakeref);
494 wakeref = intel_runtime_pm_get(gt->uncore->rpm);
509 intel_runtime_pm_put(gt->uncore->rpm, wakeref);
  /src/sys/dev/isa/
smsc.c 296 * convert register value read from chip into rpm using:
298 * RPM = 60/(Count * 11.111us)
306 unsigned long rpm; local
311 rpm = (90000 * 60) / ((unsigned long) r);
312 return (int) rpm;
328 unsigned int rpm; local
343 rpm = (msb << 8) | lsb;
344 edata->value_cur = smsc_reg2rpm(rpm);
  /src/sys/arch/evbcf/include/
disklabel.h 116 u_short rpm; member in struct:cpu_disklabel
  /src/sys/arch/mvme68k/include/
disklabel.h 116 u_short rpm; member in struct:cpu_disklabel
  /src/sys/external/bsd/drm2/dist/drm/i915/gvt/
aperture_gm.c 196 struct intel_runtime_pm *rpm = &dev_priv->runtime_pm; local
200 intel_runtime_pm_get(rpm);
216 intel_runtime_pm_put_unchecked(rpm);
229 intel_runtime_pm_put_unchecked(rpm);
  /src/sys/arch/macppc/dev/
smu.c 298 const char *fans[] = { "fans", "rpm-fans", 0 };
323 if (strcmp(type, "fan-rpm-control") == 0)
704 smu_fan_set_rpm(void *cookie, int which, int rpm)
711 DPRINTF("%s: fan %s rpm %d\n", __func__, fan->location, rpm);
713 rpm = uimax(fan->min_rpm, rpm);
714 rpm = uimin(fan->max_rpm, rpm);
716 fan->wanted_rpm = rpm;
    [all...]
  /src/sys/dev/acpi/
asus_acpi.c 376 uint32_t rpm; local
380 if (asus_get_fan_speed(sc, &rpm)) {
381 edata->value_cur = rpm;
  /src/sys/dev/ic/
apple_smc_fan.c 376 uint16_t rpm; local
403 /* Read the fan sensor value, in rpm. */
404 error = apple_smc_read_key_2(sc->sc_smc, key, &rpm);
414 edata->value_cur = rpm;
  /src/distrib/utils/embedded/conf/
evbarm.conf 52 rpm: 3600

Completed in 40 milliseconds

1 2 3