search for: load_avg

Displaying 8 results from an estimated 8 matches for "load_avg".

Did you mean: load_all
2012 Sep 12
2
Deadlock in btrfs-cleaner, related to snapshot deletion
...[ 386.320008] .spread : 0.000000 [ 386.320011] .spread0 : -23453.744689 [ 386.320015] .nr_spread_over : 0 [ 386.320018] .nr_running : 1 [ 386.320020] .load : 1024 [ 386.320024] .load_avg : 0.000000 [ 386.320027] .load_period : 9.999999 [ 386.320030] .load_contrib : 0 [ 386.320033] .load_tg : 0 [ 386.320037] .se->exec_start : 386317.815742 [ 386.320040] .se->vruntime...
2012 Jul 31
2
Btrfs Intermittent ENOSPC Issues
I''ve been working on running down intermittent ENOSPC issues. I can only seem to replicate ENOSPC errors when running zlib compression. However, I have been seeing similar ENOSPC errors to a lesser extent when playing with the LZ4HC patches. I apologize for not following up on this sooner, but I had drifted away from using zlib, and didn''t notice there was still an issue. My
2003 Apr 18
0
[Fwd: Xinetd 2.3.10 Memory Leaks]
...t; > to DOS the services provided by xinetd if you could identify a machine > > that uses xinetd to reject connections. Xinetd provides a rich set of > > options for rejecting connections, this includes: tcp_wrappers, only_from, > > no_access, sensors, access_times, cps, load_avg, etc. > > > > It should also be noted that if you DO NOT have any statements in the > > xinetd.conf file that would cause xinetd to reject a connection, then you > > are free from this problem. > > > > > > SOLUTION > > -------- > >...
2017 Oct 18
2
Null deference panic in CentOS-6.5
...st = 0x0, skip = 0x0, nr_spread_over = 5, rq = 0xffff88013bc56840, on_list = 1, leaf_cfs_rq_list = { next = 0xffff881b03781690, prev = 0xffff882050d9ee90 }, tg = 0xffffffff81e25cc0 <init_task_group>, task_weight = 0, h_load = 1026, load_avg = 0, load_period = 0, load_stamp = 1, load_last = 0, load_unacc_exec_time = 3309310258875, load_contribution = 0, runtime_enabled = 0, runtime_expires = 0, runtime_remaining = 0, throttled_timestamp = 0, throttled = 0, throttle_count = 0,...
2012 Aug 01
7
[PATCH] Btrfs: barrier before waitqueue_active
We need an smb_mb() before waitqueue_active to avoid missing wakeups. Before Mitch was hitting a deadlock between the ordered flushers and the transaction commit because the ordered flushers were waiting for more refs and were never woken up, so those smp_mb()''s are the most important. Everything else I added for correctness sake and to avoid getting bitten by this again somewhere else.
2015 Mar 11
3
[PATCH] pmu/gk20a: PMU boot support.
...} + +int gk20a_pmu_load_update(struct nvkm_pmu *ppmu) +{ + struct nvkm_pmu_impl *impl = (void *)nv_oclass(ppmu); + struct pmu_desc *pmu = &impl->pmudata; + u16 _load = 0; + + pmu_copy_from_dmem(pmu, pmu->sample_buffer, (u8 *)&_load, 2, 0); + pmu->load_shadow = _load / 10; + pmu->load_avg = (((9*pmu->load_avg) + pmu->load_shadow) / 10); + + return 0; +} + +void gk20a_pmu_get_load_counters(struct nvkm_pmu *ppmu, u32 *busy_cycles, + u32 *total_cycles) +{ + /*todo if (!g->power_on || gk20a_busy(g->dev)) { + *busy_cycles = 0; + *total_cycles = 0; + return; + }*/ + +...
2015 Mar 11
0
[PATCH] pmu/gk20a: PMU boot support.
...truct nvkm_pmu_impl *impl = (void *)nv_oclass(ppmu); > + struct pmu_desc *pmu = &impl->pmudata; > + u16 _load = 0; > + > + pmu_copy_from_dmem(pmu, pmu->sample_buffer, (u8 *)&_load, 2, 0); > + pmu->load_shadow = _load / 10; > + pmu->load_avg = (((9*pmu->load_avg) + pmu->load_shadow) / 10); > + > + return 0; > +} > + > +void gk20a_pmu_get_load_counters(struct nvkm_pmu *ppmu, u32 *busy_cycles, > + u32 *total_cycles) > +{ > + /*todo if (!g->power_on || gk20a_busy(g-&gt...
2015 Mar 12
2
[PATCH] pmu/gk20a: PMU boot support.
...truct nvkm_pmu_impl *impl = (void *)nv_oclass(ppmu); > + struct pmu_desc *pmu = &impl->pmudata; > + u16 _load = 0; > + > + pmu_copy_from_dmem(pmu, pmu->sample_buffer, (u8 *)&_load, 2, 0); > + pmu->load_shadow = _load / 10; > + pmu->load_avg = (((9*pmu->load_avg) + pmu->load_shadow) / 10); > + > + return 0; > +} > + > +void gk20a_pmu_get_load_counters(struct nvkm_pmu *ppmu, u32 *busy_cycles, > + u32 *total_cycles) > +{ > + /*todo if (!g->power_on || gk20a_busy(g-&gt...