[Bug 782060] New: ntpq is very slow

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c0 Summary: ntpq is very slow Classification: openSUSE Product: openSUSE 12.2 Version: Final Platform: x86-64 OS/Version: openSUSE 12.2 Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: bwiedemann@suse.com QAContact: qa-bugs@suse.de CC: varkoly@suse.com Found By: Development Blocker: --- # time ntpq -pn remote refid st t when poll reach delay offset jitter ============================================================================== 127.127.1.0 .LOCL. 10 l 54m 64 0 0.000 0.000 0.000 *5.9.55.149 130.133.1.10 2 u 162 256 377 4.528 0.075 1.051 -176.28.8.111 187.95.28.233 3 u 64 256 377 13.549 -11.302 1.331 +38.229.71.1 172.16.32.4 2 u 137 256 377 117.416 1.492 2.391 +199.167.198.163 128.4.1.1 2 u 141 256 377 94.616 -2.757 0.575 real 0m0.900s user 0m0.780s sys 0m0.088s strace -o /tmp/ntpq.strace ntpq -pn grep "Active Measurement Protocol" /tmp/ntpq.strace|wc -l 64 So for some reason it is reading /etc/services 64 times. while strace -o /tmp/getent.strace getent services ntp shows that it just reads the file once. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c1 --- Comment #1 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-09-25 16:16:14 CEST --- for comparison: on a debian/6.0.5(squeeze) system with ntp-4.2.6 it takes 0.003 s reading /etc/services 8 times and the file is only 20kB there instead of our 748kB -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c kk zhang <kkzhang@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |kkzhang@suse.com AssignedTo|bnc-team-screening@forge.pr |varkoly@suse.com |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c2 --- Comment #2 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-11-12 15:20:19 CET --- Created an attachment (id=512792) --> (http://bugzilla.novell.com/attachment.cgi?id=512792) patch: don't ask for ntp service With help of Andreas Schwab I found this. I verified that this one-line patch speeds up ntpq -pn by a factor of 7. The alternative is to add hints.ai_socktype = SOCK_DGRAM; The underlying problem is that getaddrinfo will read /etc/services once for every possible protocol, if you don't specify either ai_socktype or ai_protocol and for protocols other than tcp and udp, it will read the big file until the very end. Also nscd is not configured to cache services. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c3 --- Comment #3 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-11-12 17:43:09 CET --- btw: in SLE-11-SP2, nscd supports caching services by default and even without that, ntpq -pn is faster (approx factor 5) only reading the full /etc/services 4 times and the beginning (up to port 123) of it another 4 times -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c4 --- Comment #4 from Andreas Schwab <schwab@suse.com> 2012-11-12 18:02:43 CET --- unscd doesn't appear to support services caching. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c5 Bernhard Wiedemann <bwiedemann@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |lmuelle@suse.com --- Comment #5 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-12-11 09:57:11 CET --- FYI, I opened https://build.opensuse.org/request/show/144377 which I tested on two different machines to give a speedup factor between 8 and 10. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c6 --- Comment #6 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-12-14 14:21:45 CET --- For fun I tested in kvm my old SuSE-8.2 based LiveCD from http://lsmod.de/bootcd/bmwinux-8.2-040808.iso with glibc-2.3.2 and xntp-4.1.1 and even without nscd it took only 3ms - way faster than later versions. strace showed that it opened /etc/services exactly once. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c7 --- Comment #7 from Bernhard Wiedemann <bwiedemann@suse.com> 2012-12-28 14:01:39 CET --- filed upstream at http://bugs.ntp.org/show_bug.cgi?id=2320 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c8 --- Comment #8 from Bernhard Wiedemann <bwiedemann@suse.com> 2013-01-18 15:00:17 CET --- This is an autogenerated message for OBS integration: This bug (782060) was mentioned in https://build.opensuse.org/request/show/148946 Factory / ntp -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

