Re: [PATCH V5 0/5] audit by executable name

2014-10-20 Thread Steve Grubb
On Monday, October 20, 2014 07:33:39 PM Steve Grubb wrote: On Monday, October 20, 2014 07:02:33 PM Paul Moore wrote: On Monday, October 20, 2014 06:47:27 PM Eric Paris wrote: On Mon, 2014-10-20 at 16:25 -0400, Steve Grubb wrote: On Thursday, October 02, 2014 11:06:51 PM Richard Guy

Re: [RFC][PATCH] audit: log join and part events to the read-only multicast log socket

2014-10-21 Thread Steve Grubb
confused a name. nlnk-grp is better if its what I think it is. -Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [RFC][PATCH] audit: log join and part events to the read-only multicast log socket

2014-10-21 Thread Steve Grubb
On Tuesday, October 21, 2014 05:08:22 PM Richard Guy Briggs wrote: On 14/10/21, Steve Grubb wrote: super crazy yuck. audit_log_task_info() ?? audit_log_task_info logs too much information for typical use. There are times when you might want to know everything about what's connecting

Re: [PATCH V5 0/5] audit by executable name

2014-10-21 Thread Steve Grubb
On Tuesday, October 21, 2014 05:56:36 PM Paul Moore wrote: On Monday, October 20, 2014 07:33:39 PM Steve Grubb wrote: On Monday, October 20, 2014 07:02:33 PM Paul Moore wrote: On Monday, October 20, 2014 06:47:27 PM Eric Paris wrote: On Mon, 2014-10-20 at 16:25 -0400, Steve Grubb wrote

Re: Some questions about DEBUG_PAGEALLOC on ARMv8

2014-09-08 Thread Steve Capper
On Thu, Sep 04, 2014 at 10:41:52AM +0100, Catalin Marinas wrote: Hi Zhichang, (cc'ing Steve Capper for the huge page stuff) On Fri, Aug 22, 2014 at 01:38:26PM +0100, zhichang.yuan wrote: I am working to implement the DEBUG_PAGEALLOC on ARMv8. I assume that's the arm64 kernel. After

Re: [PATCH] CIFS: Fix readpages retrying on reconnects

2014-10-02 Thread Steve French
the line unsubscribe linux-cifs in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

[GIT PULL] CIFS/SMB3 Fixes

2014-10-03 Thread Steve French
) Pavel Shilovsky (1): CIFS: Fix readpages retrying on reconnects Steve French (1): Fix problem recognizing symlinks fs/cifs/file.c | 8 +--- fs/cifs/smb1ops.c | 2 +- fs/cifs/smb2maperror.c | 2 ++ 3 files changed, 4 insertions(+), 8

Re: [PATCH 4/4] vfs: RWF_NONBLOCK flag for preadv2

2014-10-27 Thread Steve French
to allocate those pages, -- 1.9.1 -- To unsubscribe from this list: send the line unsubscribe linux-fsdevel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- Thanks, Steve -- To unsubscribe from this list: send the line

Re: [PATCH V3 1/2] mm: Update generic gup implementation to handle hugepage directory

2014-10-28 Thread Steve Capper
(unsigned long start, int nr_pages, int write, return ret; } - #endif /* CONFIG_HAVE_GENERIC_RCU_GUP */ -- With the above changes (remove the arch/arm and arch/arm64 changes and add an extra assumption to the list for gup_huge_pte): Acked-by: Steve Capper steve.cap...@linaro.org Also

Re: [PATCH V3 1/2] mm: Update generic gup implementation to handle hugepage directory

2014-10-28 Thread Steve Capper
more testing than in linux-next alone. Fine by me. Can I get an ack from you and/or someone else on CC? Only arm and arm64 use this code. Steve, could you please look it over and check that arm is still happy? Hi Andrew, I've tested it and posted some comments on it. If the arch/arm

Re: [GIT] Sparc

2014-10-28 Thread Steve Capper
it looks like it will work without needing any changes. Steve, thoughts? We need to add the necessary hooks to the generic code so that x86 doesn't so specualtive gets and instead do direct increments, otherwise it's a performance regression, and then sparc can make use of that as well. Agreed

Re: [PATCH V4 1/2] mm: Update generic gup implementation to handle hugepage directory

