[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#799193: marked as done (linux-image-4.1.0-2-amd64: two messages on one line in syslog)



Your message dated Tue, 20 Jul 2021 12:20:47 +0000
with message-id <E1m5ojv-000F92-J8@fasolo.debian.org>
and subject line Bug#799193: fixed in linux 5.10.46-2
has caused the Debian Bug report #799193,
regarding linux-image-4.1.0-2-amd64: two messages on one line in syslog
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
799193: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=799193
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: src:linux
Version: 4.1.6-1
Severity: minor
Tags: patch

Dear Maintainer,

I have been getting ( always ? ) messages in syslog that have been
concatenated together like this;

Sep 16 12:36:01 guyuk kernel: [211055.748456] toshiba_haps: Received event: 0x81<4>[211187.465478] ipt Default REJECT IN=wlan0 OUT= SRC=192.168.1.1 DST=192.168.1.255 LEN=234 TOS=0x00 PREC=0x00 TTL=64 ID=0 DF PROTO=UDP SPT=138 DPT=138 LEN=214 MARK=0x90 


After adding a newline in the kernel source for the toshiba haps module
it looks like this;

Sep 16 13:04:40 guyuk kernel: [ 1279.189242] toshiba_haps: Received event: 0x80 
Sep 16 13:04:45 guyuk kernel: [ 1283.565672] toshiba_haps: Received event: 0x81
Sep 16 13:06:11 guyuk kernel: [ 1369.861535] toshiba_haps: Received event: 0x80
Sep 16 13:06:13 guyuk kernel: [ 1371.863018] toshiba_haps: Received event: 0x81


Dwight


-- Package-specific info:
** Kernel log: boot messages should be attached


-- System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'unstable'), (500, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.1.7-grsec+ (SMP w/8 CPU cores)
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages linux-image-4.1.0-2-amd64 depends on:
ii  debconf [debconf-2.0]                   1.5.57
ii  initramfs-tools [linux-initramfs-tool]  0.120
ii  kmod                                    21-1
ii  linux-base                              4.0

Versions of packages linux-image-4.1.0-2-amd64 recommends:
pn  firmware-linux-free  <none>
ii  irqbalance           1.0.6-3

Versions of packages linux-image-4.1.0-2-amd64 suggests:
ii  debian-kernel-handbook         1.0.16
pn  grub-pc | grub-efi | extlinux  <none>
pn  linux-doc-4.1                  <none>

Versions of packages linux-image-4.1.0-2-amd64 is related to:
ii  firmware-atheros        0.44
pn  firmware-bnx2           <none>
pn  firmware-bnx2x          <none>
pn  firmware-brcm80211      <none>
pn  firmware-intelwimax     <none>
pn  firmware-ipw2x00        <none>
pn  firmware-ivtv           <none>
pn  firmware-iwlwifi        <none>
pn  firmware-libertas       <none>
pn  firmware-linux          <none>
pn  firmware-linux-nonfree  <none>
pn  firmware-myricom        <none>
pn  firmware-netxen         <none>
pn  firmware-qlogic         <none>
pn  firmware-ralink         <none>
pn  firmware-realtek        <none>
pn  xen-hypervisor          <none>

-- debconf information excluded

--- a/drivers/platform/x86/toshiba_haps.c	2015-09-14 00:54:55.468417162 -0400
+++ b/drivers/platform/x86/toshiba_haps.c	2015-09-16 08:36:58.589489003 -0400
@@ -133,7 +133,7 @@ static struct attribute_group haps_attr_
  */
 static void toshiba_haps_notify(struct acpi_device *device, u32 event)
 {
-	pr_info("Received event: 0x%x", event);
+	pr_info("Received event: 0x%x\n", event);
 
 	acpi_bus_generate_netlink_event(device->pnp.device_class,
 					dev_name(&device->dev),

--- End Message ---
--- Begin Message ---
Source: linux
Source-Version: 5.10.46-2
Done: Salvatore Bonaccorso <carnil@debian.org>

We believe that the bug you reported is fixed in the latest version of
linux, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 799193@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Salvatore Bonaccorso <carnil@debian.org> (supplier of updated linux package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 20 Jul 2021 14:06:36 +0200
Source: linux
Architecture: source
Version: 5.10.46-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Kernel Team <debian-kernel@lists.debian.org>
Changed-By: Salvatore Bonaccorso <carnil@debian.org>
Closes: 799193 989778
Changes:
 linux (5.10.46-2) unstable; urgency=medium
 .
   * swiotlb: manipulate orig_addr when tlb_addr has offset (Closes: #989778)
   * KVM: do not allow mapping valid but non-reference-counted pages
     (CVE-2021-22543)
   * [x86] platform/x86: toshiba_haps: Fix missing newline in pr_debug call in
     toshiba_haps_notify (Closes: #799193)
   * seq_file: Disallow extremely large seq buffer allocations (CVE-2021-33909)
Checksums-Sha1:
 cfa4ba607daa9d3cce40579b29374f80d1953f88 195000 linux_5.10.46-2.dsc
 da3f94fb5d31ba1feb5932d9be96f752c397796e 1402432 linux_5.10.46-2.debian.tar.xz
 8a3c0fdde9a16f7e9a735c7d6fa7e81a208f9149 6224 linux_5.10.46-2_source.buildinfo
Checksums-Sha256:
 50b9cbf64e14d279a2ffccdb0d7b8bb96673e0e103d0a81a7e9418e443889914 195000 linux_5.10.46-2.dsc
 b16e2f69133d813315ae5e7e9764e307449db2a2e7cc2b840c7e159ca5ecfce4 1402432 linux_5.10.46-2.debian.tar.xz
 dd406d2d27e2e1c829d0815b774ee1f327f0164b9929f1ac3c6d5cfa52f6129c 6224 linux_5.10.46-2_source.buildinfo
Files:
 d59408c69973937c15778c6f7f226201 195000 kernel optional linux_5.10.46-2.dsc
 8596cdc630bae510808bbbab3aa64eb8 1402432 kernel optional linux_5.10.46-2.debian.tar.xz
 2ad5231b6eb6a89a46d55a2f959d047f 6224 kernel optional linux_5.10.46-2_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQKmBAEBCgCQFiEERkRAmAjBceBVMd3uBUy48xNDz0QFAmD2vLpfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDQ2
NDQ0MDk4MDhDMTcxRTA1NTMxRERFRTA1NENCOEYzMTM0M0NGNDQSHGNhcm5pbEBk
ZWJpYW4ub3JnAAoJEAVMuPMTQ89EJksP/jRye9xcFN/xY5fKWYtc93VgvYHxpjqE
315+L92qTxnE14nwzK95EN8OMOP+e0P3NjM+vDeWJLZRB5TNnt373TqpEXe8htcr
vNHmnu8XQ22NOHs9HJBVn3was5pVxDinr2YwBHeQe0x7T7QJC3ChhuX0k4HPtk7t
bODRDsV1cjybcR2FkApCyaCR4V/B8thafcaJ7kTznTmItMvhzU+Wmtp2ETjzb/n5
IlMNIlL/YSuNnsB34dq6MSXYI8Mr92AA0JG01e6OULPEOsbIiTTdvbrSmKfnhGs6
txHkx4kxT3MdPlhcZs/6FOss9ZH2ZIFRtZtFUftSmEILMsmZnoDfcKaGtvTRScB/
Qjy+4GDEXACRqj4THXPzWKAm8LGNKF4fFQ7W3l4grGPODe4Olp4KhqlxdWViN0mi
thKnCdFAfz8CscQpvsFBMhvcYt9lJ3hQML1MoTAyEQGEWXoAK0PxQhvP3/inCPvo
gEyyv7CIxN4wr7o03d2NQpjs/xFlqoDwTzk/aeiTM/GlHUZ9AVyeLTz/1eXJCCP+
TVCLFLwwNr20eSSILq7yezBkvPx9yy6pv57+KOG6U+aEbAEyIrsEFXe6EUzP7+9Q
ksgqlWPnjQ38f924m+++SnIqRqL7q/Fh40Djg5qNokoQUrXhf1vqgPdyde0/VUB/
0I8DCRrSiUow
=hgVo
-----END PGP SIGNATURE-----

--- End Message ---

Reply to: