All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [Powertop] Fix crash due to unbounded string copies
@ 2015-12-01 23:14 Alexandra Yates
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandra Yates @ 2015-12-01 23:14 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 619 bytes --]

Hi Nivedita,

To hold the commit message we can revert the patch and reapply it with 
the original commit.

Thank you,
Alexandra.



On 11/23/2015 12:30 PM, Jan Engelhardt wrote:
>
> On Monday 2015-11-23 20:39, Swaminathan, Nivedita wrote:
>
>> Thank you for sending your patches. Your patches have been added to the github repository.
>
> Was there any particular reason you could not retain the commit messages?
> _______________________________________________
> PowerTop mailing list
> PowerTop(a)lists.01.org
> https://lists.01.org/mailman/listinfo/powertop
>

-- 
Thank you,
<Alexandra>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Powertop] Fix crash due to unbounded string copies
@ 2015-11-23 20:30 Jan Engelhardt
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Engelhardt @ 2015-11-23 20:30 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 232 bytes --]


On Monday 2015-11-23 20:39, Swaminathan, Nivedita wrote:

>Thank you for sending your patches. Your patches have been added to the github repository.

Was there any particular reason you could not retain the commit messages?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Powertop] Fix crash due to unbounded string copies
@ 2015-11-23 19:39 Swaminathan, Nivedita
  0 siblings, 0 replies; 4+ messages in thread
From: Swaminathan, Nivedita @ 2015-11-23 19:39 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 3165 bytes --]

Thank you for sending your patches. Your patches have been added to the github repository.

Regards,
Nivedita

-----Original Message-----
From: PowerTop [mailto:powertop-bounces(a)lists.01.org] On Behalf Of Jan Engelhardt
Sent: Friday, November 13, 2015 7:50 AM
To: powertop(a)lists.01.org
Subject: [Powertop] Fix crash due to unbounded string copies


The following changes since commit 35057dc9d707076a9fe5fee17e2c8357a942e167:

  PowerTOP v2.8 (2015-11-05 15:47:37 -0800)

are available in the git repository at:

  git://github.com/jengelh/powertop master

for you to fetch changes up to f212625d0acbc6340e6b61b1538f318302c8cb90:

  Avoid hardcoding magic values when sizeof can be used (2015-11-13 15:07:56 +0100)

----------------------------------------------------------------
Jan Engelhardt (2):
      Fix crash due to buffer overruns
      Avoid hardcoding magic values when sizeof can be used

 src/calibrate/calibrate.cpp    | 16 ++++++------
 src/cpu/abstract_cpu.cpp       | 18 ++++++-------
 src/cpu/cpu.cpp                | 18 ++++++-------
 src/cpu/cpu_linux.cpp          | 36 +++++++++++++-------------
 src/cpu/cpudevice.cpp          |  5 ++--
 src/cpu/intel_cpus.cpp         |  6 ++---
 src/devices/ahci.cpp           | 58 +++++++++++++++++++++---------------------
 src/devices/alsa.cpp           | 34 ++++++++++++-------------
 src/devices/backlight.cpp      | 18 ++++++-------
 src/devices/devfreq.cpp        |  2 +-
 src/devices/device.cpp         |  4 +--
 src/devices/i915-gpu.cpp       |  6 ++---
 src/devices/network.cpp        | 35 ++++++++++++-------------
 src/devices/rfkill.cpp         | 30 +++++++++++-----------
 src/devices/runtime_pm.cpp     | 34 ++++++++++++-------------
 src/devices/thinkpad-fan.cpp   |  2 +-
 src/devices/thinkpad-light.cpp |  2 +-
 src/devices/usb.cpp            | 40 ++++++++++++++---------------
 src/devlist.cpp                | 14 +++++-----
 src/lib.cpp                    | 10 ++++----
 src/lib.h                      |  7 +++++
 src/main.cpp                   |  6 ++---
 src/measurement/acpi.cpp       | 11 ++++----
 src/measurement/sysfs.cpp      |  2 +-
 src/parameters/parameters.cpp  |  4 +--
 src/process/do_process.cpp     | 36 +++++++++++++-------------
 src/process/interrupt.cpp      |  4 +--
 src/process/process.cpp        |  7 ++---
 src/process/processdevice.cpp  |  2 +-
 src/process/timer.cpp          |  2 +-
 src/process/work.cpp           |  2 +-
 src/report/report.cpp          |  4 +--
 src/tuning/bluetooth.cpp       |  4 +--
 src/tuning/ethernet.cpp        |  6 ++---
 src/tuning/runtime.cpp         | 14 +++++-----
 src/tuning/tunable.cpp         | 15 ++++++-----
 src/tuning/tuning.cpp          |  4 +--
 src/tuning/tuningi2c.cpp       | 18 ++++++-------
 src/tuning/tuningsysfs.cpp     | 14 +++++-----
 src/tuning/tuningusb.cpp       | 28 ++++++++++----------
 src/tuning/wifi.cpp            |  6 ++---
 41 files changed, 298 insertions(+), 286 deletions(-) _______________________________________________