2014-10-29 Thread Steve Capper
...@linux.vnet.ibm.com Acked-by: Steve Capper steve.cap...@linaro.org Thanks Aneesh, -- Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-11-20 Thread Steve Capper
some more digging; but I have managed to code up an ftrace static probe on memcpy and record that using perf on arm64 without issue. Cheers, -- Steve The panic I got: Kernel panic - not syncing: BUG! CPU: 2 PID: 2065 Comm: perf Not tainted 3.18.0-rc5+ #2085 Call trace: [fe096d60

64 bit signed division

2014-09-11 Thread Steve French
, 1000) * 100); +ts.tv_sec = -t; +} else { +ts.tv_nsec = do_div(t, 1000) * 100; +ts.tv_sec = t; +} Are there better alternatives? -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

[PATCH] perf symbols: Consider the syms_ss in dso__load_sym

2014-11-21 Thread Steve Capper
the debug symbols have been correctly installed (and loaded by perf). This patch adds logic to dso__load_sym to query syms_ss for the .debug_frame section if it can't be found in the elf file pointed to by runtime_ss. Signed-off-by: Steve Capper steve.cap...@linaro.org --- This patch is against 3.18-rc5

Re: [PATCH] cifs: remove dead code

2014-09-16 Thread Steve French
-sess_auth_kerberos(struct sess_data *sess_data) -{ - cifs_dbg(VFS, Kerberos negotiated but upcall support disabled!\n); - sess_data-result = -ENOSYS; - sess_data-func = NULL; -} #endif /* ! CONFIG_CIFS_UPCALL */ /* -- Thanks, Steve -- To unsubscribe from this list: send the line

PROBLEM: sata_sil driver broken

2014-09-16 Thread Steve Volumetric
the sata_sil driver for silicon image sata controllers isn't working in kernel 3.16.1 upon boot, the driver loads and tries to access hardware, but runs into error -16 and then boot proceeds. checking /dev/ for any attached sata devices is unsuccessful. Sep 15 13:25:57 archiso kernel: sata_sil

match_token weird behavior

2014-09-17 Thread Steve French
, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: match_token weird behavior

2014-09-17 Thread Steve French
Dunlap rdun...@infradead.org wrote: On 09/17/14 13:33, Randy Dunlap wrote: On 09/17/14 11:20, Steve French wrote: Noticing something very strange with match_token. I had five strings I need to compare a version string (protocol dialect eg. 2.1 or 3.0) against, to find which it matches (if any

Re: match_token weird behavior

2014-09-17 Thread Steve French
, none }, { Opt_sec_err, NULL } }; On Wed, Sep 17, 2014 at 3:53 PM, Steve French smfre...@gmail.com wrote: For additional information the strings that are being matched against are: #define SMB1_VERSION_STRING1.0 #define SMB20_VERSION_STRING2.0 #define SMB21_VERSION_STRING2.1

Re: match_token weird behavior

2014-09-18 Thread Steve French
On Wed, Sep 17, 2014 at 2:05 PM, Steve French smfre...@gmail.com wrote: Looking at more examples, some of which are much larger match tables maybe it has to do with how the final entry is defined. In this example the NULL match is explicitly stated. static const match_table_t

Re: [PATCH 2/2] [CIFS] Update MAINTAINERS entry

2014-11-10 Thread Steve French
-by: Kevin Cernekee cerne...@gmail.com --- MAINTAINERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index b36a4f0..4d8154d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -2519,8 +2519,7 @@ M:Steve French sfre...@samba.org L: linux-c

Re: [PATCH] audit: convert status version to a feature bitmap

2014-11-13 Thread Steve Grubb
meant to ask about AUDIT_VERSION_LATEST, which would become 3. You *did* already ask that question in a previous thread, and there didn't seem to be a concern. Steve Grubb could likely answer this question better than me. The audit 2.4.1 package has been pushed to everything from F20

[PATCH] Staging: android: fix line length coding style issue in sync_debug.c

2014-12-24 Thread Steve Pennington
From: Steve Pennington sgp...@gmail.com This is a patch to sync_debug.c that fixes an over 80 character warning found by the checkpatch.pl tool Signed-off-by: Steve Pennington sgp...@gmail.com --- drivers/staging/android/sync_debug.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

[GIT PULL] CIFS Fixes

