[PATCH 2/2] core-api/memory-hotplug.rst: divide Locking Internal section by different locks

2018-12-04 Thread Wei Yang
Currently locking for memory hotplug is a little complicated. Generally speaking, we leverage the two global lock: * device_hotplug_lock * mem_hotplug_lock to serialise the process. While for the long term, we are willing to have more fine-grained lock to provide higher scalability. This p

[PATCH 1/2] admin-guide/memory-hotplug.rst: remove locking internal part from admin-guide

2018-12-04 Thread Wei Yang
Locking Internal section exists in core-api documentation, which is more suitable for this. This patch removes the duplication part here. Signed-off-by: Wei Yang --- Documentation/admin-guide/mm/memory-hotplug.rst | 40 - 1 file changed, 40 deletions(-) diff --git a/Doc

Re: [PATCH v5 1/9] clkdev: add managed clkdev lookup registration

2018-12-04 Thread Matti Vaittinen
Hello Russell, Thanks for the review. I do appreciate this. I'll send out v6 where I'll have these fixed =) On Mon, Dec 03, 2018 at 06:06:12PM +, Russell King - ARM Linux wrote: > > +static int devm_clk_match_clkdev(struct device *dev, void *res, void *data) > > +{ > > + struct clk_lookup *

Re: [PATCH] i3c: master: dw: split dw-i3c-master.c into master and bus specific parts

2018-12-04 Thread Boris Brezillon
On Tue, 4 Dec 2018 00:34:20 + vitor wrote: > >>> What I call a slave controller would be something that lets you reply to > >>> SDR/DDR transactions or fill a generic regmap that would be exposed to > >>> other masters on the bus. This way we could implement generic slave > >>> drivers in L

Re: [PATCH 1/2 v2] kdump: add the vmcoreinfo documentation

2018-12-04 Thread lijiang
在 2018年12月03日 23:08, Borislav Petkov 写道: > Add some more Ccs. > Thanks a lot. There are more people to review and improve this document together, that would be fine. > On Sun, Dec 02, 2018 at 11:08:38AM +0800, Lianbo Jiang wrote: >> This document lists some variables that export to vmcoreinfo,

[PATCH V2 1/7] ext4: use IS_ENCRYPTED() to check encryption status

2018-12-04 Thread Chandan Rajendra
This commit removes the ext4 specific ext4_encrypted_inode() and makes use of the generic IS_ENCRYPTED() macro to check for the encryption status of an inode. Signed-off-by: Chandan Rajendra --- fs/ext4/dir.c | 8 fs/ext4/ext4.h| 5 - fs/ext4/ext4_jbd2.h | 2 +-

[PATCH V2 0/7] Remove fs specific fscrypt and fsverity build config options

2018-12-04 Thread Chandan Rajendra
In order to have a common code base for fscrypt & fsverity "post read" processing across filesystems which implement fscrypt/fsverity, this commit removes filesystem specific build config option (CONFIG_EXT4_FS_ENCRYPTION, CONFIG_EXT4_FS_VERITY, CONFIG_F2FS_FS_ENCRYPTION, CONFIG_F2FS_FS_VERITY and

[PATCH V2 3/7] fscrypt: remove filesystem specific build config option

2018-12-04 Thread Chandan Rajendra
In order to have a common code base for fscrypt "post read" processing for all filesystems which support encryption, this commit removes filesystem specific build config option (e.g. CONFIG_EXT4_FS_ENCRYPTION) and replaces it with a build option (i.e. CONFIG_FS_ENCRYPTION) whose value affects all t

[PATCH V2 4/7] Add S_VERITY and IS_VERITY()

2018-12-04 Thread Chandan Rajendra
Similar to S_ENCRYPTED/IS_ENCRYPTED(), this commit adds S_VERITY/IS_VERITY() to be able to check if a VFS inode has verity information associated with it. Signed-off-by: Chandan Rajendra --- include/linux/fs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/fs.h b/include/lin

[PATCH V2 2/7] f2fs: use IS_ENCRYPTED() to check encryption status

2018-12-04 Thread Chandan Rajendra
This commit removes the f2fs specific f2fs_encrypted_inode() and makes use of the generic IS_ENCRYPTED() macro to check for the encryption status of an inode. Acked-by: Chao Yu Signed-off-by: Chandan Rajendra --- fs/f2fs/data.c | 4 ++-- fs/f2fs/dir.c | 10 +- fs/f2fs/file.c | 10 +

[PATCH V2 7/7] fsverity: Remove filesystem specific build config option

2018-12-04 Thread Chandan Rajendra
In order to have a common code base for fsverity "post read" processing for all filesystems which support fsverity, this commit removes filesystem specific build config option (e.g. CONFIG_EXT4_FS_VERITY) and replaces it with a build option (i.e. CONFIG_FS_VERITY) whose value affects all the filesy

[PATCH V2 5/7] ext4: use IS_VERITY() to check inode's fsverity status

2018-12-04 Thread Chandan Rajendra
This commit now uses IS_VERITY() macro to check if fsverity is enabled on an inode. Signed-off-by: Chandan Rajendra --- fs/ext4/ext4.h | 9 - fs/ext4/file.c | 2 +- fs/ext4/inode.c| 10 ++ fs/ext4/readpage.c | 2 +- fs/ext4/super.c| 1 + 5 files changed, 9 ins

[PATCH V2 6/7] f2fs: use IS_VERITY() to check inode's fsverity status

2018-12-04 Thread Chandan Rajendra
This commit now uses IS_VERITY() macro to check if fsverity is enabled on an inode. Acked-by: Chao Yu Signed-off-by: Chandan Rajendra --- fs/f2fs/file.c | 6 +++--- fs/f2fs/inode.c | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/fs/f2fs/file.c b/fs/f2fs/file.c index 6c

[PATCH v6 00/10] clk: clkdev/of_clk - add managed lookup and provider registrations

2018-12-04 Thread Matti Vaittinen
Series add bd71837/bd71837 PMIC clock support + managed interfaces Few clk drivers appear to be leaking clkdev lookup registrations at driver remove. The patch series adds devm versions of lookup registrations and cleans up few drivers. Driver clean-up patches have not been tested as I lack the HW

[PATCH v6 01/10] clkdev: add managed clkdev lookup registration

2018-12-04 Thread Matti Vaittinen
Clkdev registration lacks of managed registration functions and it seems few drivers do not drop clkdev lookups at exit. Add devm_clk_hw_register_clkdev and devm_clk_release_clkdev to ease lookup releasing at exit. Signed-off-by: Matti Vaittinen --- Documentation/driver-model/devres.txt | 1 +

[PATCH v6 02/10] clk: Add kerneldoc to managed of-provider interfaces

2018-12-04 Thread Matti Vaittinen
Document the devm_of_clk_del_provider and the devm_of_clk_add_hw_provider functions. Signed-off-by: Matti Vaittinen --- drivers/clk/clk.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index af011974d4ec..78c90913f987 100644 --- a/drive

[PATCH v6 03/10] clk: of-provider: look at parent if registered device has no provider info

2018-12-04 Thread Matti Vaittinen
It seems to be usual for MFD devices that the created 'clock sub-device' do not have own DT node. The clock provider information is usually in the main device node which is owned by the MFD device. Change the devm variant of clk of-provider registration to check the parent device node if given devi

[PATCH v6 04/10] clk: clk-max77686: Clean clkdev lookup leak and use devm

2018-12-04 Thread Matti Vaittinen
clk-max77686 never clean clkdev lookup at remove. This can cause oops if clk-max77686 is removed and inserted again. Fix leak by using new devm clkdev lookup registration. Simplify also error path by using new devm_of_clk_add_hw_provider. Signed-off-by: Matti Vaittinen Reviewed-by: Krzysztof Kozl

[PATCH v6 05/10] clk: clk-st: avoid clkdev lookup leak at remove

2018-12-04 Thread Matti Vaittinen
Use devm based clkdev lookup registration to avoid leaking lookup structures. Signed-off-by: Matti Vaittinen --- drivers/clk/x86/clk-st.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/clk/x86/clk-st.c b/drivers/clk/x86/clk-st.c index 3a0996f2d556..25d4b97aff9b 100

[PATCH v6 06/10] clk: clk-hi655x: Free of_provider at remove

2018-12-04 Thread Matti Vaittinen
use devm variant for of_provider registration so provider is freed at exit. Signed-off-by: Matti Vaittinen --- drivers/clk/clk-hi655x.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/clk/clk-hi655x.c b/drivers/clk/clk-hi655x.c index 403a0188634a..a0de3315df2e 100

[PATCH v6 07/10] clk: rk808: use managed version of of_provider registration

2018-12-04 Thread Matti Vaittinen
Simplify clean-up for rk808 by using managed version of of_provider registration. Signed-off-by: Matti Vaittinen --- drivers/clk/clk-rk808.c | 15 ++- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/drivers/clk/clk-rk808.c b/drivers/clk/clk-rk808.c index 6461f2820a5b..

[PATCH v6 08/10] clk: clk-twl6040: Free of_provider at remove

2018-12-04 Thread Matti Vaittinen
use devm variant for of_provider registration so provider is freed at exit. Signed-off-by: Matti Vaittinen Acked-by: Peter Ujfalusi --- drivers/clk/clk-twl6040.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk-twl6040.c b/drivers/clk/clk-twl6040.c index

[PATCH v6 09/10] clk: apcs-msm8916: simplify probe cleanup by using devm

2018-12-04 Thread Matti Vaittinen
use devm variant for of_provider registration. Signed-off-by: Matti Vaittinen --- drivers/clk/qcom/apcs-msm8916.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/clk/qcom/apcs-msm8916.c b/drivers/clk/qcom/apcs-msm8916.c index b1cc8dbcd327..caa9b0d53d68 100644 ---

[PATCH v6 10/10] clk: bd718x7: Initial support for ROHM bd71837/bd71847 PMIC clock

2018-12-04 Thread Matti Vaittinen
ROHM bd71837 and bd71847 contain 32768Hz clock gate. Support the clock using generic clock framework. Note, only bd71837 is tested but bd71847 should be identical what comes to clk parts. Signed-off-by: Matti Vaittinen --- drivers/clk/Kconfig | 7 +++ drivers/clk/Makefile | 1 + d

Re: [PATCH v6 00/10] clk: clkdev/of_clk - add managed lookup and provider registrations

2018-12-04 Thread Matti Vaittinen
On Tue, Dec 04, 2018 at 01:31:43PM +0200, Matti Vaittinen wrote: > Series add bd71837/bd71837 PMIC clock support + managed interfaces > Changed drivers are: > clk-max77686, clk-st, clk-hi655x, rk808, clk-twl6040 > and apcs-msm8916. New driver is clk-bd718x7 > > Changelog (for this series) v6 > -

Re: [PATCH 10/17] prmem: documentation

2018-12-04 Thread Igor Stoppa
Hello, apologies for the delayed answer. Please find my reply to both last mails in the thread, below. On 22/11/2018 22:53, Andy Lutomirski wrote: On Thu, Nov 22, 2018 at 12:04 PM Matthew Wilcox wrote: On Thu, Nov 22, 2018 at 09:27:02PM +0200, Igor Stoppa wrote: I have studied the code invol

Re: [RFC PATCH v6 04/26] x86/fpu/xstate: Introduce XSAVES system states

2018-12-04 Thread Borislav Petkov
On Mon, Nov 19, 2018 at 01:47:47PM -0800, Yu-cheng Yu wrote: > Control-flow Enforcement (CET) MSR contents are XSAVES system states. > To support CET, introduce XSAVES system states first. > > Signed-off-by: Yu-cheng Yu > --- > arch/x86/include/asm/fpu/internal.h | 3 +- > arch/x86/include/asm/

Re: [RFC AFBC 02/12] drm: Added a new format DRM_FORMAT_XVYU2101010

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:31:56AM +, Ayan Halder wrote: > We have added a new format ie DRM_FORMAT_XVYU2101010 which is supported > by mali display driver. > > Signed-off-by: Ayan Kumar halder Reviewed-by: Liviu Dudau Best regards, Liviu > --- > drivers/gpu/drm/drm_fourcc.c | 1 + > in

Re: [RFC v3 AFBC 04/12] drm/arm/malidp: Set the AFBC register bits if the framebuffer has AFBC modifier

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:31:58AM +, Ayan Halder wrote: > Added the AFBC decoder registers for DP500 , DP550 and DP650. > These registers control the processing of AFBC buffers. It controls various > features like AFBC decoder enable, lossless transformation and block split > as well as settin

Re: [RFC AFBC 05/12] drm/arm/malidp:- Define a common list of AFBC format modifiers supported for DP500, DP550 and DP650

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:31:59AM +, Ayan Halder wrote: > We need to define a common list of format modifiers supported by each of the > Mali > display processors. The difference between DP500 from DP550/650 is that DP500 > does not support block split mode (ie AFBC_FORMAT_MOD_SPLIT) and DP55

Re: [RFC AFBC 06/12] drm/arm/malidp:- Added support for new YUV formats for DP500, DP550 and DP650

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:00AM +, Ayan Halder wrote: > We have added some new formats to be supported on DP500/DP550/DP650. Make a bit more descriptive commit message here, please! > > Signed-off-by: Ayan Kumar Halder > > Depends on :- https://patchwork.kernel.org/patch/10460063/ Revi

Re: [RFC PATCH v6 04/26] x86/fpu/xstate: Introduce XSAVES system states

2018-12-04 Thread Yu-cheng Yu
On Tue, 2018-12-04 at 17:01 +0100, Borislav Petkov wrote: > On Mon, Nov 19, 2018 at 01:47:47PM -0800, Yu-cheng Yu wrote: > > Control-flow Enforcement (CET) MSR contents are XSAVES system states. > > To support CET, introduce XSAVES system states first. > > > > Signed-off-by: Yu-cheng Yu > > --- >

Re: [RFC AFBC 07/12] drm/arm/malidp: Define the constraints on each supported drm_fourcc format for the AFBC modifiers.

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:01AM +, Ayan Halder wrote: > The constraints are as follows (for Mali-DP 500, 550, 650) :- > > 1. AFBC is not supported for the formats defined in > malidp_hw_format_is_linear_only() > > 2. Some of the formats are supported only with AFBC modifiers. Thus we have

Re: [RFC AFBC 08/12] drm/arm/malidp: Specified the rotation memory requirements for AFBC YUV formats

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:02AM +, Ayan Halder wrote: > The newly supported AFBC YUV formats have the following rotation memory > constraints (in DP550/DP650). > 1. DRM_FORMAT_VUY888/DRM_FORMAT_VUY101010 :- It can rotate upto 8 > horizontal lines in the AFBC output buffer. > 2. DRM_FORMAT_YU

Re: [RFC AFBC 09/12] drm/arm/malidp:- Writeback framebuffer does not support any modifiers

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:03AM +, Ayan Halder wrote: > In malidp, the writeback pipeline does not support writing crtc output > to a framebuffer with modifiers ie the memory writeback content is > devoid of any compression or tiling, etc. > So we have added a commit check in memory writebac

Re: [RFC AFBC 10/12] drm/arm/malidp:- Use the newly introduced malidp_format_get_bpp() instead of relying on cpp for calculating framebuffer size

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:04AM +, Ayan Halder wrote: > Formats like DRM_FORMAT_VUY101010, DRM_FORMAT_YUV420_8BIT and > DRM_FORMAT_YUV420_10BIT are expressed in bits per pixel as they have a non > integer value of cpp (thus denoted as '0' in drm_format_info[]). Therefore, > the calculation o

Re: [RFC AFBC 11/12] drm/arm/malidp:- Disregard the pitch alignment constraint for AFBC framebuffer.

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:05AM +, Ayan Halder wrote: > Considering the fact that some of the AFBC specific pixel formats are > expressed > in bits per pixel (ie bpp which is not byte aligned), the pitch (ie width * > bpp) > is not guaranteed to be aligned to burst size (ie 8 or 16 bytes).

Re: [RFC v3 AFBC 12/12] drm/arm/malidp: Added support for AFBC modifiers for all layers except DE_SMART

2018-12-04 Thread Liviu Dudau
On Mon, Dec 03, 2018 at 11:32:06AM +, Ayan Halder wrote: > The list of modifiers to be supported for each plane has been dynamically > generated > from 'malidp_format_modifiers[]' and 'malidp_hw_regmap->features'. > > Changes from v1:- > 1. Replaced DRM_ERROR() with DRM_DEBUG_KMS() in malidp_

Re: [RFC PATCH v6 04/26] x86/fpu/xstate: Introduce XSAVES system states

2018-12-04 Thread Borislav Petkov
On Tue, Dec 04, 2018 at 09:08:11AM -0800, Yu-cheng Yu wrote: > Then we will do this very often. Why don't we create all three in the > beginning: xfeatures_mask_all, xfeatures_mask_user, and xfeatures_mask_system? Because the _all thing is the OR-ed product of the two and then you don't have to u

Re: [PATCH v4 1/8] clk: clkdev/of_clk - add managed lookup and provider registrations

2018-12-04 Thread Stephen Boyd
Quoting Matti Vaittinen (2018-12-03 23:13:15) > On Mon, Dec 03, 2018 at 03:35:10PM -0800, Stephen Boyd wrote: > > > If the DT doesn't have the #clock-cells property in the node being > > registered then calling clk_get() will fail for any consumer devices > > that point to the node with a phandle

RE: [PATCH v4 1/8] clk: clkdev/of_clk - add managed lookup and provider registrations

2018-12-04 Thread Vaittinen, Matti
Hello Stephen, . > > I think we should use parent device's node, not the paren node in DT, > > right? But I agree, we should only look "one level up in the chain". > Are these two things different? I'm suggesting looking at > device_node::parent and trying to find a #clock-cells property. I thoug

Re: [PATCH v6 03/10] clk: of-provider: look at parent if registered device has no provider info

2018-12-04 Thread Stephen Boyd
Quoting Matti Vaittinen (2018-12-04 03:34:53) > It seems to be usual for MFD devices that the created 'clock sub-device' > do not have own DT node. The clock provider information is usually in the > main device node which is owned by the MFD device. Change the devm variant > of clk of-provider regi

Re: [PATCH v6 02/10] clk: Add kerneldoc to managed of-provider interfaces

2018-12-04 Thread Stephen Boyd
Quoting Matti Vaittinen (2018-12-04 03:33:48) > Document the devm_of_clk_del_provider and the > devm_of_clk_add_hw_provider functions. > > Signed-off-by: Matti Vaittinen > --- Applied to clk-next

Re: [PATCH v8 00/14] Appended signatures support for IMA appraisal

2018-12-04 Thread James Morris
On Fri, 16 Nov 2018, Thiago Jung Bauermann wrote: > On the OpenPOWER platform, secure boot and trusted boot are being > implemented using IMA for taking measurements and verifying signatures. > Since the kernel image on Power servers is an ELF binary, kernels are > signed using the scripts/sign-fi

Re: [PATCH v12 05/25] kasan: add CONFIG_KASAN_GENERIC and CONFIG_KASAN_SW_TAGS

2018-12-04 Thread Max Filippov
Hello, On Tue, Nov 27, 2018 at 9:00 AM Andrey Konovalov wrote: > > This commit splits the current CONFIG_KASAN config option into two: > 1. CONFIG_KASAN_GENERIC, that enables the generic KASAN mode (the one >that exists now); > 2. CONFIG_KASAN_SW_TAGS, that enables the software tag-based KASA

[PATCH 1/2] Documentation: convert path-lookup from markdown to resturctured text

2018-12-04 Thread NeilBrown
This allows the document to be integrated with the main documentation tree. Changes include: - rename from .md to .rst - use `` for code, not single ` - use correct sub-section marking - fix indented blocks, both code and non-code - fix external-link markup Signed-off-by: NeilBrown --- Document

[PATCH 2/2] Documentation: path-lookup - update externel refs

2018-12-04 Thread NeilBrown
As gmane is no longer reliable, use lkml.org Section numbers used by the open group seem to have changed! Signed-off-by: NeilBrown --- Documentation/filesystems/path-lookup.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/filesystems/path-lookup.rst

Re: [PATCH V2 1/7] ext4: use IS_ENCRYPTED() to check encryption status

2018-12-04 Thread Eric Biggers
On Tue, Dec 04, 2018 at 03:26:44PM +0530, Chandan Rajendra wrote: > This commit removes the ext4 specific ext4_encrypted_inode() and makes > use of the generic IS_ENCRYPTED() macro to check for the encryption > status of an inode. > > Signed-off-by: Chandan Rajendra Reviewed-by: Eric Biggers T

Re: [PATCH V2 2/7] f2fs: use IS_ENCRYPTED() to check encryption status

2018-12-04 Thread Eric Biggers
On Tue, Dec 04, 2018 at 03:26:45PM +0530, Chandan Rajendra wrote: > This commit removes the f2fs specific f2fs_encrypted_inode() and makes > use of the generic IS_ENCRYPTED() macro to check for the encryption > status of an inode. > > Acked-by: Chao Yu > Signed-off-by: Chandan Rajendra This com

Re: [PATCH v8 00/14] Appended signatures support for IMA appraisal

2018-12-04 Thread Thiago Jung Bauermann
Hello James, Thanks for you interest in these patches. James Morris writes: > On Fri, 16 Nov 2018, Thiago Jung Bauermann wrote: > >> On the OpenPOWER platform, secure boot and trusted boot are being >> implemented using IMA for taking measurements and verifying signatures. >> Since the kernel

Re: [PATCH V2 3/7] fscrypt: remove filesystem specific build config option

2018-12-04 Thread Eric Biggers
Hi Chandan, On Tue, Dec 04, 2018 at 03:26:46PM +0530, Chandan Rajendra wrote: > In order to have a common code base for fscrypt "post read" processing > for all filesystems which support encryption, this commit removes > filesystem specific build config option (e.g. CONFIG_EXT4_FS_ENCRYPTION) > an

Re: [PATCH V2 4/7] Add S_VERITY and IS_VERITY()

2018-12-04 Thread Eric Biggers
On Tue, Dec 04, 2018 at 03:26:47PM +0530, Chandan Rajendra wrote: > Similar to S_ENCRYPTED/IS_ENCRYPTED(), this commit adds > S_VERITY/IS_VERITY() to be able to check if a VFS inode has verity > information associated with it. > > Signed-off-by: Chandan Rajendra > --- > include/linux/fs.h | 2 ++

Re: [PATCH V2 5/7] ext4: use IS_VERITY() to check inode's fsverity status

2018-12-04 Thread Eric Biggers
On Tue, Dec 04, 2018 at 03:26:48PM +0530, Chandan Rajendra wrote: > This commit now uses IS_VERITY() macro to check if fsverity is > enabled on an inode. > > Signed-off-by: Chandan Rajendra > --- > fs/ext4/ext4.h | 9 - > fs/ext4/file.c | 2 +- > fs/ext4/inode.c| 10 ++-

Re: [PATCH V2 6/7] f2fs: use IS_VERITY() to check inode's fsverity status

2018-12-04 Thread Eric Biggers
Hi Chandan, On Tue, Dec 04, 2018 at 03:26:49PM +0530, Chandan Rajendra wrote: > This commit now uses IS_VERITY() macro to check if fsverity is > enabled on an inode. > > Acked-by: Chao Yu > Signed-off-by: Chandan Rajendra > --- > fs/f2fs/file.c | 6 +++--- > fs/f2fs/inode.c | 4 +++- > 2 file

Re: [PATCH V2 3/7] fscrypt: remove filesystem specific build config option

2018-12-04 Thread Eric Biggers
On Tue, Dec 04, 2018 at 03:26:46PM +0530, Chandan Rajendra wrote: > diff --git a/include/linux/fscrypt.h b/include/linux/fscrypt.h > index 952ab97af325..6ba193c23f37 100644 > --- a/include/linux/fscrypt.h > +++ b/include/linux/fscrypt.h > @@ -2,9 +2,8 @@ > /* > * fscrypt.h: declarations for per-

Re: [PATCH V2 7/7] fsverity: Remove filesystem specific build config option

2018-12-04 Thread Eric Biggers
Hi Chandan, On Tue, Dec 04, 2018 at 03:26:50PM +0530, Chandan Rajendra wrote: > In order to have a common code base for fsverity "post read" processing > for all filesystems which support fsverity, this commit removes > filesystem specific build config option (e.g. CONFIG_EXT4_FS_VERITY) > and rep

Re: [RFC] net: documentation: build a directory structure for drivers

2018-12-04 Thread David Miller
From: Jakub Kicinski Date: Mon, 3 Dec 2018 17:43:28 -0800 > Documentation/networking/ is full of cryptically named files with > driver documentation. This makes finding interesting information > at a glance really hard. Move all those files into a directory > called device_drivers (since not a

Re: [PATCH v6 03/10] clk: of-provider: look at parent if registered device has no provider info

2018-12-04 Thread Matti Vaittinen
Hello Stephen, I copied some parts of the v4 discussion here as well. Let's continue them under this one email thread. (and yep, this is my bad we now have multiple email threads - I did these new patches without waiting for the final conclusion. I should try to be more patient in the future...)

Re: [RFC] net: documentation: build a directory structure for drivers

2018-12-04 Thread Jakub Kicinski
On Tue, 04 Dec 2018 21:13:27 -0800 (PST), David Miller wrote: > From: Jakub Kicinski > Date: Mon, 3 Dec 2018 17:43:28 -0800 > > > Documentation/networking/ is full of cryptically named files with > > driver documentation. This makes finding interesting information > > at a glance really hard.