PowerTop mailing list
PowerTop(a)lists.01.org
https://lists.01.org/mailman/listinfo/powertop

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Powertop] Fix crash due to unbounded string copies
@ 2015-11-13 15:50 Jan Engelhardt
  0 siblings, 0 replies; 4+ messages in thread
From: Jan Engelhardt @ 2015-11-13 15:50 UTC (permalink / raw)
  To: powertop

[-- Attachment #1: Type: text/plain, Size: 2658 bytes --]


The following changes since commit 35057dc9d707076a9fe5fee17e2c8357a942e167:

  PowerTOP v2.8 (2015-11-05 15:47:37 -0800)

are available in the git repository at:

  git://github.com/jengelh/powertop master

for you to fetch changes up to f212625d0acbc6340e6b61b1538f318302c8cb90:

  Avoid hardcoding magic values when sizeof can be used (2015-11-13 15:07:56 +0100)

----------------------------------------------------------------
Jan Engelhardt (2):
      Fix crash due to buffer overruns
      Avoid hardcoding magic values when sizeof can be used

 src/calibrate/calibrate.cpp    | 16 ++++++------
 src/cpu/abstract_cpu.cpp       | 18 ++++++-------
 src/cpu/cpu.cpp                | 18 ++++++-------
 src/cpu/cpu_linux.cpp          | 36 +++++++++++++-------------
 src/cpu/cpudevice.cpp          |  5 ++--
 src/cpu/intel_cpus.cpp         |  6 ++---
 src/devices/ahci.cpp           | 58 +++++++++++++++++++++---------------------
 src/devices/alsa.cpp           | 34 ++++++++++++-------------
 src/devices/backlight.cpp      | 18 ++++++-------
 src/devices/devfreq.cpp        |  2 +-
 src/devices/device.cpp         |  4 +--
 src/devices/i915-gpu.cpp       |  6 ++---
 src/devices/network.cpp        | 35 ++++++++++++-------------
 src/devices/rfkill.cpp         | 30 +++++++++++-----------
 src/devices/runtime_pm.cpp     | 34 ++++++++++++-------------
 src/devices/thinkpad-fan.cpp   |  2 +-
 src/devices/thinkpad-light.cpp |  2 +-
 src/devices/usb.cpp            | 40 ++++++++++++++---------------
 src/devlist.cpp                | 14 +++++-----
 src/lib.cpp                    | 10 ++++----
 src/lib.h                      |  7 +++++
 src/main.cpp                   |  6 ++---
 src/measurement/acpi.cpp       | 11 ++++----
 src/measurement/sysfs.cpp      |  2 +-
 src/parameters/parameters.cpp  |  4 +--
 src/process/do_process.cpp     | 36 +++++++++++++-------------
 src/process/interrupt.cpp      |  4 +--
 src/process/process.cpp        |  7 ++---
 src/process/processdevice.cpp  |  2 +-
 src/process/timer.cpp          |  2 +-
 src/process/work.cpp           |  2 +-
 src/report/report.cpp          |  4 +--
 src/tuning/bluetooth.cpp       |  4 +--
 src/tuning/ethernet.cpp        |  6 ++---
 src/tuning/runtime.cpp         | 14 +++++-----
 src/tuning/tunable.cpp         | 15 ++++++-----
 src/tuning/tuning.cpp          |  4 +--
 src/tuning/tuningi2c.cpp       | 18 ++++++-------
 src/tuning/tuningsysfs.cpp     | 14 +++++-----
 src/tuning/tuningusb.cpp       | 28 ++++++++++----------
 src/tuning/wifi.cpp            |  6 ++---
 41 files changed, 298 insertions(+), 286 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-12-01 23:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-01 23:14 [Powertop] Fix crash due to unbounded string copies Alexandra Yates
  -- strict thread matches above, loose matches on Subject: below --
2015-11-23 20:30 Jan Engelhardt
2015-11-23 19:39 Swaminathan, Nivedita
2015-11-13 15:50 Jan Engelhardt

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.