https://bugzilla.novell.com/show_bug.cgi?id=782060 https://bugzilla.novell.com/show_bug.cgi?id=782060#c9 Peter Varkoly <varkoly@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |CLOSED Resolution| |FIXED --- Comment #9 from Peter Varkoly <varkoly@suse.com> 2014-04-07 09:03:20 UTC --- patch applied -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 SMASH SMASH <smash_bz@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| | maint:planned:update -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard| maint:planned:update |maint:planned:update | |ibs:running:2324:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2324:important |ibs:running:2325:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2325:important |ibs:running:2325:important | |ibs:running:2324:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2325:important |ibs:running:2325:important |ibs:running:2324:important |ibs:running:2405:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2325:important |ibs:running:2325:important |ibs:running:2405:important |ibs:running:2405:important | |ibs:running:2324:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2325:important |ibs:running:2325:important |ibs:running:2405:important |ibs:running:2405:important |ibs:running:2324:important |ibs:running:2324:important | |ibs:running:2413:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |maint:planned:update |ibs:running:2325:important |ibs:running:2325:important |ibs:running:2405:important |ibs:running:2405:important |ibs:running:2324:important |ibs:running:2324:important |ibs:running:2413:important |ibs:running:2413:important | |maint:running:62642:low -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:planned:update |ibs:running:2325:important |ibs:running:2325:important |ibs:running:2405:important |ibs:running:2405:important |ibs:running:2324:important |ibs:running:2324:important |ibs:running:2413:important |ibs:running:2413:important |maint:running:62642:low |maint:running:62642:low | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:2325:important |ibs:running:2325:important |ibs:running:2405:important |ibs:running:2405:important |ibs:running:2324:important |ibs:running:2324:important |ibs:running:2413:important |ibs:running:2413:important |maint:running:62642:low |maint:running:62642:low | |obs:running:5024:important -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:2325:important |ibs:running:2324:important |ibs:running:2405:important |ibs:running:2413:important |ibs:running:2324:important |maint:running:62642:low |ibs:running:2413:important |obs:running:5024:important |maint:running:62642:low | |obs:running:5024:important | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c13 --- Comment #13 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:1175-1: An update that solves 12 vulnerabilities and has 8 fixes is now available. Category: security (important) Bug References: 782060,784760,916617,951559,951629,956773,962318,962784,962802,962960,962966,962970,962988,962994,962995,962997,963000,963002,975496,975981 CVE References: CVE-2015-5300,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158 Sources used: SUSE Linux Enterprise Server 11-SP4 (src): ntp-4.2.8p6-8.2 SUSE Linux Enterprise Debuginfo 11-SP4 (src): ntp-4.2.8p6-8.2 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c14 --- Comment #14 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:1177-1: An update that solves 12 vulnerabilities and has 8 fixes is now available. Category: security (important) Bug References: 782060,916617,937837,951559,951629,956773,962318,962784,962802,962960,962966,962970,962988,962994,962995,962997,963000,963002,975496,975981 CVE References: CVE-2015-5300,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158 Sources used: SUSE Linux Enterprise Software Development Kit 12-SP1 (src): yast2-ntp-client-3.1.22-6.2 SUSE Linux Enterprise Server 12-SP1 (src): ntp-4.2.8p6-8.2, yast2-ntp-client-3.1.22-6.2 SUSE Linux Enterprise Desktop 12-SP1 (src): ntp-4.2.8p6-8.2, yast2-ntp-client-3.1.22-6.2 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:2324:important |ibs:running:2413:important |ibs:running:2413:important |maint:running:62642:low |maint:running:62642:low |obs:running:5024:important |obs:running:5024:important | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c15 --- Comment #15 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:1247-1: An update that solves 28 vulnerabilities and has two fixes is now available. Category: security (important) Bug References: 782060,905885,910063,916617,920238,926510,936327,937837,942587,944300,946386,951559,951608,951629,954982,956773,962318,962784,962802,962960,962966,962970,962988,962994,962995,962997,963000,963002,975496,975981 CVE References: CVE-2015-5300,CVE-2015-7691,CVE-2015-7692,CVE-2015-7701,CVE-2015-7702,CVE-2015-7703,CVE-2015-7704,CVE-2015-7705,CVE-2015-7848,CVE-2015-7849,CVE-2015-7850,CVE-2015-7851,CVE-2015-7852,CVE-2015-7853,CVE-2015-7854,CVE-2015-7855,CVE-2015-7871,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158 Sources used: SUSE Linux Enterprise Software Development Kit 12 (src): yast2-ntp-client-3.1.12.4-8.2 SUSE Linux Enterprise Server 12 (src): ntp-4.2.8p6-46.5.2, yast2-ntp-client-3.1.12.4-8.2 SUSE Linux Enterprise Desktop 12 (src): ntp-4.2.8p6-46.5.2, yast2-ntp-client-3.1.12.4-8.2 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:2413:important |ibs:running:2413:important |maint:running:62642:low |maint:running:62642:low |obs:running:5024:important | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c16 --- Comment #16 from Swamp Workflow Management <swamp@suse.de> --- openSUSE-SU-2016:1292-1: An update that solves 12 vulnerabilities and has 8 fixes is now available. Category: security (important) Bug References: 782060,916617,937837,951559,951629,956773,962318,962784,962802,962960,962966,962970,962988,962994,962995,962997,963000,963002,975496,975981 CVE References: CVE-2015-5300,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158 Sources used: openSUSE Leap 42.1 (src): ntp-4.2.8p6-15.1, yast2-ntp-client-3.1.22-6.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|ibs:running:2413:important |maint:running:62642:low |maint:running:62642:low | -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c17 --- Comment #17 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:1311-1: An update that solves 30 vulnerabilities and has 6 fixes is now available. Category: security (important) Bug References: 782060,784760,905885,910063,916617,920183,920238,926510,936327,937837,942441,942587,943216,943218,944300,946386,951351,951559,951608,951629,954982,956773,962318,962784,962802,962960,962966,962970,962988,962994,962995,962997,963000,963002,975496,975981 CVE References: CVE-2015-5194,CVE-2015-5219,CVE-2015-5300,CVE-2015-7691,CVE-2015-7692,CVE-2015-7701,CVE-2015-7702,CVE-2015-7703,CVE-2015-7704,CVE-2015-7705,CVE-2015-7848,CVE-2015-7849,CVE-2015-7850,CVE-2015-7851,CVE-2015-7852,CVE-2015-7853,CVE-2015-7854,CVE-2015-7855,CVE-2015-7871,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158 Sources used: SUSE OpenStack Cloud 5 (src): ntp-4.2.8p6-41.1 SUSE Manager Proxy 2.1 (src): ntp-4.2.8p6-41.1 SUSE Manager 2.1 (src): ntp-4.2.8p6-41.1 SUSE Linux Enterprise Server 11-SP3-LTSS (src): ntp-4.2.8p6-41.1 SUSE Linux Enterprise Server 11-SP2-LTSS (src): ntp-4.2.8p6-41.1, yast2-ntp-client-2.17.14.1-1.12.1 SUSE Linux Enterprise Debuginfo 11-SP3 (src): ntp-4.2.8p6-41.1 SUSE Linux Enterprise Debuginfo 11-SP2 (src): ntp-4.2.8p6-41.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c18 --- Comment #18 from Bernhard Wiedemann <bwiedemann@suse.com> --- This is an autogenerated message for OBS integration: This bug (782060) was mentioned in https://build.opensuse.org/request/show/396591 13.2 / ntp -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low | |maint:released:oes11-sp2:62 | |657 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes11-sp2:62 |maint:released:oes2015:6265 |657 |6 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 |6 obs:running:5100:moderate -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 obs:running:5100:moderate |6 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c19 --- Comment #19 from Swamp Workflow Management <swamp@suse.de> --- openSUSE-SU-2016:1423-1: An update that fixes 37 vulnerabilities is now available. Category: security (moderate) Bug References: 782060,905885,910063,916617,920238,926510,936327,942587,944300,946386,951559,951608,951629,954982,956773,957226,962318,962784,962802,962960,962966,962970,962988,962995,963000,963002,975496,977446,977450,977451,977452,977455,977457,977458,977459,977461,977464 CVE References: CVE-2015-5300,CVE-2015-7691,CVE-2015-7692,CVE-2015-7701,CVE-2015-7702,CVE-2015-7703,CVE-2015-7704,CVE-2015-7705,CVE-2015-7848,CVE-2015-7849,CVE-2015-7850,CVE-2015-7851,CVE-2015-7852,CVE-2015-7853,CVE-2015-7854,CVE-2015-7855,CVE-2015-7871,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8139,CVE-2015-8140,CVE-2015-8158,CVE-2016-1547,CVE-2016-1548,CVE-2016-1549,CVE-2016-1550,CVE-2016-1551,CVE-2016-2516,CVE-2016-2517,CVE-2016-2518,CVE-2016-2519 Sources used: openSUSE 13.2 (src): ntp-4.2.8p7-25.15.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c20 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 |6 | |maint:running:62822:importa | |nt --- Comment #20 from Swamp Workflow Management <swamp@suse.de> --- An update workflow for this issue was started. This issue was rated as important. Please submit fixed packages until 2016-06-21. When done, reassign the bug to security-team@suse.de. https://swamp.suse.de/webswamp/wf/62822 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 |6 |maint:running:62822:importa |maint:running:62822:importa |nt |nt | |maint:released:sle10-sp4:62 | |913 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 |6 |maint:running:62822:importa |maint:running:62822:importa |nt |nt |maint:released:sle10-sp4:62 |maint:released:sle10-sp4:62 |913 |913 | |maint:released:sle10-sp3:62 | |912 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 http://bugzilla.novell.com/show_bug.cgi?id=782060#c21 --- Comment #21 from Swamp Workflow Management <swamp@suse.de> --- SUSE-SU-2016:1912-1: An update that solves 43 vulnerabilities and has 9 fixes is now available. Category: security (important) Bug References: 782060,784760,905885,910063,916617,920183,920238,920893,920895,920905,924202,926510,936327,943218,943221,944300,951351,951559,951629,952611,957226,962318,962784,962802,962960,962966,962970,962988,962995,963000,963002,975496,977450,977451,977452,977455,977457,977458,977459,977461,977464,979302,981422,982056,982064,982065,982066,982067,982068,988417,988558,988565 CVE References: CVE-2015-1798,CVE-2015-1799,CVE-2015-5194,CVE-2015-5300,CVE-2015-7691,CVE-2015-7692,CVE-2015-7701,CVE-2015-7702,CVE-2015-7703,CVE-2015-7704,CVE-2015-7705,CVE-2015-7848,CVE-2015-7849,CVE-2015-7850,CVE-2015-7851,CVE-2015-7852,CVE-2015-7853,CVE-2015-7854,CVE-2015-7855,CVE-2015-7871,CVE-2015-7973,CVE-2015-7974,CVE-2015-7975,CVE-2015-7976,CVE-2015-7977,CVE-2015-7978,CVE-2015-7979,CVE-2015-8138,CVE-2015-8158,CVE-2016-1547,CVE-2016-1548,CVE-2016-1549,CVE-2016-1550,CVE-2016-1551,CVE-2016-2516,CVE-2016-2517,CVE-2016-2518,CVE-2016-2519,CVE-2016-4953,CVE-2016-4954,CVE-2016-4955,CVE-2016-4956,CVE-2016-4957 Sources used: SUSE Linux Enterprise Server 10 SP4 LTSS (src): ntp-4.2.8p8-0.7.1 -- You are receiving this mail because: You are on the CC list for the bug.

http://bugzilla.novell.com/show_bug.cgi?id=782060 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Whiteboard|maint:running:62642:low |maint:running:62642:low |maint:released:oes2015:6265 |maint:released:oes2015:6265 |6 |6 |maint:running:62822:importa |maint:released:sle10-sp4:62 |nt |913 |maint:released:sle10-sp4:62 |maint:released:sle10-sp3:62 |913 |912 |maint:released:sle10-sp3:62 | |912 | -- You are receiving this mail because: You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com