Package: release.debian.org Severity: normal Tags: jessie User: release.debian....@packages.debian.org Usertags: pu
Hi, I'd like to make a stable upload for systemd, fixing 3 important bugs. Especially the mptsas module loading failure seems to hit quite a few people, so I'd like to get that into 8.2 if possible. Here's the changelog systemd (215-17+deb8u2) stable; urgency=medium * Disable default DNS servers in systemd-resolved. In v215 they are always added to resolv.conf as fallback entries even when DNS servers were acquired from systemd-networkd. (Closes: #787731) * Use strictly versioned dependendency on libsystemd-dev for the transitional dev packages. The .pc files of the compat libraries declare a strictly versioned dependency on libsystemd.pc, so reflect that in the package dependencies as well. (Closes: #794290) * udev: Increase udev event timeout to 180s. Some kernel modules, like mptsas, can take longer then 30s to load so udevd kills the (hanging) worker responsible for loading the module. Increase timeout from 30s to 180s to workaround this issue. Thanks Faidon Liambotis. (Closes: #787191) -- Michael Biebl <bi...@debian.org> Sat, 29 Aug 2015 17:17:04 +0200 Full debdiff attached. Cheers, Michael [1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787191 -- System Information: Debian Release: stretch/sid APT prefers unstable APT policy: (500, 'unstable'), (200, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 4.1.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system)
diff --git a/debian/changelog b/debian/changelog index c51e9a9..e534caa 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,20 @@ +systemd (215-17+deb8u2) stable; urgency=medium + + * Disable default DNS servers in systemd-resolved. In v215 they are always + added to resolv.conf as fallback entries even when DNS servers were + acquired from systemd-networkd. (Closes: #787731) + * Use strictly versioned dependendency on libsystemd-dev for the + transitional dev packages. The .pc files of the compat libraries declare + a strictly versioned dependency on libsystemd.pc, so reflect that in the + package dependencies as well. (Closes: #794290) + * udev: Increase udev event timeout to 180s. Some kernel modules, like + mptsas, can take longer then 30s to load so udevd kills the (hanging) + worker responsible for loading the module. Increase timeout from 30s to + 180s to workaround this issue. Thanks Faidon Liambotis. + (Closes: #787191) + + -- Michael Biebl <bi...@debian.org> Sat, 29 Aug 2015 17:17:04 +0200 + systemd (215-17+deb8u1) stable; urgency=medium [ Michael Biebl ] diff --git a/debian/control b/debian/control index 2803b2c..aa02024 100644 --- a/debian/control +++ b/debian/control @@ -184,7 +184,7 @@ Multi-Arch: same Section: oldlibs Priority: extra Depends: ${misc:Depends}, - libsystemd-dev (>= ${binary:Version}) + libsystemd-dev (= ${binary:Version}) Description: systemd login utility library (transitional package) The libsystemd-login library provides an interface for the systemd-logind service which is used to track user sessions and seats. @@ -214,7 +214,7 @@ Multi-Arch: same Section: oldlibs Priority: extra Depends: ${misc:Depends}, - libsystemd-dev (>= ${binary:Version}) + libsystemd-dev (= ${binary:Version}) Description: systemd utility library (transitional package) The sd-daemon library provides a reference implementation of various APIs for new-style daemons, as implemented by the systemd init system. @@ -244,7 +244,7 @@ Multi-Arch: same Section: oldlibs Priority: extra Depends: ${misc:Depends}, - libsystemd-dev (>= ${binary:Version}) + libsystemd-dev (= ${binary:Version}) Description: systemd journal utility library (transitional package) The libsystemd-journal library provides an interface for the systemd journal service. @@ -274,7 +274,7 @@ Multi-Arch: same Section: oldlibs Priority: extra Depends: ${misc:Depends}, - libsystemd-dev (>= ${binary:Version}) + libsystemd-dev (= ${binary:Version}) Description: systemd 128 bit ID utility library (transitional package) The libsystemd-id128 library provides utility functions for generating 128 bit IDs. diff --git a/debian/patches/series b/debian/patches/series index 55cefa9..25206a0 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -207,3 +207,4 @@ syslog-Increase-max_dgram_qlen-by-pulling-in-systemd.patch Skip-filesystem-check-if-already-done-by-the-initram.patch cryptsetup-Implement-offset-and-skip-options.patch Revert-core-one-step-back-again-for-nspawn-we-actual.patch +udev-increase-udev-event-timeout-to-180s.patch diff --git a/debian/patches/udev-increase-udev-event-timeout-to-180s.patch b/debian/patches/udev-increase-udev-event-timeout-to-180s.patch new file mode 100644 index 0000000..9f761d2 --- /dev/null +++ b/debian/patches/udev-increase-udev-event-timeout-to-180s.patch @@ -0,0 +1,29 @@ +From: Faidon Liambotis <parav...@debian.org> +Date: Sat, 29 Aug 2015 17:05:01 +0200 +Subject: udev: increase udev event timeout to 180s + +Some kernel modules, like mptsas, can take longer then 30s to load so +udevd kills the (hanging) worker responsible for loading the module. + +Increase timeout from 30s to 180s to workaround this issue, following +the upstream change which first increased the timeout from 30s to 60s +(2e92633) and subsequently to 180s (b5338a1). + +Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=787191 +--- + src/udev/udevd.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/udev/udevd.c b/src/udev/udevd.c +index a45d324..072499c 100644 +--- a/src/udev/udevd.c ++++ b/src/udev/udevd.c +@@ -1415,7 +1415,7 @@ int main(int argc, char *argv[]) + if (worker->state != WORKER_RUNNING) + continue; + +- if ((now(CLOCK_MONOTONIC) - worker->event_start_usec) > 30 * USEC_PER_SEC) { ++ if ((now(CLOCK_MONOTONIC) - worker->event_start_usec) > 180 * USEC_PER_SEC) { + log_error("worker [%u] %s timeout; kill it", worker->pid, + worker->event ? worker->event->devpath : "<idle>"); + kill(worker->pid, SIGKILL); diff --git a/debian/rules b/debian/rules index 5f0a7c3..5f3856a 100755 --- a/debian/rules +++ b/debian/rules @@ -26,6 +26,7 @@ CONFFLAGS = \ --disable-sysusers \ --disable-silent-rules \ --with-ntp-servers="0.debian.pool.ntp.org 1.debian.pool.ntp.org 2.debian.pool.ntp.org 3.debian.pool.ntp.org" \ + --with-dns-servers="" \ --with-system-uid-max=999 \ --with-system-gid-max=999