2014-12-29 Thread Steve French
| 12 +++- fs/cifs/smb2ops.c | 3 ++- fs/cifs/smb2pdu.h | 2 +- fs/cifs/smb2transport.c | 2 +- 7 files changed, 28 insertions(+), 19 deletions(-) -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-11-26 Thread Steve Capper
On Wed, Nov 26, 2014 at 05:33:05PM +0900, Masami Hiramatsu wrote: (2014/11/21 0:02), Steve Capper wrote: On Tue, Nov 18, 2014 at 01:32:50AM -0500, David Long wrote: From: David A. Long dave.l...@linaro.org This patchset is heavily based on Sandeepa Prabhu's ARM v8 kprobes patches

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-11-26 Thread Steve Capper
On 26 November 2014 at 17:46, David Long dave.l...@linaro.org wrote: On 11/26/14 05:03, Steve Capper wrote: On Wed, Nov 26, 2014 at 05:33:05PM +0900, Masami Hiramatsu wrote: (2014/11/21 0:02), Steve Capper wrote: On Tue, Nov 18, 2014 at 01:32:50AM -0500, David Long wrote: From: David

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-12-12 Thread Steve Capper
On 12 December 2014 at 22:42, David Long dave.l...@linaro.org wrote: On 12/10/14 11:38, Steve Capper wrote: On Tue, Dec 09, 2014 at 09:27:18AM -0500, David Long wrote: On 12/09/14 08:33, Steve Capper wrote: On Thu, Dec 04, 2014 at 08:53:03PM +0900, Masami Hiramatsu wrote

Re: [PATCH 1/2] [CIFS] Fix signed/unsigned pointer warning

2014-12-13 Thread Steve French
we can pull in for 3.19? Thanks! -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 1/2] [CIFS] Fix signed/unsigned pointer warning

2014-12-14 Thread Steve French
merged into cifs-2.6.git On Sat, Dec 13, 2014 at 11:29 PM, Kevin Cernekee cerne...@gmail.com wrote: On Sat, Dec 13, 2014 at 9:20 PM, Steve French smfre...@gmail.com wrote: Probably harmless patch - but I didn't notice the warning on x86 kernel build (building on Fedora 21, gcc 4.9.2) Did you

[PATCH v2 5/7] imx-drm: encoder prepare/mode_set must use adjusted mode

2014-12-18 Thread Steve Longerbeam
The encoder -prepare() and -mode_set() methods need to use the hw adjusted mode, not the original mode. Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/drm/imx/imx-hdmi.c |4 ++-- drivers/gpu/drm/imx/imx-ldb.c |6 +++--- drivers/gpu/drm/imx

[PATCH v2 2/7] gpu: ipu-di: remove some non-functional code

2014-12-18 Thread Steve Longerbeam
h_total and v_total were calculated in ipu_di_init_sync_panel() but never actually used. Remove. Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/ipu-v3/ipu-di.c |6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/gpu/ipu-v3/ipu-di.c b/drivers/gpu/ipu

[PATCH v2 6/7] gpu: ipu-v3: Use videomode in struct ipu_di_signal_cfg

2014-12-18 Thread Steve Longerbeam
This patch changes struct ipu_di_signal_cfg to use struct videomode to define video timings and flags. Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/drm/imx/ipuv3-crtc.c | 26 +++ drivers/gpu/ipu-v3/ipu-di.c | 89

[PATCH v2 4/7] imx-drm: ipuv3-crtc: Implement mode_fixup

2014-12-18 Thread Steve Longerbeam
. Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/drm/imx/ipuv3-crtc.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c index 11e84a2..fb16026 100644 --- a/drivers/gpu/drm/imx/ipuv3-crtc.c

[PATCH v2 7/7] gpu: ipu-di: Switch to DIV_ROUND_CLOSEST for DI clock divider calc

2014-12-18 Thread Steve Longerbeam
We can use the DIV_ROUND_CLOSEST() macro when calculating the DI clock divider, rounded to nearest int. Suggested-by: Philipp Zabel p.za...@pengutronix.de Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/ipu-v3/ipu-di.c |9 +++-- 1 file changed, 3 insertions

[PATCH v2 1/7] gpu: ipu-di: Add ipu_di_adjust_videomode()

2014-12-18 Thread Steve Longerbeam
restrictions. The function can be called from the drm_crtc_helper_funcs-mode_fixup() methods. Signed-off-by: Jiada Wang jiada_w...@mentor.com Signed-off-by: Deepak Das deepak_...@mentor.com Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/ipu-v3/ipu-di.c | 29

[PATCH v2 0/7] imx-drm: ipuv3-crtc: Implement mode_fixup

