88094f2bbb
- Add patch log-target-null-instead-kmsg.patch from Thomas Blume to enable the kernel developers to see a clean kmsg ring buffer without any systemd/udev messages included (bnc#877021) - Add upstram patches for backlight 0001-backlight-Avoid-restoring-brightness-to-an-unreadabl.patch 0002-backlight-do-nothing-if-max_brightness-is-0.patch 0003-backlight-unify-error-messages.patch 0004-backlight-warn-if-kernel-exposes-backlight-device-wi.patch 0005-backlight-handle-saved-brightness-exceeding-max-brig.patch - Add upstream patches 0001-errno-make-sure-to-handle-the-3-errnos-that-are-alia.patch 0002-udev-warn-when-name_to_handle_at-is-not-implemented.patch 0003-analyze-fix-plot-with-bad-y-size.patch 0004-job-add-waiting-jobs-to-run-queue-in-unit_coldplug.patch 0005-job-always-add-waiting-jobs-to-run-queue-during-cold.patch - Drop upstream-net_id-changes.patch and replace them with the correct patches from upstream and their commits: add: 1014-udev-update-net_id-comments.patch add: 1015-udev-persistent-naming-we-cannot-use-virtio-numbers-.patch - Add patch log-target-null-instead-kmsg.patch from Thomas Blume to enable the kernel developers to see a clean kmsg ring buffer without any systemd/udev messages included (bnc#877021) - Add upstram patches for backlight 0001-backlight-Avoid-restoring-brightness-to-an-unreadabl.patch 0002-backlight-do-nothing-if-max_brightness-is-0.patch OBS-URL: https://build.opensuse.org/request/show/233680 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/systemd?expand=0&rev=186
32 lines
953 B
Diff
32 lines
953 B
Diff
From a213b7e977221ca96bbc1b19a5a879c912ba2488 Mon Sep 17 00:00:00 2001
|
|
From: Jeffrey Clark <h0tw1r3@gmail.com>
|
|
Date: Wed, 23 Apr 2014 22:37:43 +0200
|
|
Subject: [PATCH] analyze: fix plot with bad y size
|
|
|
|
systemd-analyze plot > test.svg produces output with all y and height
|
|
element attributes equal to zero. This of course causes the resulting
|
|
svg to appear blank (zero height). Bug does not affect x86. Looks like
|
|
a compiler optimization may be the culprit.
|
|
|
|
https://github.com/archlinuxarm/PKGBUILDs/issues/815
|
|
---
|
|
src/analyze/analyze.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git src/analyze/analyze.c src/analyze/analyze.c
|
|
index ba236d9..ebaa9d0 100644
|
|
--- src/analyze/analyze.c
|
|
+++ src/analyze/analyze.c
|
|
@@ -43,7 +43,7 @@
|
|
#include "pager.h"
|
|
|
|
#define SCALE_X (0.1 / 1000.0) /* pixels per us */
|
|
-#define SCALE_Y 20.0
|
|
+#define SCALE_Y (20.0)
|
|
|
|
#define compare(a, b) (((a) > (b))? 1 : (((b) > (a))? -1 : 0))
|
|
|
|
--
|
|
1.7.9.2
|
|
|