Re: [RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
Randy Dunlap writes: > On 06/06/2018 03:32 PM, Dirk Gouders wrote: >> Randy Dunlap writes: >> >>> On 06/06/2018 02:56 PM, Dirk Gouders wrote: >>>> Hello, >>>> >>>> being an Emacs user, I frequently find myself pressing CTRL-s in m

Re: [RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
Randy Dunlap writes: > On 06/06/2018 03:32 PM, Dirk Gouders wrote: >> Randy Dunlap writes: >> >>> On 06/06/2018 02:56 PM, Dirk Gouders wrote: >>>> Hello, >>>> >>>> being an Emacs user, I frequently find myself pressing CTRL-s in m

Re: [RFC 1/1] Emacs-like isearch for mconf.

2018-06-06 Thread Dirk Gouders
Segher Boessenkool writes: > On Wed, Jun 06, 2018 at 11:58:55PM +0200, Dirk Gouders wrote: >> @@ -332,6 +332,7 @@ int init_dialog(const char *backtitle) >> >> keypad(stdscr, TRUE); >> cbreak(); >> +raw(); /* Enable CTRL-sequence

Re: [RFC 1/1] Emacs-like isearch for mconf.

2018-06-06 Thread Dirk Gouders
Segher Boessenkool writes: > On Wed, Jun 06, 2018 at 11:58:55PM +0200, Dirk Gouders wrote: >> @@ -332,6 +332,7 @@ int init_dialog(const char *backtitle) >> >> keypad(stdscr, TRUE); >> cbreak(); >> +raw(); /* Enable CTRL-sequence

Re: [RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
Randy Dunlap writes: > On 06/06/2018 02:56 PM, Dirk Gouders wrote: >> Hello, >> >> being an Emacs user, I frequently find myself pressing CTRL-s in mconf >> to search for some menu entry, especially in large menus. >> >> I decided to implement a basic

Re: [RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
Randy Dunlap writes: > On 06/06/2018 02:56 PM, Dirk Gouders wrote: >> Hello, >> >> being an Emacs user, I frequently find myself pressing CTRL-s in mconf >> to search for some menu entry, especially in large menus. >> >> I decided to implement a basic

[RFC 1/1] Emacs-like isearch for mconf.

2018-06-06 Thread Dirk Gouders
--- scripts/kconfig/lxdialog/dialog.h | 5 ++ scripts/kconfig/lxdialog/menubox.c | 140 - scripts/kconfig/lxdialog/util.c| 1 + 3 files changed, 145 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/lxdialog/dialog.h

[RFC 1/1] Emacs-like isearch for mconf.

2018-06-06 Thread Dirk Gouders
--- scripts/kconfig/lxdialog/dialog.h | 5 ++ scripts/kconfig/lxdialog/menubox.c | 140 - scripts/kconfig/lxdialog/util.c| 1 + 3 files changed, 145 insertions(+), 1 deletion(-) diff --git a/scripts/kconfig/lxdialog/dialog.h

[RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
anyone find this functionality useful. Thanks, Dirk Dirk Gouders (1): Emacs-like isearch for mconf. scripts/kconfig/lxdialog/dialog.h | 5 ++ scripts/kconfig/lxdialog/menubox.c | 140 - scripts/kconfig/lxdialog/util.c| 1 + 3 files changed, 145

[RFC 0/1] mconf: Emacs-like isearch

2018-06-06 Thread Dirk Gouders
anyone find this functionality useful. Thanks, Dirk Dirk Gouders (1): Emacs-like isearch for mconf. scripts/kconfig/lxdialog/dialog.h | 5 ++ scripts/kconfig/lxdialog/menubox.c | 140 - scripts/kconfig/lxdialog/util.c| 1 + 3 files changed, 145

[RFC PATCH] mconf: expand show_all_options to choices' checklist menus

2016-04-30 Thread Dirk Gouders
Boolean choices' checklist menus are currently immune against the 'z' key that toggles visibility of all options. Expansion of the 'z' toggle could be of use when debugging problems with comlex choice menus. A new tag 'z' for dialog_items was introduced for this purpose. Signed-off-by: Dirk

[RFC PATCH] mconf: expand show_all_options to choices' checklist menus

2016-04-30 Thread Dirk Gouders
Boolean choices' checklist menus are currently immune against the 'z' key that toggles visibility of all options. Expansion of the 'z' toggle could be of use when debugging problems with comlex choice menus. A new tag 'z' for dialog_items was introduced for this purpose. Signed-off-by: Dirk

Re: [PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-21 Thread Dirk Gouders
Bobby Powers writes: > Hi, > > Dirk Gouders wrote: >> Yes, I was suggesting something similar (but without founded reasoning), >> some time ago [1]. > > I submitted a patch for this a few days ago, but I didn't realize I > should CC linux-kbuild@ (my bad): > h

Re: [PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-21 Thread Dirk Gouders
Bobby Powers bobbypow...@gmail.com writes: Hi, Dirk Gouders d...@gouders.net wrote: Yes, I was suggesting something similar (but without founded reasoning), some time ago [1]. I submitted a patch for this a few days ago, but I didn't realize I should CC linux-kbuild@ (my bad): https

Re: [PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-20 Thread Dirk Gouders
Ingo Molnar writes: > * Dirk Gouders wrote: > >> For example on Gentoo systems where _FORTIFY_SOURCE is set by default, >> `make -C tools/perf' fails, because of the macro being redefined. >> >> Fix that by a feature-check analogous to tools/perf/config/Makefi

[PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-20 Thread Dirk Gouders
For example on Gentoo systems where _FORTIFY_SOURCE is set by default, `make -C tools/perf' fails, because of the macro being redefined. Fix that by a feature-check analogous to tools/perf/config/Makefile. Signed-off-by: Dirk Gouders --- tools/lib/api/Makefile | 9 - 1 file changed, 8

[PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-20 Thread Dirk Gouders
For example on Gentoo systems where _FORTIFY_SOURCE is set by default, `make -C tools/perf' fails, because of the macro being redefined. Fix that by a feature-check analogous to tools/perf/config/Makefile. Signed-off-by: Dirk Gouders d...@gouders.net --- tools/lib/api/Makefile | 9 - 1

Re: [PATCH] tools/lib/api/Makefile: Add feature check for _FORTIFY_SOURCE

2015-04-20 Thread Dirk Gouders
Ingo Molnar mi...@kernel.org writes: * Dirk Gouders d...@gouders.net wrote: For example on Gentoo systems where _FORTIFY_SOURCE is set by default, `make -C tools/perf' fails, because of the macro being redefined. Fix that by a feature-check analogous to tools/perf/config/Makefile

Re: [PATCH v2 1/2] kconfig: fix bad syntactic transformation in expr.c

2014-10-07 Thread Dirk Gouders
CC: Michal added Paul Bolle writes: > On Mon, 2014-09-22 at 19:13 +0200, Martin Walch wrote: >> expr_eliminate_dups2() in scripts/kconfig/expr.c applies two bad >> inference rules: >> >> (FOO || BAR) && (!FOO && !BAR) -> n >> (FOO && BAR) || (!FOO || !BAR) -> y >> >> They would be correct in

Re: [PATCH v2 1/2] kconfig: fix bad syntactic transformation in expr.c

2014-10-07 Thread Dirk Gouders
CC: Michal added Paul Bolle pebo...@tiscali.nl writes: On Mon, 2014-09-22 at 19:13 +0200, Martin Walch wrote: expr_eliminate_dups2() in scripts/kconfig/expr.c applies two bad inference rules: (FOO || BAR) (!FOO !BAR) - n (FOO BAR) || (!FOO || !BAR) - y They would be correct in

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-20 Thread Dirk Gouders
Bjorn Helgaas writes: > On Sat, Sep 13, 2014 at 09:41:34PM +0200, Dirk Gouders wrote: >> So, I did some tests on the VX50 which probably wasn't the worst idea, >> because it behaves different than the test machine. >> >> Summary: >> >> 1) Bjor

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-20 Thread Dirk Gouders
Bjorn Helgaas bhelg...@google.com writes: On Sat, Sep 13, 2014 at 09:41:34PM +0200, Dirk Gouders wrote: So, I did some tests on the VX50 which probably wasn't the worst idea, because it behaves different than the test machine. Summary: 1) Bjorn's back pocket patch works on the VX50

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-19 Thread Dirk Gouders
Dirk Gouders writes: > Yinghai Lu writes: > >> On Fri, Sep 12, 2014 at 5:11 PM, Dirk Gouders wrote: >>> Yinghai Lu writes: >>> >>> Yes, I skip them in pci_scan_device() to get the unused bus number space >>> that 0a.0 and 0b.

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-19 Thread Dirk Gouders
Yinghai Lu writes: > On Fri, Sep 12, 2014 at 5:11 PM, Dirk Gouders wrote: >> Yinghai Lu writes: >> >> Yes, I skip them in pci_scan_device() to get the unused bus number space >> that 0a.0 and 0b.0 then can use when reconfiguration is triggered. > > That is n

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-19 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 5:11 PM, Dirk Gouders d...@gouders.net wrote: Yinghai Lu ying...@kernel.org writes: Yes, I skip them in pci_scan_device() to get the unused bus number space that 0a.0 and 0b.0 then can use when reconfiguration is triggered

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-19 Thread Dirk Gouders
Dirk Gouders d...@gouders.net writes: Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 5:11 PM, Dirk Gouders d...@gouders.net wrote: Yinghai Lu ying...@kernel.org writes: Yes, I skip them in pci_scan_device() to get the unused bus number space that 0a.0 and 0b.0 then can use

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-14 Thread Dirk Gouders
Andreas Noever writes: > Updated version with dmi strings. Dirk can you test this (without pci=nocrs) > and look for > PCI: Ignoring host bridge windows from ACPI > If it does not show up then I have messed up the DMI_MATCH macros. In that > case > please try to boot with pci=nocrs. Reboot

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-14 Thread Dirk Gouders
Andreas Noever writes: > This is an implementation of fix 1 (Add a quirk to fix the _CRS information > based on what amd_bus.c read from the hardware) which makes pci=nocrs ignore > bus numbers from crs. > > If this works then we can add the board to the crs blacklist (Dirk can you > attach

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-14 Thread Dirk Gouders
Andreas Noever andreas.noe...@gmail.com writes: This is an implementation of fix 1 (Add a quirk to fix the _CRS information based on what amd_bus.c read from the hardware) which makes pci=nocrs ignore bus numbers from crs. If this works then we can add the board to the crs blacklist (Dirk

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-14 Thread Dirk Gouders
Andreas Noever andreas.noe...@gmail.com writes: Updated version with dmi strings. Dirk can you test this (without pci=nocrs) and look for PCI: Ignoring host bridge windows from ACPI If it does not show up then I have messed up the DMI_MATCH macros. In that case please try to boot with

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-13 Thread Dirk Gouders
Dirk Gouders writes: > Bjorn Helgaas writes: > >> I want to fix this regression before v3.17. Dirk, can you test the >> following patch on top of v3.17-rc2? I'm hoping you can try this on your >> test machine in conjunction with your acpi_pci_root_add() and >> pc

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-13 Thread Dirk Gouders
ow whether it actually > works, > and we don't have a patch for it yet. > > This revert is fix 3, which also sweeps the LSI FC issue under the rug. > > Link: https://bugzilla.kernel.org/show_bug.cgi?id=84281 > Reported-by: Dirk Gouders > Signed-of

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-13 Thread Dirk Gouders
. For that reason, I like fix 2, but we don't know whether it actually works, and we don't have a patch for it yet. This revert is fix 3, which also sweeps the LSI FC issue under the rug. Link: https://bugzilla.kernel.org/show_bug.cgi?id=84281 Reported-by: Dirk Gouders d

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-13 Thread Dirk Gouders
Dirk Gouders d...@gouders.net writes: Bjorn Helgaas bhelg...@google.com writes: I want to fix this regression before v3.17. Dirk, can you test the following patch on top of v3.17-rc2? I'm hoping you can try this on your test machine in conjunction with your acpi_pci_root_add

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu writes: > On Fri, Sep 12, 2014 at 3:05 PM, Dirk Gouders wrote: >> Yinghai Lu writes: >> >>> On Fri, Sep 12, 2014 at 1:54 PM, Dirk Gouders wrote: >>>> Yinghai Lu writes: >>>> >>>>> On Fri, Sep 12, 2014 at 1:05 PM, D

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu writes: > On Fri, Sep 12, 2014 at 1:54 PM, Dirk Gouders wrote: >> Yinghai Lu writes: >> >>> On Fri, Sep 12, 2014 at 1:05 PM, Dirk Gouders wrote: >>>> Dirk Gouders writes: >> -[:00]-+-01.0-[01-02]--+-0d.0-[02]-- >>

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu writes: > On Fri, Sep 12, 2014 at 1:05 PM, Dirk Gouders wrote: >> Dirk Gouders writes: >> >> I now applied your patches and tested them: >> >> echo 1 > /sys/bus/pci/devices/\:00\:0a.0/pcie_link_disable >> echo 0 > /sys/bus

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Dirk Gouders writes: > Dirk Gouders writes: > >> Bjorn Helgaas writes: >> >>> On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders wrote: >>>> Bjorn Helgaas writes: >>>> >>>>> On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Dirk Gouders writes: > Bjorn Helgaas writes: > >> On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders wrote: >>> Bjorn Helgaas writes: >>> >>>> On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders wrote: >>>>> What I was currently trying was to

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Dirk Gouders d...@gouders.net writes: Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders d...@gouders.net wrote: Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders d...@gouders.net wrote: What I was currently trying

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Dirk Gouders d...@gouders.net writes: Dirk Gouders d...@gouders.net writes: Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders d...@gouders.net wrote: Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders d

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 1:05 PM, Dirk Gouders d...@gouders.net wrote: Dirk Gouders d...@gouders.net writes: I now applied your patches and tested them: echo 1 /sys/bus/pci/devices/\:00\:0a.0/pcie_link_disable echo 0 /sys/bus/pci/devices/\:00

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 1:54 PM, Dirk Gouders d...@gouders.net wrote: Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 1:05 PM, Dirk Gouders d...@gouders.net wrote: Dirk Gouders d...@gouders.net writes: -[:00]-+-01.0-[01-02]--+-0d.0-[02

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-12 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 3:05 PM, Dirk Gouders d...@gouders.net wrote: Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 1:54 PM, Dirk Gouders d...@gouders.net wrote: Yinghai Lu ying...@kernel.org writes: On Fri, Sep 12, 2014 at 1:05 PM

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Bjorn Helgaas writes: > On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders wrote: >> Bjorn Helgaas writes: >> >>> On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders wrote: >>>> What I was currently trying was to construct a test-environment so that >>>> I

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Bjorn Helgaas writes: > On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders wrote: >> What I was currently trying was to construct a test-environment so that >> I do not need to do tests and diagnosis on a busy machine. >> >> I noticed that this problem seems to start wit

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Yinghai Lu writes: > On Thu, Sep 11, 2014 at 10:30 AM, Bjorn Helgaas wrote: >> [+cc linux-pci] >> >> >> On Thu, Sep 11, 2014 at 7:43 AM, Dirk Gouders wrote: >>> Andreas Noever writes: >>> >>>> On Wed, Sep 3, 2014 at 2

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Yinghai Lu writes: > On Thu, Sep 11, 2014 at 10:30 AM, Bjorn Helgaas wrote: >> [+cc linux-pci] >> >> >> On Thu, Sep 11, 2014 at 7:43 AM, Dirk Gouders wrote: >>> Andreas Noever writes: >>> >>>> On Wed, Sep 3, 2014 at 2

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders d...@gouders.net wrote: What I was currently trying was to construct a test-environment so that I do not need to do tests and diagnosis on a busy machine. I noticed that this problem seems to start

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 3:24 PM, Dirk Gouders d...@gouders.net wrote: Bjorn Helgaas bhelg...@google.com writes: On Thu, Sep 11, 2014 at 2:33 PM, Dirk Gouders d...@gouders.net wrote: What I was currently trying was to construct a test-environment so

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Thu, Sep 11, 2014 at 10:30 AM, Bjorn Helgaas bhelg...@google.com wrote: [+cc linux-pci] On Thu, Sep 11, 2014 at 7:43 AM, Dirk Gouders d...@gouders.net wrote: Andreas Noever andreas.noe...@gmail.com writes: On Wed, Sep 3, 2014 at 2:47 PM, Dirk

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-11 Thread Dirk Gouders
Yinghai Lu ying...@kernel.org writes: On Thu, Sep 11, 2014 at 10:30 AM, Bjorn Helgaas bhelg...@google.com wrote: [+cc linux-pci] On Thu, Sep 11, 2014 at 7:43 AM, Dirk Gouders d...@gouders.net wrote: Andreas Noever andreas.noe...@gmail.com writes: On Wed, Sep 3, 2014 at 2:47 PM, Dirk

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-04 Thread Dirk Gouders
Andreas Noever writes: > On Wed, Sep 3, 2014 at 2:47 PM, Dirk Gouders wrote: >> Andreas Noever writes: >> >>> On Wed, Sep 3, 2014 at 12:57 PM, Dirk Gouders wrote: >>>> On a Tyan VX50 (B4985) I ran into problems when updating the kernel: the >>

Re: [BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-04 Thread Dirk Gouders
Andreas Noever andreas.noe...@gmail.com writes: On Wed, Sep 3, 2014 at 2:47 PM, Dirk Gouders d...@gouders.net wrote: Andreas Noever andreas.noe...@gmail.com writes: On Wed, Sep 3, 2014 at 12:57 PM, Dirk Gouders d...@gouders.net wrote: On a Tyan VX50 (B4985) I ran into problems when updating

[BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-03 Thread Dirk Gouders
On a Tyan VX50 (B4985) I ran into problems when updating the kernel: the PCI FC Adapter is no longer recognized. Actually, this machine caused more problems, because I was not able to get it run with fedora, debian or ubuntu but I am somewhat sure that has to do with grub2 and now I am (again)

[BUG] Bisected Problem with LSI PCI FC Adapter

2014-09-03 Thread Dirk Gouders
On a Tyan VX50 (B4985) I ran into problems when updating the kernel: the PCI FC Adapter is no longer recognized. Actually, this machine caused more problems, because I was not able to get it run with fedora, debian or ubuntu but I am somewhat sure that has to do with grub2 and now I am (again)

Re: [PATCH 1/2] kbuild: Support split debug info v3

2014-07-24 Thread Dirk Gouders
Andi Kleen writes: >> echo time make -j4 -s KCFLAGS=-gsplit-dwarf >> time make -j4 -s KCFLAGS=-gsplit-dwarf >> echo time make -j4 -s KCFLAGS=-g >> time make -j4 -s KCFLAGS=-g >> echo time make -j4 -s KCFLAGS=-gsplit-dwarf >> time make -j4 -s KCFLAGS=-gsplit-dwarf >> echo time make -j4 -s

Re: [PATCH 1/2] kbuild: Support split debug info v3

2014-07-24 Thread Dirk Gouders
Andi Kleen a...@firstfloor.org writes: echo time make -j4 -s KCFLAGS=-gsplit-dwarf time make -j4 -s KCFLAGS=-gsplit-dwarf echo time make -j4 -s KCFLAGS=-g time make -j4 -s KCFLAGS=-g echo time make -j4 -s KCFLAGS=-gsplit-dwarf time make -j4 -s KCFLAGS=-gsplit-dwarf echo time make -j4 -s

Re: [PATCH] kbuild: Support split debug info

2014-02-09 Thread Dirk Gouders
Andi Kleen writes: > This is an alternative approach to lower the overhead of debug info > (as we discussed a few days ago) > > gcc 4.7+ and newer binutils have a new "split debug info" debug info > model where the debug info is only written once into central ".dwo" files. > > This avoids having

Re: [PATCH] kbuild: Support split debug info

2014-02-09 Thread Dirk Gouders
Andi Kleen a...@linux.intel.com writes: This is an alternative approach to lower the overhead of debug info (as we discussed a few days ago) gcc 4.7+ and newer binutils have a new split debug info debug info model where the debug info is only written once into central .dwo files. This

Re: [RFC trivial] printk.c: /proc/vmcore instead of /proc/vmcoreinfo in comments?

2013-11-06 Thread Dirk Gouders
Joe Perches writes: > On Tue, 2013-10-22 at 14:15 +0200, Dirk Gouders wrote: >> Hello Joe, >> >> when having a look at printk.c, I noticed that two comments refer >> to /proc/vmcoreinfo and I wonder if that should not read /proc/vmcore. >> >> While at i

Re: [RFC trivial] printk.c: /proc/vmcore instead of /proc/vmcoreinfo in comments?

2013-11-06 Thread Dirk Gouders
Joe Perches j...@perches.com writes: On Tue, 2013-10-22 at 14:15 +0200, Dirk Gouders wrote: Hello Joe, when having a look at printk.c, I noticed that two comments refer to /proc/vmcoreinfo and I wonder if that should not read /proc/vmcore. While at it, a typo in one of those coments

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-28 Thread Dirk Gouders
Johannes Berg writes: > On Tue, 2013-10-22 at 22:02 +0200, Simon Wunderlich wrote: >> The wext internal chandefs for ibss should be created using the >> cfg80211_chandef_create() functions. Otherwise the center_freq1 field >> will not be set and cfg80211_chandef_valid() will spit a warning and

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-28 Thread Dirk Gouders
Johannes Berg writes: > On Tue, 2013-10-22 at 22:02 +0200, Simon Wunderlich wrote: >> The wext internal chandefs for ibss should be created using the >> cfg80211_chandef_create() functions. Otherwise the center_freq1 field >> will not be set and cfg80211_chandef_valid() will spit a warning and

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-28 Thread Dirk Gouders
Johannes Berg johan...@sipsolutions.net writes: On Tue, 2013-10-22 at 22:02 +0200, Simon Wunderlich wrote: The wext internal chandefs for ibss should be created using the cfg80211_chandef_create() functions. Otherwise the center_freq1 field will not be set and cfg80211_chandef_valid() will

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-28 Thread Dirk Gouders
Johannes Berg johan...@sipsolutions.net writes: On Tue, 2013-10-22 at 22:02 +0200, Simon Wunderlich wrote: The wext internal chandefs for ibss should be created using the cfg80211_chandef_create() functions. Otherwise the center_freq1 field will not be set and cfg80211_chandef_valid() will

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-22 Thread Dirk Gouders
ould be used. Thanks a lot, Simon, I don't see anymore traces here. Tested-by: Dirk Gouders > Reported-by: Dirk Gouders > Signed-off-by: Simon Wunderlich > Cc: Johannes Berg > --- > net/wireless/ibss.c | 15 +-- > 1 file changed, 9 insertions(+), 6 deletions(-) > &

Re: [BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-22 Thread Dirk Gouders
Hi Simon, Simon Wunderlich writes: > Hey Dirk, > >> No need for censorship, I did some quick tests and stripped down my >> wpa_supplicant.conf to a single entry. With this configuration I get a >> lot of traces: >> >> ctrl_interface=/var/run/wpa_supplicant >> eapol_version=1 >> ap_scan=1 >>

Re: [BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-22 Thread Dirk Gouders
brcmsmac bcma0:0: brcms_ops_bss_info_changed: Beacon enabled: false [ 363.740008] brcmsmac bcma0:0: brcms_ops_bss_info_changed: IBSS joined: false (implement) > Thanks, > Simon > > On Mon, Oct 21, 2013 at 02:09:40PM +0200, Dirk Gouders wrote: >> Hello Simon, all, >> &g

[RFC trivial] printk.c: /proc/vmcore instead of /proc/vmcoreinfo in comments?

2013-10-22 Thread Dirk Gouders
00:00:00 2001 From: Dirk Gouders Date: Tue, 22 Oct 2013 13:51:15 +0200 Subject: [PATCH] printk.c: comments should refer to /proc/vmcore instead of /proc/vmcoreinfo In one of those comments a typo was fixed, too. Signed-off-by: Dirk Gouders --- kernel/printk/printk.c | 4 ++-- 1 file changed

[RFC trivial] printk.c: /proc/vmcore instead of /proc/vmcoreinfo in comments?

2013-10-22 Thread Dirk Gouders
:00:00 2001 From: Dirk Gouders d...@gouders.net Date: Tue, 22 Oct 2013 13:51:15 +0200 Subject: [PATCH] printk.c: comments should refer to /proc/vmcore instead of /proc/vmcoreinfo In one of those comments a typo was fixed, too. Signed-off-by: Dirk Gouders d...@gouders.net --- kernel/printk/printk.c

Re: [BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-22 Thread Dirk Gouders
:40PM +0200, Dirk Gouders wrote: Hello Simon, all, Recently, I noticed many traces (find a sample attached) in situations when wpa_supplicant is running but no appropriate access-point available. I started a bisect and ended at commit 3aede78aad2a7e (mac80211: change IBSS channel state

Re: [BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-22 Thread Dirk Gouders
Hi Simon, Simon Wunderlich s...@simonwunderlich.de writes: Hey Dirk, No need for censorship, I did some quick tests and stripped down my wpa_supplicant.conf to a single entry. With this configuration I get a lot of traces: ctrl_interface=/var/run/wpa_supplicant eapol_version=1

Re: [PATCH 3.12] cfg80211: fix ibss wext chandef creation

2013-10-22 Thread Dirk Gouders
it should be used. Thanks a lot, Simon, I don't see anymore traces here. Tested-by: Dirk Gouders d...@gouders.net Reported-by: Dirk Gouders d...@gouders.net Signed-off-by: Simon Wunderlich s...@simonwunderlich.de Cc: Johannes Berg johannes.b...@intel.com --- net/wireless/ibss.c | 15

[BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-21 Thread Dirk Gouders
Hello Simon, all, Recently, I noticed many traces (find a sample attached) in situations when wpa_supplicant is running but no appropriate access-point available. I started a bisect and ended at commit 3aede78aad2a7e (mac80211: change IBSS channel state to chandef). Please let me know if you

[BUG bisected] WARNING: CPU: 0 PID: 1550 at net/wireless/chan.c:373 cfg80211_chandef_usable+0x30/0x15f()

2013-10-21 Thread Dirk Gouders
Hello Simon, all, Recently, I noticed many traces (find a sample attached) in situations when wpa_supplicant is running but no appropriate access-point available. I started a bisect and ended at commit 3aede78aad2a7e (mac80211: change IBSS channel state to chandef). Please let me know if you

Re: [PATCH 4/4] kconfig: remove unused definition from scanner

2013-10-03 Thread Dirk Gouders
Martin Walch writes: > On Wednesday 02 October 2013 08:57:54 Yann E. MORIN wrote: >> On Wednesday 02 October 2013 08:42:59 Dirk Gouders wrote: >> > I think you should also regenerate the scanner and add >> > the new zconf.lex.c_shipped to this patch. >> &g

Re: [PATCH 4/4] kconfig: remove unused definition from scanner

2013-10-03 Thread Dirk Gouders
Martin Walch walch.mar...@web.de writes: On Wednesday 02 October 2013 08:57:54 Yann E. MORIN wrote: On Wednesday 02 October 2013 08:42:59 Dirk Gouders wrote: I think you should also regenerate the scanner and add the new zconf.lex.c_shipped to this patch. I think sending the re-generated

Re: [PATCH 4/4] kconfig: remove unused definition from scanner

2013-10-02 Thread Dirk Gouders
Martin Walch writes: > From: Martin Walch > Date: Wed, 2 Oct 2013 06:58:46 +0200 > Subject: [PATCH 4/4] kconfig: remove unused definition from scanner > > The definition ws [ \n\t] is not used anywhere. Drop it to avoid confusion. Hi Martin, I think you should also regenerate the scanner and

Re: [PATCH 4/4] kconfig: remove unused definition from scanner

2013-10-02 Thread Dirk Gouders
Martin Walch walch.mar...@web.de writes: From: Martin Walch walch.mar...@web.de Date: Wed, 2 Oct 2013 06:58:46 +0200 Subject: [PATCH 4/4] kconfig: remove unused definition from scanner The definition ws [ \n\t] is not used anywhere. Drop it to avoid confusion. Hi Martin, I think you should

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-23 Thread Dirk Gouders
Hi Borislav, Borislav Petkov writes: > Hi, > > On Wed, May 22, 2013 at 12:00:21PM +0200, Dirk Gouders wrote: >> CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE >> -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -fPIC > > it seems so

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-23 Thread Dirk Gouders
Hi Borislav, Borislav Petkov b...@suse.de writes: Hi, On Wed, May 22, 2013 at 12:00:21PM +0200, Dirk Gouders wrote: CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -fPIC it seems someone else hit this already

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Borislav Petkov writes: > Hi, > > On Wed, May 22, 2013 at 12:00:21PM +0200, Dirk Gouders wrote: >> CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 >> -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) >> $(EXTRA_CFLAGS) -fPIC > > it seems someone else

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Dirk Gouders writes: > What probably might help in any case is undefining _FORTIFY_SOURCE before > defining it, because as far as I know, there is no problem with > undefining something that is not yet defined, but I could imagine, > others might have more elegant suggestions

tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Hello Borislav, I am having problems with building liblk, but opposed to the recent problem that Jiri noticed (commit b28b130719af6 Fix _FORTIFY_SOURCE builds) I am getting errors because _FORTIFY_SOURCE is redefined: :0:0: error: "_FORTIFY_SOURCE" redefined [-Werror] debugfs.c:1:0: note: this

tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Hello Borislav, I am having problems with building liblk, but opposed to the recent problem that Jiri noticed (commit b28b130719af6 Fix _FORTIFY_SOURCE builds) I am getting errors because _FORTIFY_SOURCE is redefined: command-line:0:0: error: _FORTIFY_SOURCE redefined [-Werror] debugfs.c:1:0:

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Dirk Gouders d...@gouders.net writes: What probably might help in any case is undefining _FORTIFY_SOURCE before defining it, because as far as I know, there is no problem with undefining something that is not yet defined, but I could imagine, others might have more elegant suggestions

Re: tools/lib/lk: redefinition of _FORTIFY_SOURCE (gcc-4.7.2)

2013-05-22 Thread Dirk Gouders
Borislav Petkov b...@suse.de writes: Hi, On Wed, May 22, 2013 at 12:00:21PM +0200, Dirk Gouders wrote: CFLAGS = -ggdb3 -Wall -Wextra -std=gnu99 -Werror -O6 -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 $(EXTRA_WARNINGS) $(EXTRA_CFLAGS) -fPIC it seems someone else hit this already and fixed it too

Re: [PATCH wq/for-3.10-fixes] workqueue: workqueue_congested() shouldn't translate WORK_CPU_UNBOUND into node number

2013-05-14 Thread Dirk Gouders
Tejun Heo writes: > From d3251859168b0b12841e1b90d6d768ab478dc23d Mon Sep 17 00:00:00 2001 > From: Tejun Heo > Date: Fri, 10 May 2013 11:10:17 -0700 > > df2d5ae499 ("workqueue: map an unbound workqueues to multiple per-node > pool_workqueues") made unbound workqueues to map to multiple per-node

Re: [PATCH wq/for-3.10-fixes] workqueue: workqueue_congested() shouldn't translate WORK_CPU_UNBOUND into node number

2013-05-14 Thread Dirk Gouders
Tejun Heo t...@kernel.org writes: From d3251859168b0b12841e1b90d6d768ab478dc23d Mon Sep 17 00:00:00 2001 From: Tejun Heo t...@kernel.org Date: Fri, 10 May 2013 11:10:17 -0700 df2d5ae499 (workqueue: map an unbound workqueues to multiple per-node pool_workqueues) made unbound workqueues to

Re: [PATCH v2 4/6] menuconfig: Add jump keys to search results

2012-08-27 Thread Dirk Gouders
Benjamin Poirier writes: > makes it possible to jump directly to the menu for a configuration entry after > having searched for it with '/'. If this menu is not currently accessible we > jump to the nearest accessible parent instead. After exiting this menu, the > user is returned to the search

Re: [PATCH v2 4/6] menuconfig: Add jump keys to search results

2012-08-27 Thread Dirk Gouders
Benjamin Poirier bpoir...@suse.de writes: makes it possible to jump directly to the menu for a configuration entry after having searched for it with '/'. If this menu is not currently accessible we jump to the nearest accessible parent instead. After exiting this menu, the user is returned to

Re: [RFC] netconsole.txt: "nc" needs "-p" to specify the listening port

2012-08-09 Thread Dirk Gouders
Cong Wang writes: > On 08/03/2012 02:33 PM, Dirk Gouders wrote: >> >> From b3aec70d785d338b1b643fece6606cd32addaf0c Mon Sep 17 00:00:00 2001 >> From: Dirk Gouders >> Date: Thu, 2 Aug 2012 22:20:16 +0200 >> Subject: [PATCH] netconsole.txt: revision of exampl

Re: [RFC] netconsole.txt: nc needs -p to specify the listening port

2012-08-09 Thread Dirk Gouders
Cong Wang xiyou.wangc...@gmail.com writes: On 08/03/2012 02:33 PM, Dirk Gouders wrote: From b3aec70d785d338b1b643fece6606cd32addaf0c Mon Sep 17 00:00:00 2001 From: Dirk Gouders goud...@et.bocholt.fh-gelsenkirchen.de Date: Thu, 2 Aug 2012 22:20:16 +0200 Subject: [PATCH] netconsole.txt

[RFC] kconfig/mconf.c: revision of curses initialization.

2012-08-06 Thread Dirk Gouders
is better done in that function... Dirk >From 1a4022eedbee6032dea16f67bbe4028a8d3d07a0 Mon Sep 17 00:00:00 2001 From: Dirk Gouders Date: Mon, 6 Aug 2012 16:48:23 +0200 Subject: [PATCH] kconfig/mconf.c: revision of cur

[RFC] kconfig/mconf.c: revision of curses initialization.

2012-08-06 Thread Dirk Gouders
is better done in that function... Dirk From 1a4022eedbee6032dea16f67bbe4028a8d3d07a0 Mon Sep 17 00:00:00 2001 From: Dirk Gouders goud...@et.bocholt.fh-gelsenkirchen.de Date: Mon, 6 Aug 2012 16:48:23 +0200 Subject: [PATCH

Re: [RFC] netconsole.txt: "nc" needs "-p" to specify the listening port

2012-08-03 Thread Dirk Gouders
Cong Wang writes: > On Fri, Aug 3, 2012 at 4:39 AM, Dirk Gouders > wrote: >> >> From d756d2750e4cf07d3c0942dc3c491d57631d4338 Mon Sep 17 00:00:00 2001 >> From: Dirk Gouders >> Date: Thu, 2 Aug 2012 22:20:16 +0200 >> Subject: [PATCH] netconsole.txt: r

Re: [RFC] netconsole.txt: nc needs -p to specify the listening port

2012-08-03 Thread Dirk Gouders
Cong Wang xiyou.wangc...@gmail.com writes: On Fri, Aug 3, 2012 at 4:39 AM, Dirk Gouders goud...@et.bocholt.fh-gelsenkirchen.de wrote: From d756d2750e4cf07d3c0942dc3c491d57631d4338 Mon Sep 17 00:00:00 2001 From: Dirk Gouders goud...@et.bocholt.fh-gelsenkirchen.de Date: Thu, 2 Aug 2012 22:20

Re: [RFC] netconsole.txt: "nc" needs "-p" to specify the listening port

2012-08-02 Thread Dirk Gouders
Dirk Gouders writes: > Rob Landley writes: > >> On 07/29/2012 03:40 AM, Milton Miller wrote: >>> [adding Rob as Doc maintanier] >>> >>> On Sat, 28 Jul 2012 about 11:08:16 -, Dirk Gouders wrote: >>>> Borislav Petkov writes: >>>&g

Re: [RFC] netconsole.txt: nc needs -p to specify the listening port

2012-08-02 Thread Dirk Gouders
Dirk Gouders goud...@et.bocholt.fh-gelsenkirchen.de writes: Rob Landley r...@landley.net writes: On 07/29/2012 03:40 AM, Milton Miller wrote: [adding Rob as Doc maintanier] On Sat, 28 Jul 2012 about 11:08:16 -, Dirk Gouders wrote: Borislav Petkov b...@alien8.de writes: On Fri, Jul

<    1   2   3   >