2014-12-18 Thread Steve Longerbeam
to convert a drm_display_mode to a videomode before passing the mode to ipu_di_adjust_videomode() for fixup. Also some related code cleanup: 'struct ipu_di_signal_cfg' should use 'struct videomode' for mode timings. Jiada Wang (1): gpu: ipu-di: Add ipu_di_adjust_videomode() Steve Longerbeam (6): gpu

[PATCH v2 3/7] drm_modes: add videomode_from_drm_display_mode

2014-12-18 Thread Steve Longerbeam
Add conversion from drm_display_mode to videomode. Signed-off-by: Steve Longerbeam steve_longerb...@mentor.com --- drivers/gpu/drm/drm_modes.c | 40 include/drm/drm_modes.h |2 ++ 2 files changed, 42 insertions(+) diff --git a/drivers/gpu/drm

Re: [PATCH v2 3/7] drm_modes: add videomode_from_drm_display_mode

2014-12-19 Thread Steve Longerbeam
to know which is preferred. Yeah, drm_display_mode_to_videomode() is probably better, makes it more clear it's part of the DRM kernel interfaces. Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info

Re: i.MX6 CSC and scaler

2014-12-15 Thread Steve Longerbeam
On 12/15/2014 09:03 AM, Jean-Michel Hautbois wrote: Hi Steve, Philipp, I see in the kernel sources you created a ipu-ic.c file which helps working with the Color Space Converter on i.MX6. We would like to use it on our board with GStreamer, as the conversion done by the CPU is not very

Re: [RFC][PATCH] audit: log join and part events to the read-only multicast log socket

2014-10-11 Thread Steve Grubb
fields in a canonical ordering is helpful, both for tools and people, but the tools shouldn't require it in my opinion. Steve, why exactly can't the userspace parser handle fields in any order? How difficult would it be to fix? The issue is that people that really use audit, really get vast

Re: [PATCH 1/2] mm: Introduce a general RCU get_user_pages_fast.

2014-10-14 Thread Steve Capper
you please instead write a patch against? 2667f50 mm: introduce a general RCU get_user_pages_fast() I had one issue compiling this, pgd_huge was undefined. I think this is only defined for PowerPC? Could a stub definition of pgd_huge be added? Cheers, -- Steve -- To unsubscribe from this list

Re: [PATCH 1/2] mm: Introduce a general RCU get_user_pages_fast.

2014-10-14 Thread Steve Capper
On Tue, Oct 14, 2014 at 05:38:43PM +0530, Aneesh Kumar K.V wrote: Steve Capper steve.cap...@linaro.org writes: On Tue, Oct 14, 2014 at 04:27:53PM +0530, Aneesh Kumar K.V wrote: get_user_pages_fast attempts to pin user pages by walking the page tables directly and avoids taking locks. Thus

Re: Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-11-28 Thread Steve Capper
On 27 November 2014 at 06:07, Masami Hiramatsu masami.hiramatsu...@hitachi.com wrote: (2014/11/27 3:59), Steve Capper wrote: The crash is extremely easy to reproduce. I've not observed any missed events on a kprobe on an arm64 system that's still alive. My (limited!) understanding

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-12-04 Thread Steve Capper
/kprobe_events perf record -e kprobes:memcpy -a sleep 5 [then crash due to IRQs being unexpectedly disabled in the ext4 code] Isn't that a kprobe problem? Cheers, -- Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org

Re: Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-12-04 Thread Steve Capper
On 4 December 2014 at 10:43, Masami Hiramatsu masami.hiramatsu...@hitachi.com wrote: (2014/12/04 19:21), Steve Capper wrote: On 4 December 2014 at 02:48, David Long dave.l...@linaro.org wrote: On 12/03/14 20:16, William Cohen wrote: [...] The perf issue seems to be independent and can

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-12-09 Thread Steve Capper
On Thu, Dec 04, 2014 at 08:53:03PM +0900, Masami Hiramatsu wrote: (2014/12/04 20:29), Steve Capper wrote: I'd like to ask you to try my fix on your machine, with my reproducing methods. (do not use sytemtap nor perf, those can have other issues) Thank you Masami, I tried

Re: [PATCH v3 0/5] ARM64: Add kernel probes(Kprobes) support

2014-12-10 Thread Steve Capper
On Tue, Dec 09, 2014 at 09:27:18AM -0500, David Long wrote: On 12/09/14 08:33, Steve Capper wrote: On Thu, Dec 04, 2014 at 08:53:03PM +0900, Masami Hiramatsu wrote: [...] Not sure if this is helpful, but the following also caused a crash for me: echo p:trace_event_buffer_lock_reserve

