Phase 0 extended: A1' multi-window probes — cannot reproduce Wayland stutter

Two extended Wayland reps under increasingly aggressive
provocation conditions to find the stutter envelope referenced
in the campaign premise:

- a1prime_konsole_rep1: chromium-fourier + active konsole running
  `top -d 0.5` behind, both at fullscreen-stacked geometry.
- a1prime_tiled_rep1: chromium-fourier at 600x400 tile +
  konsole+top behind at fullscreen.

Both: drops_post_warmup=0, kwin %CPU median=0.00, perf zero
samples in composite/dmabuf/GL paths. Same floor result as
single-window A1.

KWin DBus scripting confirms the limitation: all top-level
windows are at fullscreen-equivalent geometry stacked, kwin's
z-order culls everything behind chrome from rendering. Even the
tiled rep didn't break the pattern.

Three interpretations: (A) predecessor's patches actually fixed
the original Wayland stutter on this workload (per
KWIN_PIVOT.md, plausible); (B) stutter conditions I haven't
matched (different content, time-of-session, load); (C) session-
state divergence. Cannot adjudicate from synthetic reps alone.

a1prime_findings.md surfaces four operator-decision options:
specific scenario from daily-driver, extended-use observation,
acceptance of (A) and matrix reframe, or continued probing.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-03 15:59:08 +00:00
parent 9a023e9264
commit 298431810e
27 changed files with 1848 additions and 0 deletions
@@ -0,0 +1,152 @@
# A1' multi-window probe — findings + open question for operator
**Date:** 2026-05-03 14:23 → 16:18 CEST.
**Goal:** provoke Wayland-side stutter under multi-window
conditions, so the matrix has a non-floor Wayland baseline for
the X11 cells to compare against.
**Outcome:** **could not provoke stutter** under any condition
tested in 5 reps. All show drops_post_warmup = 0 and kwin %CPU
median = 0.00 — same floor result as the single-window A1.
## Reps run
| Rep | Condition | drops_total | drops_post_warmup | frames_total | kwin %CPU median |
|---|---|---|---|---|---|
| `a1_rep1` | single-window chromium-fourier-kwin | 0 | 0 | 1685 | 0.00 |
| `a1_rep2` | single-window chromium-fourier-kwin | 0 | 0 | 1685 | 0.00 |
| `a1_rep3` | single-window chromium-fourier-kwin | 0 | 0 | 1686 | 0.00 |
| `a1prime_konsole_rep1` | chromium-fourier + active konsole+top behind, both fullscreen-stacked | 0 | 0 | 1687 | 0.00 |
| `a1prime_tiled_rep1` | chromium-fourier at 600×400 tile + konsole+top behind at fullscreen | 1 | 0 | 1682 | 0.00 |
## What I learned about Wayland's window state
Probed via a kwin script (`org.kde.KWin /Scripting`) that called
`workspace.windowList()` and printed each window's resourceClass +
caption + geometry + minimized/hidden state. During the
"multi-window with active konsole" rep, the window list was:
```
plasmashell || hidden=false geometry=0,0,1280×800 (desktop wallpaper)
plasmashell || hidden=true geometry=0,738,1280×62 (panel — auto-hidden)
kwin_wayland|| hidden=false geometry=0,0,1280×800 (kwin internal)
org.kde.konsole|~ : bash — Konsole | hidden=false geometry=0,0,1280×800
org.kde.konsole|~ : top — Konsole | hidden=false geometry=0,0,1280×800
```
Multiple top-level windows exist, all at **fullscreen-equivalent
geometry stacked on top of each other**. `hidden=false` reports
that none are minimized — but the kwin compositor's z-order
hides windows-behind-windows from rendering. Only the topmost
visible client (chrome, when it's launched) is being painted.
The active konsole's text scrolling never reaches kwin's
composite stage because the konsole is occluded by chrome.
The **tiled** rep tried to fix this: chrome at `600×400+350+150`,
konsole at fullscreen behind. Even there, `drops_post_warmup = 0`
and kwin %CPU = 0. Either the tiled chrome triggered some other
fast-path (maybe both planes engaged: chrome's NV12 to Plane 39,
konsole+desktop's RGB to Plane 45), or the konsole was *still*
mostly occluded by Plasma's desktop background painting between
its window decoration and the chrome viewport.
## perf reports across all 5 reps
Top symbols on kwin_wayland for the 5 reps:
| rep | top symbol(s) — % of (sparse) samples |
|---|---|
| a1_rep1 | `__pi_memcpy_generic` 97 % (single big memcpy in 39 samples) |
| a1_rep2 | `libz.so` 38 %, `call_filldir` 32 % |
| a1_rep3 | `dbus_message_unref` 39 %, `QUnixEventDispatcherQPA::processEvents` 37 %, `libz` 23 % |
| a1prime_konsole_rep1 | (similar shape — DBus + Qt event loop + libz) |
| a1prime_tiled_rep1 | (similar shape) |
**Zero samples in any composite/dmabuf-import/GL path** across
all 5 reps. Total cycle counts in the millions, not billions.
KWin was scheduled out for >99 % of every 70 s capture window.
## Two interpretations
**(A) The predecessor's patches (kwin-fourier 6.6.4-3 +
qt6-base-fourier 6.11.0-3 + chromium-fourier 149) actually fixed
the Wayland-stutter problem the campaign is named after.** The
predecessor's `KWIN_PIVOT.md` documents exactly this success on
2026-04-28: "Three patches landed on ohm in sequence ... Together
they produce smooth 1080p30 H.264 playback under KDE Plasma 6.6.4
Wayland on the box where stock chromium previously stalled in 3
seconds." The drops the predecessor measured later
(`kwin_timing_nodebug_rep[1-3]`: 14, 28, 42 drops_post_warmup) may
have been residual variance that has since settled out, or
captured during a transient state.
**(B) I haven't found the right conditions.** The user's
operating premise was that Wayland stutter is observable in their
daily-driver use. My 70s synthetic reps haven't reproduced what
the user has observed. Possibilities:
- Different content (YouTube, not local file; specific codecs)
- Different decode path (libva engaging vs not)
- Time-of-session (cumulative state after hours of use)
- System concurrency (other apps doing real work)
- Power state (battery vs charging, governor transitions)
- Page-specific behavior (sites that engage HDR, advertising,
WebRTC, etc.)
I cannot tell from synthetic reps alone whether (A) or (B) holds.
## Question for operator
To honor the campaign idea ("stutterless playback - possible with
X11? proven impossible with Wayland") without circumventing it
into a different question, I need a decisive scenario from your
daily-driver experience. Options ordered by my preference:
1. **A specific URL or video file + viewer + duration** that you
personally observe stuttering under Wayland on this PineTab2.
I'll replicate that exact scenario across the matrix cells.
E.g.: "play https://www.youtube.com/watch?v=… in Brave
fullscreen for 2 minutes, by minute 1 you'll see drops."
2. **An extended-use observation protocol.** Run a passive
monitor daemon (logs frame-drops, kwin-CPU events,
page-faults) for an hour during your normal Wayland use; then
the same hour under X11. Compare. Less synthetic, more honest
about what "your daily-driver experience" actually involves.
3. **Confirmation of (A).** If you accept that the kwin-fourier
patches fixed the original Wayland-stutter problem on the
24fps test page, the campaign's premise on this specific
workload is no longer valid and the matrix should reframe
around either a *harder* workload (1080p60, 4K, network video)
where stutter still happens, OR around a different question
(latency, power, daily-driver-quality-of-life) where X11 vs
Wayland may still differ even when both deliver clean
playback.
4. **Continue probing.** I haven't yet tested: stock Brave 147
(script support gap — would need a small wrapper),
Firefox 150 (no script support at all), longer captures
(e.g. 10 min instead of 70 s), thermal-stressed conditions
(run yes > /dev/null on three cores in parallel),
battery-drain mode (if PineTab2's governor changes when
unplugged). These extend the search space but risk becoming
data-shopping if pursued without a specific operator-observed
condition to match.
The honest report is: under conditions I can synthesize from SSH
in a freshly-autologin'd Plasma Wayland session on this hardware
right now, **Wayland is delivering stutterless playback** on
brave_drops_test.html. Anything I'd do beyond this without
operator guidance risks tuning conditions until drops appear,
which is exactly the data-shopping the campaign-contained-data
discipline guards against.
## File map
```
a1prime_konsole_rep1/ — chrome + active konsole+top behind, both fullscreen-stacked
a1prime_tiled_rep1/ — chrome at 600x400, konsole+top behind at fullscreen
a1prime_findings.md — this file
```
Each rep dir has the same shape as `a1_rep[1-3]/` (15 files;
`top_full.txt` and `stderr.log` are in `.gitignore`).
@@ -0,0 +1,4 @@
total_rows=0
with_present_ts=0
discarded_count=0
(no Δ_present data)
@@ -0,0 +1,6 @@
samples=71
drops_total=0
frames_total=1687
drops_post_warmup=0
warmup_first_t=10.02
end_line=[41023:41023:0503/154934.888753:INFO:CONSOLE:44] "DROPS_TRAJECTORY: ===END=== total=1687 dropped=0 elapsed=70.11", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (44)
@@ -0,0 +1,73 @@
[41023:41023:0503/154824.761242:INFO:CONSOLE:51] "DROPS_TRAJECTORY: playing event fired", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (51)
[41023:41023:0503/154824.765411:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=0.00s tot=4 drop=0 dtot=4 ddrop=0 ct=0.019", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154825.783997:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=1.00s tot=29 drop=0 dtot=25 ddrop=0 ct=1.017", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154826.776286:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=2.01s tot=53 drop=0 dtot=24 ddrop=0 ct=2.018", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154827.775027:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=3.01s tot=77 drop=0 dtot=24 ddrop=0 ct=3.023", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154828.775985:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=4.01s tot=101 drop=0 dtot=24 ddrop=0 ct=4.024", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154829.776997:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=5.01s tot=125 drop=0 dtot=24 ddrop=0 ct=5.025", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154830.778345:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=6.01s tot=149 drop=0 dtot=24 ddrop=0 ct=6.026", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154831.779551:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=7.02s tot=173 drop=0 dtot=24 ddrop=0 ct=7.027", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154832.780618:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=8.02s tot=197 drop=0 dtot=24 ddrop=0 ct=8.028", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154833.781978:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=9.02s tot=221 drop=0 dtot=24 ddrop=0 ct=9.030", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154834.782904:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=10.02s tot=245 drop=0 dtot=24 ddrop=0 ct=10.031", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154835.783895:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=11.02s tot=269 drop=0 dtot=24 ddrop=0 ct=11.032", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154836.784831:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=12.02s tot=293 drop=0 dtot=24 ddrop=0 ct=12.033", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154837.785725:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=13.02s tot=317 drop=0 dtot=24 ddrop=0 ct=13.034", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154838.786572:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=14.02s tot=341 drop=0 dtot=24 ddrop=0 ct=14.034", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154839.787475:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=15.02s tot=365 drop=0 dtot=24 ddrop=0 ct=15.035", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154840.788572:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=16.02s tot=389 drop=0 dtot=24 ddrop=0 ct=16.036", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154841.789584:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=17.03s tot=413 drop=0 dtot=24 ddrop=0 ct=17.038", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154842.790766:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=18.03s tot=437 drop=0 dtot=24 ddrop=0 ct=18.039", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154843.792054:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=19.03s tot=461 drop=0 dtot=24 ddrop=0 ct=19.040", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154844.793141:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=20.03s tot=485 drop=0 dtot=24 ddrop=0 ct=20.041", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154845.794420:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=21.03s tot=509 drop=0 dtot=24 ddrop=0 ct=21.042", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154846.795715:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=22.03s tot=533 drop=0 dtot=24 ddrop=0 ct=22.044", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154847.797083:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=23.03s tot=557 drop=0 dtot=24 ddrop=0 ct=23.045", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154848.798480:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=24.03s tot=581 drop=0 dtot=24 ddrop=0 ct=24.046", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154849.799847:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=25.04s tot=605 drop=0 dtot=24 ddrop=0 ct=25.048", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154850.801080:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=26.04s tot=629 drop=0 dtot=24 ddrop=0 ct=26.049", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154851.802413:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=27.04s tot=653 drop=0 dtot=24 ddrop=0 ct=27.051", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154852.804149:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=28.04s tot=677 drop=0 dtot=24 ddrop=0 ct=28.051", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154853.806284:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=29.04s tot=701 drop=0 dtot=24 ddrop=0 ct=29.052", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154854.810396:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=30.05s tot=725 drop=0 dtot=24 ddrop=0 ct=30.056", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154855.811317:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=31.05s tot=749 drop=0 dtot=24 ddrop=0 ct=31.059", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154856.812423:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=32.05s tot=773 drop=0 dtot=24 ddrop=0 ct=32.060", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154857.813542:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=33.05s tot=797 drop=0 dtot=24 ddrop=0 ct=33.062", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154858.814725:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=34.05s tot=821 drop=0 dtot=24 ddrop=0 ct=34.063", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154859.815970:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=35.05s tot=846 drop=0 dtot=25 ddrop=0 ct=35.064", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154900.817222:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=36.05s tot=870 drop=0 dtot=24 ddrop=0 ct=36.065", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154901.818639:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=37.05s tot=894 drop=0 dtot=24 ddrop=0 ct=37.066", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154902.819891:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=38.06s tot=918 drop=0 dtot=24 ddrop=0 ct=38.067", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154903.820833:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=39.06s tot=942 drop=0 dtot=24 ddrop=0 ct=39.069", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154904.822126:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=40.06s tot=966 drop=0 dtot=24 ddrop=0 ct=40.070", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154905.823292:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=41.06s tot=990 drop=0 dtot=24 ddrop=0 ct=41.070", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154906.824532:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=42.06s tot=1014 drop=0 dtot=24 ddrop=0 ct=42.072", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154907.825714:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=43.06s tot=1038 drop=0 dtot=24 ddrop=0 ct=43.073", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154908.826640:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=44.06s tot=1062 drop=0 dtot=24 ddrop=0 ct=44.074", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154909.827892:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=45.06s tot=1086 drop=0 dtot=24 ddrop=0 ct=45.074", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154910.829241:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=46.06s tot=1110 drop=0 dtot=24 ddrop=0 ct=46.077", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154911.830940:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=47.07s tot=1134 drop=0 dtot=24 ddrop=0 ct=47.079", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154912.833219:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=48.07s tot=1158 drop=0 dtot=24 ddrop=0 ct=48.080", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154913.836430:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=49.07s tot=1182 drop=0 dtot=24 ddrop=0 ct=49.084", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154914.837569:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=50.07s tot=1206 drop=0 dtot=24 ddrop=0 ct=50.085", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154915.838873:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=51.07s tot=1230 drop=0 dtot=24 ddrop=0 ct=51.087", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154916.840295:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=52.08s tot=1254 drop=0 dtot=24 ddrop=0 ct=52.088", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154917.841885:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=53.08s tot=1278 drop=0 dtot=24 ddrop=0 ct=53.090", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154918.844048:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=54.08s tot=1302 drop=0 dtot=24 ddrop=0 ct=54.091", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154919.847596:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=55.08s tot=1326 drop=0 dtot=24 ddrop=0 ct=55.093", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154920.848833:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=56.08s tot=1350 drop=0 dtot=24 ddrop=0 ct=56.096", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154921.849634:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=57.09s tot=1374 drop=0 dtot=24 ddrop=0 ct=57.098", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154922.850887:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=58.09s tot=1398 drop=0 dtot=24 ddrop=0 ct=58.099", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154923.853521:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=59.09s tot=1422 drop=0 dtot=24 ddrop=0 ct=59.101", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154924.856918:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=60.09s tot=1446 drop=0 dtot=24 ddrop=0 ct=60.101", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154925.857672:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=61.09s tot=1470 drop=0 dtot=24 ddrop=0 ct=61.106", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154926.859068:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=62.09s tot=1494 drop=0 dtot=24 ddrop=0 ct=62.107", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154927.860566:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=63.10s tot=1518 drop=0 dtot=24 ddrop=0 ct=63.107", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154928.861528:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=64.10s tot=1542 drop=0 dtot=24 ddrop=0 ct=64.109", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154929.863606:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=65.10s tot=1566 drop=0 dtot=24 ddrop=0 ct=65.111", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154930.865919:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=66.10s tot=1590 drop=0 dtot=24 ddrop=0 ct=66.114", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154931.867325:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=67.10s tot=1615 drop=0 dtot=25 ddrop=0 ct=67.115", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154932.868346:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=68.10s tot=1639 drop=0 dtot=24 ddrop=0 ct=68.113", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154933.869498:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=69.11s tot=1663 drop=0 dtot=24 ddrop=0 ct=69.117", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154934.880483:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=70.11s tot=1687 drop=0 dtot=24 ddrop=0 ct=70.121", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41023:41023:0503/154934.888753:INFO:CONSOLE:44] "DROPS_TRAJECTORY: ===END=== total=1687 dropped=0 elapsed=70.11", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (44)
@@ -0,0 +1 @@
2026-05-03T13:49:36Z
@@ -0,0 +1 @@
samples=70 median=0.00 mean=0.04 min=0.00 max=2.00
@@ -0,0 +1,2 @@
[ perf record: Woken up 3574586 times to write data ]
[ perf record: Captured and wrote 0.352 MB /home/mfritsche/phase3_prime_runs/x11research_a1prime_konsole_rep1/perf.data (28 samples) ]
@@ -0,0 +1,61 @@
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 28 of event 'armv8_cortex_a55/cycles/P'
# Event count (approx.): 1723742
#
# Overhead Symbol Shared Object IPC [IPC Coverage]
# ........ ............................. .................... ....................
#
41.47% [k] map_id_range_down [kernel.kallsyms] - -
|
---map_id_range_down
make_kuid
inode_init_always_gfp
alloc_inode
sock_alloc
do_accept
__sys_accept4
__arm64_sys_accept4
invoke_syscall.constprop.0
el0_svc_common.constprop.0
do_el0_svc
el0_svc
el0t_64_sync_handler
el0t_64_sync
0xffff869a2cac
0xffff86995e73
0xffff86995eb7
accept4
0xffff865901eb
0xffff8658a687
wl_event_loop_dispatch
KWin::Display::dispatchEvents()
0xffff8704e7b7
QSocketNotifier::activated(QSocketDescriptor, QSocketNotifier::Type, QSocketNotifier::QPrivateSignal)
QSocketNotifier::event(QEvent*)
QApplicationPrivate::notify_helper(QObject*, QEvent*)
QCoreApplication::notifyInternal2(QObject*, QEvent*)
QEventDispatcherUNIXPrivate::activateSocketNotifiers()
QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QUnixEventDispatcherQPA::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>)
QCoreApplication::exec()
0xaaaad827d2e7
0xffff86932dd3
__libc_start_main
0xaaaad827f26f
30.89% [.] 0x00000000001ee7c4 libQt6Core.so.6.11.0 - -
26.52% [.] 0x00000000000034e0 libz.so.1.3.2 - -
0.50% [k] finish_task_switch.isra.0 [kernel.kallsyms] - -
0.27% [k] __schedule [kernel.kallsyms] - -
0.19% [k] futex_unqueue [kernel.kallsyms] - -
0.17% [k] futex_do_wait [kernel.kallsyms] - -
#
# (Tip: Boolean options have negative forms, e.g.: perf report --no-children)
#
@@ -0,0 +1,50 @@
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 28 of event 'armv8_cortex_a55/cycles/P'
# Event count (approx.): 1723742
#
# Overhead Symbol Shared Object IPC [IPC Coverage]
# ........ ............................. .................... ....................
#
41.47% [k] map_id_range_down [kernel.kallsyms] - -
|
---map_id_range_down
make_kuid
inode_init_always_gfp
alloc_inode
sock_alloc
do_accept
__sys_accept4
__arm64_sys_accept4
invoke_syscall.constprop.0
el0_svc_common.constprop.0
do_el0_svc
el0_svc
el0t_64_sync_handler
el0t_64_sync
0xffff869a2cac
0xffff86995e73
0xffff86995eb7
accept4
0xffff865901eb
0xffff8658a687
wl_event_loop_dispatch
KWin::Display::dispatchEvents()
0xffff8704e7b7
QSocketNotifier::activated(QSocketDescriptor, QSocketNotifier::Type, QSocketNotifier::QPrivateSignal)
QSocketNotifier::event(QEvent*)
QApplicationPrivate::notify_helper(QObject*, QEvent*)
QCoreApplication::notifyInternal2(QObject*, QEvent*)
QEventDispatcherUNIXPrivate::activateSocketNotifiers()
QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QUnixEventDispatcherQPA::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>)
QCoreApplication::exec()
0xaaaad827d2e7
0xffff86932dd3
__libc_start_main
0xaaaad827f26f
@@ -0,0 +1,6 @@
2026-05-03T13:48:19Z
RUN_ID=x11research_a1prime_konsole_rep1 KIND=chromium-fourier-kwin (NO WAYLAND_DEBUG)
BROWSER_BIN=/tmp/chromium-ohm-gl-fix-step2/chrome
Chromium 149.0.7812.0
workload pgid: 41006
kwin_wayland PID: 35679
@@ -0,0 +1,630 @@
top - 15:48:25 up 1 day, 14 min, 4 users, load average: 0.27, 0.11, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 16.2 us, 17.5 sy, 0.0 ni, 62.5 id, 0.0 wa, 2.5 hi, 1.2 si, 0.0 st
MiB Mem : 7684.3 total, 239.7 free, 3652.4 used, 5291.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4031.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.96 kwin_wa+
top - 15:48:26 up 1 day, 14 min, 4 users, load average: 0.33, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 19.3 us, 19.1 sy, 0.0 ni, 58.8 id, 0.0 wa, 1.8 hi, 1.0 si, 0.0 st
MiB Mem : 7684.3 total, 239.7 free, 3652.4 used, 5291.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4031.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.96 kwin_wa+
top - 15:48:27 up 1 day, 14 min, 4 users, load average: 0.33, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 21.0 us, 13.4 sy, 0.0 ni, 61.8 id, 0.0 wa, 2.8 hi, 1.0 si, 0.0 st
MiB Mem : 7684.3 total, 239.7 free, 3652.4 used, 5291.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4031.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.96 kwin_wa+
top - 15:48:28 up 1 day, 14 min, 4 users, load average: 0.33, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 29.0 us, 11.7 sy, 0.0 ni, 56.2 id, 0.0 wa, 2.3 hi, 0.8 si, 0.0 st
MiB Mem : 7684.3 total, 159.8 free, 3731.4 used, 5292.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3952.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 2.0 3.3 2:42.98 kwin_wa+
top - 15:48:29 up 1 day, 14 min, 4 users, load average: 0.33, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 12.0 us, 4.0 sy, 0.0 ni, 83.0 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 159.8 free, 3731.4 used, 5292.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3952.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:30 up 1 day, 14 min, 4 users, load average: 0.33, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.2 us, 2.8 sy, 0.0 ni, 91.0 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 159.8 free, 3731.4 used, 5292.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3952.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:31 up 1 day, 14 min, 4 users, load average: 0.30, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.0 us, 3.0 sy, 0.0 ni, 90.7 id, 0.5 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 171.9 free, 3719.1 used, 5275.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3965.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:32 up 1 day, 14 min, 4 users, load average: 0.30, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.0 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 171.9 free, 3719.1 used, 5275.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3965.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:33 up 1 day, 14 min, 4 users, load average: 0.30, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 3.0 sy, 0.0 ni, 91.5 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 171.9 free, 3719.1 used, 5275.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3965.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:34 up 1 day, 14 min, 4 users, load average: 0.30, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.5 sy, 0.0 ni, 92.0 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.7 free, 3712.3 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:35 up 1 day, 14 min, 4 users, load average: 0.30, 0.13, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 2.8 sy, 0.0 ni, 91.7 id, 0.0 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 178.7 free, 3712.3 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:36 up 1 day, 14 min, 4 users, load average: 0.28, 0.12, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.8 sy, 0.0 ni, 91.2 id, 0.8 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.7 free, 3712.3 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:37 up 1 day, 14 min, 4 users, load average: 0.28, 0.12, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.7 us, 2.7 sy, 0.0 ni, 91.8 id, 0.0 wa, 0.7 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3709.1 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:38 up 1 day, 14 min, 4 users, load average: 0.28, 0.12, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.7 us, 2.5 sy, 0.0 ni, 92.0 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3709.1 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:39 up 1 day, 14 min, 4 users, load average: 0.28, 0.12, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.0 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3709.1 used, 5275.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:40 up 1 day, 14 min, 4 users, load average: 0.28, 0.12, 0.10
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.2 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 181.4 free, 3709.5 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:41 up 1 day, 14 min, 4 users, load average: 0.42, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 3.8 us, 2.2 sy, 0.0 ni, 92.8 id, 0.5 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.4 free, 3709.5 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:42 up 1 day, 14 min, 4 users, load average: 0.42, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.0 us, 2.5 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.4 free, 3709.5 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:43 up 1 day, 14 min, 4 users, load average: 0.42, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.0 us, 2.0 sy, 0.0 ni, 93.5 id, 0.0 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:44 up 1 day, 14 min, 4 users, load average: 0.42, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 3.7 us, 2.5 sy, 0.0 ni, 93.0 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:45 up 1 day, 14 min, 4 users, load average: 0.42, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.8 sy, 0.0 ni, 91.8 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:46 up 1 day, 14 min, 4 users, load average: 0.38, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 3.0 sy, 0.0 ni, 91.5 id, 0.5 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:47 up 1 day, 14 min, 4 users, load average: 0.38, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 2.5 sy, 0.0 ni, 92.0 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:48 up 1 day, 14 min, 4 users, load average: 0.38, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.3 us, 4.0 sy, 0.0 ni, 89.4 id, 0.0 wa, 1.0 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 180.9 free, 3709.9 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3974.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:49 up 1 day, 14 min, 4 users, load average: 0.38, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.7 us, 3.2 sy, 0.0 ni, 91.3 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.0 free, 3712.8 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:50 up 1 day, 14 min, 4 users, load average: 0.38, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.3 us, 3.5 sy, 0.0 ni, 89.2 id, 1.0 wa, 0.8 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 178.0 free, 3712.8 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:51 up 1 day, 14 min, 4 users, load average: 0.35, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.5 sy, 0.0 ni, 91.8 id, 0.2 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.0 free, 3712.8 used, 5275.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:52 up 1 day, 14 min, 4 users, load average: 0.35, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 3.0 sy, 0.0 ni, 91.2 id, 0.0 wa, 0.8 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 177.9 free, 3712.7 used, 5275.8 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:53 up 1 day, 14 min, 4 users, load average: 0.35, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 11.5 us, 43.9 sy, 0.0 ni, 43.4 id, 0.0 wa, 1.0 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 177.9 free, 3712.7 used, 5275.8 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:54 up 1 day, 14 min, 4 users, load average: 0.35, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.4 us, 48.1 sy, 0.0 ni, 40.9 id, 0.0 wa, 1.2 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 177.9 free, 3712.7 used, 5275.8 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:55 up 1 day, 14 min, 4 users, load average: 0.35, 0.15, 0.11
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 48.8 sy, 0.0 ni, 41.3 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.8 free, 3711.6 used, 5269.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:56 up 1 day, 14 min, 4 users, load average: 0.48, 0.18, 0.12
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.8 us, 48.0 sy, 0.0 ni, 42.2 id, 0.2 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 178.8 free, 3711.6 used, 5269.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:57 up 1 day, 14 min, 4 users, load average: 0.48, 0.18, 0.12
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.2 us, 47.3 sy, 0.0 ni, 42.3 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 178.8 free, 3711.6 used, 5269.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3972.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.98 kwin_wa+
top - 15:48:58 up 1 day, 14 min, 4 users, load average: 0.48, 0.18, 0.12
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.9 sy, 0.0 ni, 42.6 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.8 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 1.0 3.3 2:42.99 kwin_wa+
top - 15:48:59 up 1 day, 14 min, 4 users, load average: 0.48, 0.18, 0.12
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 46.9 sy, 0.0 ni, 43.6 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.8 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:00 up 1 day, 14 min, 4 users, load average: 0.48, 0.18, 0.12
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.2 sy, 0.0 ni, 42.5 id, 0.2 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.8 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:01 up 1 day, 14 min, 4 users, load average: 0.61, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.2 sy, 0.0 ni, 41.8 id, 0.2 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.7 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:02 up 1 day, 14 min, 4 users, load average: 0.61, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.8 sy, 0.0 ni, 42.3 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.7 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:03 up 1 day, 14 min, 4 users, load average: 0.61, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.1 sy, 0.0 ni, 43.1 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.6 free, 3710.7 used, 5269.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:04 up 1 day, 14 min, 4 users, load average: 0.61, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.0 sy, 0.0 ni, 43.0 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:05 up 1 day, 14 min, 4 users, load average: 0.61, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.5 sy, 0.0 ni, 43.0 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:06 up 1 day, 14 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.9 sy, 0.0 ni, 42.4 id, 0.5 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:07 up 1 day, 14 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 7.8 us, 47.5 sy, 0.0 ni, 43.8 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:08 up 1 day, 14 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 47.4 sy, 0.0 ni, 43.6 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:09 up 1 day, 14 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.4 sy, 0.0 ni, 42.9 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.4 used, 5269.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:10 up 1 day, 14 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.4 us, 47.9 sy, 0.0 ni, 42.4 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.3 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3976.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:11 up 1 day, 14 min, 4 users, load average: 0.82, 0.27, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.4 sy, 0.0 ni, 42.1 id, 0.5 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.3 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3976.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:12 up 1 day, 14 min, 4 users, load average: 0.82, 0.27, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.9 sy, 0.0 ni, 42.4 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 181.8 free, 3708.3 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3976.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:13 up 1 day, 14 min, 4 users, load average: 0.82, 0.27, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.9 sy, 0.0 ni, 42.4 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:14 up 1 day, 14 min, 4 users, load average: 0.82, 0.27, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 7.2 us, 47.9 sy, 0.0 ni, 43.9 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:15 up 1 day, 14 min, 4 users, load average: 0.82, 0.27, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 48.0 sy, 0.0 ni, 42.0 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:16 up 1 day, 14 min, 4 users, load average: 1.00, 0.31, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.3 us, 47.9 sy, 0.0 ni, 42.4 id, 0.5 wa, 0.8 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:17 up 1 day, 14 min, 4 users, load average: 1.00, 0.31, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.2 us, 47.0 sy, 0.0 ni, 42.8 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:18 up 1 day, 14 min, 4 users, load average: 1.00, 0.31, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.9 sy, 0.0 ni, 42.9 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.7 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:19 up 1 day, 15 min, 4 users, load average: 1.00, 0.31, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.4 us, 47.5 sy, 0.0 ni, 42.8 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.6 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:20 up 1 day, 15 min, 4 users, load average: 1.00, 0.31, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.5 sy, 0.0 ni, 43.0 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.6 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:21 up 1 day, 15 min, 4 users, load average: 1.08, 0.34, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.4 sy, 0.0 ni, 42.4 id, 0.5 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 179.4 free, 3710.6 used, 5269.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3973.7 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:22 up 1 day, 15 min, 4 users, load average: 1.08, 0.34, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 50.1 sy, 0.0 ni, 39.4 id, 0.2 wa, 1.0 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 190.1 free, 3699.8 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3984.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:23 up 1 day, 15 min, 4 users, load average: 1.08, 0.34, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 12.1 us, 51.0 sy, 0.0 ni, 35.2 id, 0.0 wa, 1.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 190.1 free, 3699.8 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3984.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:24 up 1 day, 15 min, 4 users, load average: 1.08, 0.34, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.6 sy, 0.0 ni, 42.4 id, 0.0 wa, 1.0 hi, 0.7 si, 0.0 st
MiB Mem : 7684.3 total, 190.1 free, 3699.8 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3984.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:25 up 1 day, 15 min, 4 users, load average: 1.08, 0.34, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.6 us, 50.4 sy, 0.0 ni, 38.3 id, 0.0 wa, 1.3 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 187.8 free, 3702.0 used, 5271.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3982.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:26 up 1 day, 15 min, 4 users, load average: 1.39, 0.42, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.0 us, 47.9 sy, 0.0 ni, 42.1 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 187.8 free, 3702.0 used, 5271.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3982.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:27 up 1 day, 15 min, 4 users, load average: 1.39, 0.42, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.4 sy, 0.0 ni, 42.9 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 187.8 free, 3702.0 used, 5271.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3982.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:28 up 1 day, 15 min, 4 users, load average: 1.39, 0.42, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 49.6 sy, 0.0 ni, 39.7 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 184.8 free, 3704.9 used, 5271.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3979.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:29 up 1 day, 15 min, 4 users, load average: 1.39, 0.42, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.5 sy, 0.0 ni, 43.0 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 184.8 free, 3704.9 used, 5271.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3979.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:30 up 1 day, 15 min, 4 users, load average: 1.39, 0.42, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.3 us, 47.6 sy, 0.0 ni, 43.1 id, 0.0 wa, 0.8 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 184.8 free, 3704.9 used, 5271.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3979.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:31 up 1 day, 15 min, 4 users, load average: 1.44, 0.45, 0.21
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.8 us, 49.2 sy, 0.0 ni, 39.2 id, 0.5 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 186.3 free, 3703.4 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3981.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:32 up 1 day, 15 min, 4 users, load average: 1.44, 0.45, 0.21
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 48.1 sy, 0.0 ni, 42.1 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 186.3 free, 3703.4 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3981.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:33 up 1 day, 15 min, 4 users, load average: 1.44, 0.45, 0.21
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 46.9 sy, 0.0 ni, 43.4 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 186.3 free, 3703.4 used, 5271.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3981.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
top - 15:49:34 up 1 day, 15 min, 4 users, load average: 1.44, 0.45, 0.21
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.0 us, 49.2 sy, 0.0 ni, 40.5 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 192.5 free, 3697.2 used, 5272.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3987.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1339284 256424 194392 S 0.0 3.3 2:42.99 kwin_wa+
@@ -0,0 +1 @@
2026-05-03T14:17:17Z
@@ -0,0 +1,4 @@
total_rows=0
with_present_ts=0
discarded_count=0
(no Δ_present data)
@@ -0,0 +1,6 @@
samples=71
drops_total=1
frames_total=1682
drops_post_warmup=0
warmup_first_t=10.01
end_line=[41613:41613:0503/161827.370147:INFO:CONSOLE:44] "DROPS_TRAJECTORY: ===END=== total=1682 dropped=1 elapsed=70.08", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (44)
@@ -0,0 +1,73 @@
[41613:41613:0503/161717.283558:INFO:CONSOLE:51] "DROPS_TRAJECTORY: playing event fired", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (51)
[41613:41613:0503/161717.287457:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=0.00s tot=4 drop=0 dtot=4 ddrop=0 ct=0.018", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161718.288585:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=1.00s tot=24 drop=1 dtot=20 ddrop=1 ct=1.021", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161719.289459:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=2.00s tot=48 drop=1 dtot=24 ddrop=0 ct=2.022", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161720.290595:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=3.00s tot=72 drop=1 dtot=24 ddrop=0 ct=3.023", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161721.292195:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=4.01s tot=96 drop=1 dtot=24 ddrop=0 ct=4.024", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161722.292625:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=5.01s tot=120 drop=1 dtot=24 ddrop=0 ct=5.025", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161723.294013:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=6.01s tot=144 drop=1 dtot=24 ddrop=0 ct=6.026", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161724.295121:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=7.01s tot=168 drop=1 dtot=24 ddrop=0 ct=7.028", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161725.296029:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=8.01s tot=192 drop=1 dtot=24 ddrop=0 ct=8.029", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161726.297183:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=9.01s tot=216 drop=1 dtot=24 ddrop=0 ct=9.030", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161727.297976:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=10.01s tot=240 drop=1 dtot=24 ddrop=0 ct=10.031", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161728.298907:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=11.01s tot=264 drop=1 dtot=24 ddrop=0 ct=11.031", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161729.299706:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=12.01s tot=288 drop=1 dtot=24 ddrop=0 ct=12.032", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161730.300679:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=13.01s tot=312 drop=1 dtot=24 ddrop=0 ct=13.033", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161731.301755:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=14.02s tot=336 drop=1 dtot=24 ddrop=0 ct=14.034", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161732.302767:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=15.02s tot=360 drop=1 dtot=24 ddrop=0 ct=15.035", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161733.303897:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=16.02s tot=384 drop=1 dtot=24 ddrop=0 ct=16.036", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161734.304908:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=17.02s tot=408 drop=1 dtot=24 ddrop=0 ct=17.038", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161735.306081:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=18.02s tot=432 drop=1 dtot=24 ddrop=0 ct=18.039", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161736.307186:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=19.02s tot=456 drop=1 dtot=24 ddrop=0 ct=19.040", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161737.308200:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=20.02s tot=480 drop=1 dtot=24 ddrop=0 ct=20.041", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161738.309266:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=21.02s tot=504 drop=1 dtot=24 ddrop=0 ct=21.042", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161739.310384:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=22.02s tot=528 drop=1 dtot=24 ddrop=0 ct=22.043", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161740.311619:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=23.03s tot=552 drop=1 dtot=24 ddrop=0 ct=23.044", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161741.312665:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=24.03s tot=576 drop=1 dtot=24 ddrop=0 ct=24.045", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161742.314515:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=25.03s tot=601 drop=1 dtot=25 ddrop=0 ct=25.046", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161743.314964:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=26.03s tot=625 drop=1 dtot=24 ddrop=0 ct=26.047", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161744.315935:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=27.03s tot=649 drop=1 dtot=24 ddrop=0 ct=27.049", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161745.316993:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=28.03s tot=673 drop=1 dtot=24 ddrop=0 ct=28.050", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161746.318033:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=29.03s tot=697 drop=1 dtot=24 ddrop=0 ct=29.051", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161747.319104:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=30.03s tot=721 drop=1 dtot=24 ddrop=0 ct=30.052", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161748.320172:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=31.03s tot=745 drop=1 dtot=24 ddrop=0 ct=31.053", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161749.322448:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=32.04s tot=769 drop=1 dtot=24 ddrop=0 ct=32.054", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161750.327032:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=33.04s tot=793 drop=1 dtot=24 ddrop=0 ct=33.059", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161751.328549:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=34.04s tot=817 drop=1 dtot=24 ddrop=0 ct=34.060", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161752.330789:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=35.04s tot=841 drop=1 dtot=24 ddrop=0 ct=35.063", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161753.331976:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=36.05s tot=865 drop=1 dtot=24 ddrop=0 ct=36.064", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161754.332816:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=37.05s tot=889 drop=1 dtot=24 ddrop=0 ct=37.065", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161755.333911:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=38.05s tot=913 drop=1 dtot=24 ddrop=0 ct=38.066", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161756.334947:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=39.05s tot=937 drop=1 dtot=24 ddrop=0 ct=39.067", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161757.336189:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=40.05s tot=961 drop=1 dtot=24 ddrop=0 ct=40.068", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161758.337019:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=41.05s tot=985 drop=1 dtot=24 ddrop=0 ct=41.070", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161759.338104:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=42.05s tot=1009 drop=1 dtot=24 ddrop=0 ct=42.071", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161800.339752:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=43.05s tot=1033 drop=1 dtot=24 ddrop=0 ct=43.072", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161801.340400:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=44.05s tot=1057 drop=1 dtot=24 ddrop=0 ct=44.073", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161802.341581:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=45.06s tot=1081 drop=1 dtot=24 ddrop=0 ct=45.074", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161803.342693:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=46.06s tot=1105 drop=1 dtot=24 ddrop=0 ct=46.075", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161804.343754:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=47.06s tot=1129 drop=1 dtot=24 ddrop=0 ct=47.076", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161805.345354:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=48.06s tot=1153 drop=1 dtot=24 ddrop=0 ct=48.077", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161806.346064:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=49.06s tot=1177 drop=1 dtot=24 ddrop=0 ct=49.079", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161807.347419:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=50.06s tot=1201 drop=1 dtot=24 ddrop=0 ct=50.080", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161808.348232:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=51.06s tot=1225 drop=1 dtot=24 ddrop=0 ct=51.081", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161809.349320:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=52.06s tot=1249 drop=1 dtot=24 ddrop=0 ct=52.082", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161810.350200:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=53.06s tot=1273 drop=1 dtot=24 ddrop=0 ct=53.083", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161811.351253:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=54.07s tot=1297 drop=1 dtot=24 ddrop=0 ct=54.084", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161812.352396:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=55.07s tot=1321 drop=1 dtot=24 ddrop=0 ct=55.085", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161813.353897:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=56.07s tot=1345 drop=1 dtot=24 ddrop=0 ct=56.086", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161814.354779:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=57.07s tot=1370 drop=1 dtot=25 ddrop=0 ct=57.087", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161815.355726:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=58.07s tot=1394 drop=1 dtot=24 ddrop=0 ct=58.088", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161816.356841:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=59.07s tot=1418 drop=1 dtot=24 ddrop=0 ct=59.089", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161817.357775:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=60.07s tot=1442 drop=1 dtot=24 ddrop=0 ct=60.090", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161818.359390:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=61.07s tot=1466 drop=1 dtot=24 ddrop=0 ct=61.091", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161819.360109:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=62.07s tot=1490 drop=1 dtot=24 ddrop=0 ct=62.093", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161820.361200:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=63.08s tot=1514 drop=1 dtot=24 ddrop=0 ct=63.094", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161821.362630:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=64.08s tot=1538 drop=1 dtot=24 ddrop=0 ct=64.095", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161822.363349:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=65.08s tot=1562 drop=1 dtot=24 ddrop=0 ct=65.096", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161823.364238:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=66.08s tot=1586 drop=1 dtot=24 ddrop=0 ct=66.097", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161824.366042:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=67.08s tot=1610 drop=1 dtot=24 ddrop=0 ct=67.098", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161825.366896:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=68.08s tot=1634 drop=1 dtot=24 ddrop=0 ct=68.099", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161826.368635:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=69.08s tot=1658 drop=1 dtot=24 ddrop=0 ct=69.101", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161827.369885:INFO:CONSOLE:38] "DROPS_TRAJECTORY: t=70.08s tot=1682 drop=1 dtot=24 ddrop=0 ct=70.102", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (38)
[41613:41613:0503/161827.370147:INFO:CONSOLE:44] "DROPS_TRAJECTORY: ===END=== total=1682 dropped=1 elapsed=70.08", source: file:///home/mfritsche/fourier-test/brave_drops_test.html (44)
@@ -0,0 +1 @@
2026-05-03T14:18:28Z
@@ -0,0 +1 @@
samples=70 median=0.00 mean=0.03 min=0.00 max=2.00
@@ -0,0 +1,2 @@
[ perf record: Woken up 3492997 times to write data ]
[ perf record: Captured and wrote 0.361 MB /home/mfritsche/phase3_prime_runs/x11research_a1prime_tiled_rep1/perf.data (29 samples) ]
@@ -0,0 +1,83 @@
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 29 of event 'armv8_cortex_a55/cycles/P'
# Event count (approx.): 2632174
#
# Overhead Symbol Shared Object IPC [IPC Coverage]
# ........ ............................... ................... ....................
#
33.16% [.] 0x000000000002aa28 libpng16.so.16.58.0 - -
25.57% [k] inode_permission [kernel.kallsyms] - -
|
---inode_permission
link_path_walk
path_lookupat
filename_lookup
vfs_statx
do_statx
__arm64_sys_statx
invoke_syscall.constprop.0
el0_svc_common.constprop.0
do_el0_svc
el0_svc
el0t_64_sync_handler
el0t_64_sync
statx
0xffff871b03a7
0xffff871b9923
0xffff86f839eb
QFileInfo::symLinkTarget() const
executablePathFromPid(int)
0xffff8a29764b
KWin::ClientConnection::ClientConnection(wl_client*, KWin::Display*)
0xffff8a2a7f5b
0xffff8658a133
wl_client_create
0xffff8658a6a3
wl_event_loop_dispatch
KWin::Display::dispatchEvents()
0xffff8704e7b7
QSocketNotifier::activated(QSocketDescriptor, QSocketNotifier::Type, QSocketNotifier::QPrivateSignal)
QSocketNotifier::event(QEvent*)
QApplicationPrivate::notify_helper(QObject*, QEvent*)
QCoreApplication::notifyInternal2(QObject*, QEvent*)
QEventDispatcherUNIXPrivate::activateSocketNotifiers()
QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QUnixEventDispatcherQPA::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>)
QCoreApplication::exec()
0xaaaad827d2e7
0xffff86932dd3
__libc_start_main
0xaaaad827f26f
25.09% [k] _raw_spin_unlock_irqrestore [kernel.kallsyms] - -
|
---_raw_spin_unlock_irqrestore
sock_def_readable
unix_stream_sendmsg
__sock_sendmsg
____sys_sendmsg
___sys_sendmsg
__sys_sendmsg
__arm64_sys_sendmsg
invoke_syscall.constprop.0
el0_svc_common.constprop.0
do_el0_svc
el0_svc
el0t_64_sync_handler
el0t_64_sync
15.42% [.] 0x000000000002abb0 libpng16.so.16.58.0 - -
0.34% [k] finish_task_switch.isra.0 [kernel.kallsyms] - -
0.21% [k] exit_to_user_mode_loop [kernel.kallsyms] - -
0.13% [k] hrtimer_active [kernel.kallsyms] - -
0.08% [k] futex_unqueue [kernel.kallsyms] - -
#
# (Tip: If you have debuginfo enabled, try: perf report -s sym,srcline)
#
@@ -0,0 +1,50 @@
# To display the perf.data header info, please use --header/--header-only options.
#
#
# Total Lost Samples: 0
#
# Samples: 29 of event 'armv8_cortex_a55/cycles/P'
# Event count (approx.): 2632174
#
# Overhead Symbol Shared Object IPC [IPC Coverage]
# ........ ............................... ................... ....................
#
33.16% [.] 0x000000000002aa28 libpng16.so.16.58.0 - -
25.57% [k] inode_permission [kernel.kallsyms] - -
|
---inode_permission
link_path_walk
path_lookupat
filename_lookup
vfs_statx
do_statx
__arm64_sys_statx
invoke_syscall.constprop.0
el0_svc_common.constprop.0
do_el0_svc
el0_svc
el0t_64_sync_handler
el0t_64_sync
statx
0xffff871b03a7
0xffff871b9923
0xffff86f839eb
QFileInfo::symLinkTarget() const
executablePathFromPid(int)
0xffff8a29764b
KWin::ClientConnection::ClientConnection(wl_client*, KWin::Display*)
0xffff8a2a7f5b
0xffff8658a133
wl_client_create
0xffff8658a6a3
wl_event_loop_dispatch
KWin::Display::dispatchEvents()
0xffff8704e7b7
QSocketNotifier::activated(QSocketDescriptor, QSocketNotifier::Type, QSocketNotifier::QPrivateSignal)
QSocketNotifier::event(QEvent*)
QApplicationPrivate::notify_helper(QObject*, QEvent*)
QCoreApplication::notifyInternal2(QObject*, QEvent*)
QEventDispatcherUNIXPrivate::activateSocketNotifiers()
QEventDispatcherUNIX::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QUnixEventDispatcherQPA::processEvents(QFlags<QEventLoop::ProcessEventsFlag>)
QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>)
@@ -0,0 +1,6 @@
2026-05-03T14:17:12Z
RUN_ID=x11research_a1prime_tiled_rep1 KIND=chromium-fourier-kwin-tiled (NO WAYLAND_DEBUG, --window-size=600x400 --window-position=350,150)
BROWSER_BIN=/tmp/chromium-ohm-gl-fix-step2/chrome
Chromium 149.0.7812.0
workload pgid: 41604
kwin_wayland PID: 35679
@@ -0,0 +1,630 @@
top - 16:17:17 up 1 day, 42 min, 4 users, load average: 0.70, 0.20, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 23.5 us, 29.4 sy, 0.0 ni, 43.5 id, 0.0 wa, 2.4 hi, 1.2 si, 0.0 st
MiB Mem : 7684.3 total, 187.7 free, 3683.0 used, 5303.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4001.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.09 kwin_wa+
top - 16:17:18 up 1 day, 43 min, 4 users, load average: 0.70, 0.20, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 20.7 us, 15.9 sy, 0.0 ni, 60.7 id, 0.3 wa, 1.8 hi, 0.8 si, 0.0 st
MiB Mem : 7684.3 total, 187.7 free, 3683.0 used, 5303.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4001.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.09 kwin_wa+
top - 16:17:19 up 1 day, 43 min, 4 users, load average: 0.70, 0.20, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 14.5 us, 10.2 sy, 0.0 ni, 72.2 id, 0.0 wa, 2.3 hi, 0.8 si, 0.0 st
MiB Mem : 7684.3 total, 187.7 free, 3683.0 used, 5303.9 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 4001.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.09 kwin_wa+
top - 16:17:20 up 1 day, 43 min, 4 users, load average: 0.70, 0.20, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 31.6 us, 13.7 sy, 0.0 ni, 51.1 id, 0.0 wa, 2.8 hi, 0.8 si, 0.0 st
MiB Mem : 7684.3 total, 135.9 free, 3734.3 used, 5305.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3950.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.09 kwin_wa+
top - 16:17:21 up 1 day, 43 min, 4 users, load average: 0.73, 0.22, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 21.6 us, 5.8 sy, 0.0 ni, 70.7 id, 0.0 wa, 1.5 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 135.9 free, 3734.3 used, 5305.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3950.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 2.0 3.3 2:43.11 kwin_wa+
top - 16:17:22 up 1 day, 43 min, 4 users, load average: 0.73, 0.22, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.0 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 135.9 free, 3734.3 used, 5305.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3950.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:23 up 1 day, 43 min, 4 users, load average: 0.73, 0.22, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.5 us, 2.8 sy, 0.0 ni, 90.5 id, 0.5 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:24 up 1 day, 43 min, 4 users, load average: 0.73, 0.22, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 3.0 sy, 0.0 ni, 91.8 id, 0.0 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:25 up 1 day, 43 min, 4 users, load average: 0.73, 0.22, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.0 us, 2.5 sy, 0.0 ni, 91.7 id, 0.0 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:26 up 1 day, 43 min, 4 users, load average: 0.67, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 2.5 sy, 0.0 ni, 91.8 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:27 up 1 day, 43 min, 4 users, load average: 0.67, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.5 sy, 0.0 ni, 92.2 id, 0.0 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:28 up 1 day, 43 min, 4 users, load average: 0.67, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.8 sy, 0.0 ni, 91.2 id, 0.5 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 123.6 free, 3746.4 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:29 up 1 day, 43 min, 4 users, load average: 0.67, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.5 sy, 0.0 ni, 92.5 id, 0.0 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 122.9 free, 3747.1 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:30 up 1 day, 43 min, 4 users, load average: 0.67, 0.21, 0.13
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.7 us, 2.5 sy, 0.0 ni, 92.0 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 122.9 free, 3747.1 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:31 up 1 day, 43 min, 4 users, load average: 0.69, 0.23, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.5 sy, 0.0 ni, 91.8 id, 0.2 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 122.9 free, 3747.1 used, 5303.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3937.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:32 up 1 day, 43 min, 4 users, load average: 0.69, 0.23, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.0 us, 1.8 sy, 0.0 ni, 93.7 id, 0.0 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 126.9 free, 3743.0 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3941.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:33 up 1 day, 43 min, 4 users, load average: 0.69, 0.23, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.5 us, 2.8 sy, 0.0 ni, 91.5 id, 0.5 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 126.9 free, 3743.0 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3941.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:34 up 1 day, 43 min, 4 users, load average: 0.69, 0.23, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.0 us, 2.0 sy, 0.0 ni, 93.2 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 126.9 free, 3743.0 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3941.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:35 up 1 day, 43 min, 4 users, load average: 0.69, 0.23, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.2 us, 2.2 sy, 0.0 ni, 92.8 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:36 up 1 day, 43 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 3.8 us, 2.3 sy, 0.0 ni, 93.5 id, 0.0 wa, 0.5 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:37 up 1 day, 43 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.0 us, 2.8 sy, 0.0 ni, 91.5 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:38 up 1 day, 43 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.0 us, 3.0 sy, 0.0 ni, 90.0 id, 1.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:39 up 1 day, 43 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.2 us, 2.5 sy, 0.0 ni, 91.5 id, 0.0 wa, 0.5 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:40 up 1 day, 43 min, 4 users, load average: 0.72, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 4.8 us, 2.8 sy, 0.0 ni, 91.8 id, 0.0 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 130.9 free, 3738.9 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3945.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:41 up 1 day, 43 min, 4 users, load average: 0.66, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.2 us, 3.0 sy, 0.0 ni, 90.8 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 126.4 free, 3743.4 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3940.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:42 up 1 day, 43 min, 4 users, load average: 0.66, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.0 us, 2.8 sy, 0.0 ni, 91.5 id, 0.0 wa, 0.5 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 126.4 free, 3743.4 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3940.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:43 up 1 day, 43 min, 4 users, load average: 0.66, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.5 us, 3.0 sy, 0.0 ni, 89.9 id, 0.5 wa, 0.8 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 126.4 free, 3743.4 used, 5303.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3940.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:44 up 1 day, 43 min, 4 users, load average: 0.66, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 5.5 us, 2.8 sy, 0.0 ni, 90.8 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 125.3 free, 3744.4 used, 5303.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3939.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:45 up 1 day, 43 min, 4 users, load average: 0.66, 0.24, 0.14
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 13.5 sy, 0.0 ni, 75.8 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 125.3 free, 3744.4 used, 5303.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3939.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:46 up 1 day, 43 min, 4 users, load average: 0.77, 0.26, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 47.9 sy, 0.0 ni, 41.4 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 125.3 free, 3744.4 used, 5303.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3939.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:47 up 1 day, 43 min, 4 users, load average: 0.77, 0.26, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.2 us, 49.0 sy, 0.0 ni, 40.8 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 141.2 free, 3728.2 used, 5291.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3956.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:48 up 1 day, 43 min, 4 users, load average: 0.77, 0.26, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.4 us, 47.7 sy, 0.0 ni, 41.0 id, 0.7 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 141.2 free, 3728.2 used, 5291.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3956.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:49 up 1 day, 43 min, 4 users, load average: 0.77, 0.26, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.0 us, 47.8 sy, 0.0 ni, 42.0 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 141.2 free, 3728.2 used, 5291.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3956.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:50 up 1 day, 43 min, 4 users, load average: 0.77, 0.26, 0.15
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.0 sy, 0.0 ni, 42.8 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 141.0 free, 3728.4 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3955.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:51 up 1 day, 43 min, 4 users, load average: 0.87, 0.29, 0.16
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 47.5 sy, 0.0 ni, 43.8 id, 0.0 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 141.0 free, 3728.4 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3955.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:52 up 1 day, 43 min, 4 users, load average: 0.87, 0.29, 0.16
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.9 sy, 0.0 ni, 41.4 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 141.0 free, 3728.4 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3955.9 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:53 up 1 day, 43 min, 4 users, load average: 0.87, 0.29, 0.16
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.4 sy, 0.0 ni, 41.4 id, 0.5 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 146.8 free, 3722.5 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:54 up 1 day, 43 min, 4 users, load average: 0.87, 0.29, 0.16
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.8 us, 47.5 sy, 0.0 ni, 41.8 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 146.8 free, 3722.5 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:55 up 1 day, 43 min, 4 users, load average: 0.87, 0.29, 0.16
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.0 sy, 0.0 ni, 42.5 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 146.8 free, 3722.5 used, 5291.1 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:56 up 1 day, 43 min, 4 users, load average: 0.96, 0.32, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.0 sy, 0.0 ni, 43.3 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 146.1 free, 3723.2 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:57 up 1 day, 43 min, 4 users, load average: 0.96, 0.32, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.0 sy, 0.0 ni, 42.5 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 146.1 free, 3723.2 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:58 up 1 day, 43 min, 4 users, load average: 0.96, 0.32, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 48.4 sy, 0.0 ni, 42.4 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 146.1 free, 3723.2 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3961.1 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:17:59 up 1 day, 43 min, 4 users, load average: 0.96, 0.32, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.8 us, 47.0 sy, 0.0 ni, 43.0 id, 0.2 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:00 up 1 day, 43 min, 4 users, load average: 0.96, 0.32, 0.17
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 47.1 sy, 0.0 ni, 41.9 id, 0.2 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:01 up 1 day, 43 min, 4 users, load average: 1.04, 0.35, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.9 sy, 0.0 ni, 42.4 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.2 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:02 up 1 day, 43 min, 4 users, load average: 1.04, 0.35, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.8 us, 48.6 sy, 0.0 ni, 41.9 id, 0.0 wa, 0.8 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:03 up 1 day, 43 min, 4 users, load average: 1.04, 0.35, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 48.1 sy, 0.0 ni, 41.9 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:04 up 1 day, 43 min, 4 users, load average: 1.04, 0.35, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.0 us, 47.5 sy, 0.0 ni, 42.3 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 145.1 free, 3724.1 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.2 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:05 up 1 day, 43 min, 4 users, load average: 1.04, 0.35, 0.18
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.0 us, 47.9 sy, 0.0 ni, 42.1 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.8 free, 3724.3 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:06 up 1 day, 43 min, 4 users, load average: 1.12, 0.38, 0.19
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.1 sy, 0.0 ni, 42.1 id, 0.2 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 144.8 free, 3724.3 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:07 up 1 day, 43 min, 4 users, load average: 1.12, 0.38, 0.19
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.2 us, 47.2 sy, 0.0 ni, 43.2 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.8 free, 3724.3 used, 5291.3 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3960.0 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:08 up 1 day, 43 min, 4 users, load average: 1.12, 0.38, 0.19
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.2 us, 47.5 sy, 0.0 ni, 42.2 id, 0.0 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.2 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:09 up 1 day, 43 min, 4 users, load average: 1.12, 0.38, 0.19
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.2 us, 47.8 sy, 0.0 ni, 41.8 id, 0.2 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 144.2 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:10 up 1 day, 43 min, 4 users, load average: 1.12, 0.38, 0.19
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.5 sy, 0.0 ni, 42.2 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.2 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:11 up 1 day, 43 min, 4 users, load average: 1.19, 0.41, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.8 sy, 0.0 ni, 42.5 id, 0.2 wa, 0.8 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.1 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:12 up 1 day, 43 min, 4 users, load average: 1.19, 0.41, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 48.0 sy, 0.0 ni, 42.5 id, 0.0 wa, 1.0 hi, 0.0 si, 0.0 st
MiB Mem : 7684.3 total, 144.1 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:13 up 1 day, 43 min, 4 users, load average: 1.19, 0.41, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.7 us, 47.5 sy, 0.0 ni, 42.8 id, 0.0 wa, 0.7 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 144.1 free, 3724.9 used, 5291.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3959.4 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:14 up 1 day, 43 min, 4 users, load average: 1.19, 0.41, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.8 us, 47.6 sy, 0.0 ni, 41.4 id, 0.0 wa, 1.0 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 160.2 free, 3708.8 used, 5291.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:15 up 1 day, 43 min, 4 users, load average: 1.19, 0.41, 0.20
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 48.1 sy, 0.0 ni, 40.6 id, 0.3 wa, 1.3 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 160.2 free, 3708.8 used, 5291.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:16 up 1 day, 43 min, 4 users, load average: 1.33, 0.45, 0.22
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 12.5 us, 50.2 sy, 0.0 ni, 35.2 id, 0.2 wa, 1.2 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 160.2 free, 3708.8 used, 5291.5 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3975.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:17 up 1 day, 43 min, 4 users, load average: 1.33, 0.45, 0.22
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 10.7 us, 49.4 sy, 0.0 ni, 38.4 id, 0.0 wa, 1.2 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 154.8 free, 3714.0 used, 5292.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3970.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:18 up 1 day, 44 min, 4 users, load average: 1.33, 0.45, 0.22
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.3 us, 48.1 sy, 0.0 ni, 41.4 id, 0.0 wa, 1.0 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 154.8 free, 3714.0 used, 5292.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3970.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:19 up 1 day, 44 min, 4 users, load average: 1.33, 0.45, 0.22
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.8 us, 48.4 sy, 0.0 ni, 41.4 id, 0.0 wa, 1.0 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 154.8 free, 3714.0 used, 5292.4 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3970.3 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:20 up 1 day, 44 min, 4 users, load average: 1.33, 0.45, 0.22
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.9 us, 47.2 sy, 0.0 ni, 41.7 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 153.9 free, 3714.8 used, 5294.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3969.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:21 up 1 day, 44 min, 4 users, load average: 1.47, 0.49, 0.23
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.5 us, 47.9 sy, 0.0 ni, 41.1 id, 0.2 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 153.9 free, 3714.8 used, 5294.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3969.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:22 up 1 day, 44 min, 4 users, load average: 1.47, 0.49, 0.23
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 10.0 us, 47.6 sy, 0.0 ni, 40.9 id, 0.0 wa, 1.2 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 153.9 free, 3714.8 used, 5294.6 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3969.5 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:23 up 1 day, 44 min, 4 users, load average: 1.47, 0.49, 0.23
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.5 us, 47.2 sy, 0.0 ni, 43.0 id, 0.0 wa, 1.0 hi, 0.2 si, 0.0 st
MiB Mem : 7684.3 total, 153.1 free, 3715.5 used, 5294.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3968.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:25 up 1 day, 44 min, 4 users, load average: 1.47, 0.49, 0.23
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 7.8 us, 49.5 sy, 0.0 ni, 41.2 id, 0.0 wa, 1.0 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 153.1 free, 3715.5 used, 5294.7 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3968.8 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:26 up 1 day, 44 min, 4 users, load average: 1.47, 0.49, 0.23
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 8.0 us, 48.9 sy, 0.0 ni, 41.9 id, 0.0 wa, 1.0 hi, 0.3 si, 0.0 st
MiB Mem : 7684.3 total, 156.0 free, 3712.7 used, 5295.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+
top - 16:18:27 up 1 day, 44 min, 4 users, load average: 1.51, 0.52, 0.24
Tasks: 1 total, 0 running, 1 sleep, 0 d-sleep, 0 stopped, 0 zombie
%Cpu(s): 9.3 us, 48.1 sy, 0.0 ni, 40.9 id, 0.3 wa, 1.0 hi, 0.5 si, 0.0 st
MiB Mem : 7684.3 total, 156.0 free, 3712.7 used, 5295.0 buff/cache
MiB Swap: 3073.7 total, 2797.0 free, 276.7 used. 3971.6 avail Mem
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
35679 mfritsc+ -2 0 1349804 257836 195544 S 0.0 3.3 2:43.11 kwin_wa+