[GIT PULL] CIFS Fixes

2015-02-04 Thread Steve French
(-) -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH] cifs: smb2_clone_range() - exit on unhandled error

2015-02-05 Thread Steve French
...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

RE: [PATCH 1/2] infiniband: cxgb4: Fix some format strings

2015-02-05 Thread Steve Wise
Acked-by: Steve Wise sw...@opengridcomputing.com -Original Message- From: linux-rdma-ow...@vger.kernel.org [mailto:linux-rdma-ow...@vger.kernel.org] On Behalf Of Rasmus Villemoes Sent: Thursday, February 05, 2015 5:33 PM To: Steve Wise; Roland Dreier; Sean Hefty; Hal Rosenstock Cc

[PATCH V3 2/2] devicetree: Add bindings for DA9063

2015-01-20 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add device tree bindings for DA9063 regulators; Real-Time Clock and Watchdog. This patch is dependent on PATCH V2 1/2 Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- This patch applies against linux-next and v3.19-rc4

[PATCH V3 0/2] Add device tree support for DA9063

2015-01-20 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com This patch set adds device tree support for the Dialog Semiconductor DA9063 PMIC. Support is provided for the Regulators; Real-Time Clock and Watchdog. [PATCH V2 1/2]: kernel driver device tree support [PATCH V2 2/2]: device tree bindings document

[PATCH V3 1/2] mfd: da9063: Add device tree support

2015-01-20 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add device tree support for DA9063 regulators; Real-Time Clock and Watchdog. This patch is dependent on PATCH V2 2/2 Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- This patch applies against linux-next and v3.19-rc4 drivers/mfd

[PATCH V2 1/2] mfd: da9063: Add device tree support

2015-01-19 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add device tree support for DA9063 regulators; Real-Time Clock and Watchdog. This patch is dependent on PATCH V2 2/2 Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- This patch applies against linux-next and v3.19-rc4 drivers/mfd

[PATCH V2 2/2] devicetree: Add bindings for DA9063

2015-01-19 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add device tree bindings for DA9063 regulators; Real-Time Clock and Watchdog. This patch is dependent on PATCH V2 1/2 Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- This patch applies against linux-next and v3.19-rc4

[PATCH V1] mfd: da9063: Add device tree support

2015-01-14 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add device tree support for DA9063 regulators; Real-Time Clock and Watchdog. Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- Checks performed with linux-next/v3.19-rc4/scripts/checkpatch.pl da9063.txttotal: 0 errors

Re: [PATCH] cifs: fix MUST SecurityFlags filtering

2015-01-26 Thread Steve French
info at http://vger.kernel.org/majordomo-info.html -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http

Re: [PATCH v5 6/8] arm64/efi: move SetVirtualAddressMap() to UEFI stub

2015-01-29 Thread Steve Capper
the EFI stub activity?), then manifests once the asynchronous aborts are enabled? Cheers, -- Steve The full boot log: EFI stub: Booting Linux Kernel... EFI stub: Using DTB from configuration table EFI stub: Exiting boot services and installing virtual address map... Booting Linux on physical CPU

Re: Hangs in libhugetlbfs tests in -next

2015-01-29 Thread Steve Capper
in the mlock test. I'll investigate further. Cheers, -- Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: Hangs in libhugetlbfs tests in -next

2015-01-29 Thread Steve Capper
: static inline int is_swap_pte(pte_t pte) { return !pte_none(pte) !pte_present_nonuma(pte); } (note here that pte_present_nonuma == pte_present on arm64) I think this is a typo in the patch, as entries should be checked for present before being determined to be swap or file? Cheers, -- Steve

Re: [PATCH] mm: remove remaining references to NUMA hinting bits and helpers -fix

2015-01-31 Thread Steve Capper
-remove-remaining-references-to-numa-hinting-bits-and-helpers.patch Reported-by: Mark Brown broo...@kernel.org Signed-off-by: Mel Gorman mgor...@suse.de Acked-by: Steve Capper steve.cap...@linaro.org --- include/linux/swapops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

RE: [PATCH] infiniband: Remove duplicated KERN_LEVEL from pr_level uses

2015-01-05 Thread Steve Wise
Acked-by: Steve Wise sw...@opengridcomputing.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH v4 0/6] arm64: Add kernel probes (kprobes) support

2015-01-12 Thread Steve Capper
(from Will Cohen) with an improved solution (from Steve Capper). Hi David, I've left feedback on the patches in the series. I ran into two major issues: 1) trampoline_probe_handler had an errant call to: kprobes_restore_local_irqflag (this caused crashes for me until I removed

Re: [PATCH] TaskTracker : Simplified thread information tracker.

2015-01-12 Thread Steve Grubb
On Monday, January 12, 2015 03:13:12 PM Tetsuo Handa wrote: Thank you for comments. Richard Guy Briggs wrote: Steve already mentioned any user-influenced fields need to be escaped, so I'd recommend audit_log_untrustedstring() as being much simpler from your perspective and much better

Re: [PATCH v4 5/6] arm64: Add kernel return probes support(kretprobes)

2015-01-12 Thread Steve Capper
On Sat, Jan 10, 2015 at 11:03:20PM -0500, David Long wrote: From: Sandeepa Prabhu sandeepa.pra...@linaro.org AArch64 ISA does not have instructions to pop the PC register value from the stack(like ARM v7 has ldmia {...,pc}) without using one of the general purpose registers. This means

Re: [PATCH v4 3/6] arm64: Kprobes with single stepping support

2015-01-12 Thread Steve Capper
flags in PSTATE, which are not safe for probing. Changes since v3: from David Long: 1) Removed unnecessary addtion of NOP after out-of-line instruction. 2) Replaced table-driven instruction parsing with calls to external test functions. from Steve Capper: 3) Disable local irq while

Re: [PATCH v4 1/6] arm64: Add HAVE_REGS_AND_STACK_ACCESS_API feature

2015-01-12 Thread Steve Capper
On Sat, Jan 10, 2015 at 11:03:16PM -0500, David Long wrote: From: David A. Long dave.l...@linaro.org Add HAVE_REGS_AND_STACK_ACCESS_API feature for arm64. Signed-off-by: David A. Long dave.l...@linaro.org --- arch/arm64/Kconfig | 1 + arch/arm64/include/asm/ptrace.h

RE: [PATCH] IB: cxgb3: iwch_cm: Remove some unused functions

2015-01-12 Thread Steve Wise
Acked-by: Steve Wise sw...@opengridcomputing.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH RESEND] cifs: use memzero_explicit to clear stack buffer

2015-01-09 Thread Steve French
, (unsigned char *) wpwd, len * sizeof(__le16)); - memset(wpwd, 0, 129 * sizeof(__le16)); + memzero_explicit(wpwd, sizeof(wpwd)); return rc; } -- 2.1.4 -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message

Re: pread2/ pwrite2

2015-01-09 Thread Steve French
how we would ever decide to set that on the Linux client). -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ

Re: [PATCH RESEND] cifs: use memzero_explicit to clear stack buffer

2015-01-12 Thread Steve French
Razmyslov Acked-by: Herbert Xu herb...@gondor.apana.org.au Thanks, -- Email: Herbert Xu herb...@gondor.apana.org.au Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- Thanks, Steve -- To unsubscribe from this list: send the line

Re: Linux 3.19-rc3

2015-01-09 Thread Steve Capper
values reported. That change appears to have come from: 49abd8c lib/show_mem.c: add cma reserved information Is the quickest way to exacerbate this OOM a kernel compile? Cheers, -- Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord

[PATCH] arm64: Adjust EFI libstub object include logic

2015-03-16 Thread Steve Capper
: *** Waiting for unfinished jobs This patch adjusts the arm64 Makefile to reference the compiled library explicitly (as is currently done in x86), rather than the directory. Fixes: f4f75ad5 efi: efistub: Convert into static library Signed-off-by: Steve Capper steve.cap...@linaro.org --- arch/arm64

Re: [PATCH v5 4/6] arm64: kprobes instruction simulation support

2015-03-06 Thread Steve Capper
: No such file or directory #include probes-simulate-insn.h ^ compilation terminated. scripts/Makefile.build:257: recipe for target 'arch/arm64/kernel/kprobes-arm64.o' failed Is something missing from this patch? Cheers, -- Steve -- To unsubscribe from this list

Re: [PATCH 1/1] cifs: potential missing check for posix_lock_file_wait

2015-03-24 Thread Steve French
). -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

cifs kernel client status wiki page

2015-03-25 Thread Steve French
to those would be welcomed -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

RE: [PATCH 2/5 linux-next] iw_cxgb4: remove unneccessary message level.

2015-03-30 Thread Steve Wise
Acked-by: Steve Wise sw...@opengridcomputing.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

Re: [PATCH 3/4] [SMB3] Fix dereference before null check warning

2015-03-31 Thread Steve French
On Tue, Mar 31, 2015 at 7:46 PM, Jeff Layton jlay...@poochiereds.net wrote: On Fri, 27 Mar 2015 00:28:01 -0500 Steve French smfre...@gmail.com wrote: null tcon is not likely in these paths in current code, but obviously it does clarify the code to check for null (if at all) before

[PATCH 4/4] [SMB3] Fix coverity warning

2015-03-26 Thread Steve French
Coverity reports a warning for referencing the beginning of the SMB2/SMB3 frame using the ProtocolId field as an array. Although it works the same either way, this patch should quiet the warning and might be a little clearer. Reported by Coverity (CID 741269) Signed-off-by: Steve French smfre

[PATCH 2/4] [CIFS] Don't ignore errors on encrypting password in SMBTcon

2015-03-26 Thread Steve French
Although unlikely to fail (and tree connect does not commonly send a password since SECMODE_USER is the default for most servers) do not ignore errors on SMBNTEncrypt in SMB Tree Connect. Reported by Coverity (CID 1226853) Signed-off-by: Steve French smfre...@gmail.com --- fs/cifs/connect.c | 6

[PATCH 3/4] [SMB3] Fix dereference before null check warning

2015-03-26 Thread Steve French
null tcon is not likely in these paths in current code, but obviously it does clarify the code to check for null (if at all) before derefrencing rather than after. Reported by Coverity (CID 1042666) Signed-off-by: Steve French smfre...@gmail.com --- fs/cifs/smb2pdu.c | 13 - 1 file

[PATCH 0/4] Fix various coverity warnings in fs/cifs

2015-03-26 Thread Steve French
Four small fixes to address warnings coverity analyzer displays for fs/cifs. Steve French (4): [SMB3] Fix warning on uninitialized buftype [CIFS] Don't ignore errors on encrypting password in SMBTcon [SMB3] Fix dereference before null check warning [SMB3] Fix coverity warning fs/cifs

[PATCH 1/4] [SMB3] Fix warning on uninitialized buftype

2015-03-26 Thread Steve French
-off-by: Steve French smfre...@gmail.com --- fs/cifs/smb2pdu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index 3417340..1b906de 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c @@ -2114,7 +2114,7 @@ SMB2_query_directory(const

Re: [PATCH 1/1] cifs: potential memory leaks when parsing mnt opts

2015-03-23 Thread Steve French
) { -- 2.3.3 -- Thanks, Steve -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

[RFC PATCH] perf report: Don't add filtered events to histogram

2015-04-14 Thread Steve Capper
filtered out events from being considered by hist_entry_iter__add. Cc: Peter Zijlstra a.p.zijls...@chello.nl Cc: Paul Mackerras pau...@samba.org Cc: Ingo Molnar mi...@redhat.com Cc: Arnaldo Carvalho de Melo a...@kernel.org Signed-off-by: Steve Capper steve.cap...@linaro.org --- Hi, This patch fixes

Re: [PATCH v5 19/27] IB/Verbs: Use management helper cap_iw_cm()

2015-04-20 Thread Steve Wise
On 4/20/2015 3:40 AM, Michael Wang wrote: Introduce helper cap_iw_cm() to help us check if the port of an IB device support IWARP Communication Manager. Cc: Hal Rosenstock h...@dev.mellanox.co.il Cc: Steve Wise sw...@opengridcomputing.com Cc: Tom Talpey t...@talpey.com Cc: Jason Gunthorpe

Re: [PATCH] mm/hugetlb: reduce arch dependent code about huge_pmd_unshare

2015-04-24 Thread Steve Capper
, powerpc, metag, sh, s390) do not? Potentially laziness/ignorance-of-feature? It looks like this feature started on x86_64 and then spread to arm*. Yes. In 3212b535f200c85b5a6 Steve Capper (ARM person) hoisted the code out of x86 into generic, then made arm use it. I tested the pmd sharing

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-05 Thread Steve Grubb
On Tuesday, May 05, 2015 09:56:03 AM Eric W. Biederman wrote: Steve Grubb sgr...@redhat.com writes: The requirements for auditing of containers should be derived from VPP. In it, it asks for selectable auditing, selective audit, and selective audit review. What this means is that we need

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-05 Thread Steve Grubb
On Tuesday, May 05, 2015 10:31:20 AM Aristeu Rozanski wrote: Hi Steve, On Tue, May 05, 2015 at 10:22:32AM -0400, Steve Grubb wrote: The requirements for auditing of containers should be derived from VPP. In it, it asks for selectable auditing, selective audit, and selective audit review

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-05 Thread Steve Grubb
events. -Steve As suggested by Eric Paris, there are 12 message types, one for each of creation and deletion, one for each type of namespace so that text searches are easier in conjunction with the AUDIT_NS_INFO message type, being able to search for all records such as netns=4 and to avoid

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-14 Thread Steve Grubb
On Thursday, May 14, 2015 10:42:38 AM Eric W. Biederman wrote: Steve Grubb sgr...@redhat.com writes: On Tuesday, May 12, 2015 03:57:59 PM Richard Guy Briggs wrote: On 15/05/05, Steve Grubb wrote: I think there needs to be some more discussion around this. It seems like

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-14 Thread Steve Grubb
On Tuesday, May 12, 2015 03:57:59 PM Richard Guy Briggs wrote: On 15/05/05, Steve Grubb wrote: I think there needs to be some more discussion around this. It seems like this is not exactly recording things that are useful for audit. It seems to me that either audit has to assemble

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-15 Thread Steve Grubb
in userspace, I think. I don't doubt that just as user space sequences the actions that are a login. I just need the kernel to do some book keeping and associate the necessary attributes in the event record to be able to reconstruct what is actually happening. -Steve -- To unsubscribe from this list

Re: [PATCH V6 05/10] audit: log creation and deletion of namespace instances

2015-05-15 Thread Steve Grubb
, as Steve points out, there is precedence for the kernel to record userspace tokens for the sake of audit. Personally I'm not a big fan of this in general, but I do recognize that it does satisfy a legitimate need. Think of things like auid and the sessionid as necessary evils; audit

RE: [PATCH v3 27/28] IB/Verbs: Clean up rdma_ib_or_iboe()

2015-04-16 Thread Steve Wise
-Original Message- From: Jason Gunthorpe [mailto:jguntho...@obsidianresearch.com] Sent: Thursday, April 16, 2015 11:43 AM To: Michael Wang Cc: Roland Dreier; Sean Hefty; Hal Rosenstock; linux-r...@vger.kernel.org; linux-kernel@vger.kernel.org; Tom Tucker; Steve Wise; Hoang-Nam

RE: [PATCH v2 11/17] IB/Verbs: Reform link_layer_show() and ib_uverbs_query_port()

2015-04-07 Thread Steve Wise
link_layer: Ethernet Steve. -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org

RE: [PATCH v2 10/17] IB/Verbs: Adopt management helpers for IB helpers

2015-04-07 Thread Steve Wise
Rosenstock; Tom Tucker; Steve Wise; Hoang-Nam Nguyen; Christoph Raisch; Mike Marciniszyn; Eli Cohen; Faisal Latif; Upinder Malhi; Trond Myklebust; J. Bruce Fields; David S. Miller; Ira Weiny; PJ Waskiewicz; Tatyana Nikolova; Or Gerlitz; Jack Morgenstein; Haggai Eran; Ilya Nelkenbaum; Yann

RE: [PATCH v2 13/17] IB/Verbs: Reform cma/ucma with management helpers

2015-04-07 Thread Steve Wise
; Steve Wise; Hoang-Nam Nguyen; Christoph Raisch; Mike Marciniszyn; Eli Cohen; Faisal Latif; Upinder Malhi; Trond Myklebust; J. Bruce Fields; David S. Miller; Ira Weiny; PJ Waskiewicz; Tatyana Nikolova; Or Gerlitz; Jack Morgenstein; Haggai Eran; Ilya Nelkenbaum; Yann Droneaud; Bart Van Assche

[PATCH V1 1/2] input: misc: da9063: OnKey driver

2015-04-08 Thread Steve Twiss
From: Steve Twiss stwiss.opensou...@diasemi.com Add OnKey driver support for DA9063 This patch is dependent on PATCH V1 2/2 Signed-off-by: Steve Twiss stwiss.opensou...@diasemi.com --- This patch applies against linux-next and v4.0-rc6 MAINTAINERS | 2 +- drivers

<    3   4   5   6   7   8   9   10   11   12   >