Re: [PATCH 0/3] drivers/net/ethernet/amd: Follow style guide

2021-02-07 Thread Amy Parker
On Sat, Feb 6, 2021 at 12:07 PM Jakub Kicinski wrote: > > On Fri, 5 Feb 2021 16:01:43 -0800 Amy Parker wrote: > > This patchset updates atarilance.c and sun3lance.c to follow the kernel > > style guide. Each patch tackles a different issue in the style guide. > > These ar

Re: [PATCH] ia64: Fix style guide breakage

2021-02-06 Thread Amy Parker
On Sat, Feb 6, 2021 at 8:07 AM John Paul Adrian Glaubitz wrote: > > Hi Amy! > > On 2/5/21 11:06 PM, Amy Parker wrote: > > Some statements do not have proper spacing between their C > > keywords (commonly if and for) throughout files in the ia64 tree. > > This

Re: [PATCH 0/3] drivers/net/ethernet/amd: Follow style guide

2021-02-05 Thread Amy Parker
On Fri, Feb 5, 2021 at 7:16 PM Randy Dunlap wrote: > > On 2/5/21 4:01 PM, Amy Parker wrote: > > This patchset updates atarilance.c and sun3lance.c to follow the kernel > > style guide. Each patch tackles a different issue in the style guide. > > > >

[PATCH] ia64: Fix style guide breakage

2021-02-05 Thread Amy Parker
Some statements do not have proper spacing between their C keywords (commonly if and for) throughout files in the ia64 tree. This patch corrects this to follow the kernel code style guide. Signed-off-by: Amy Parker --- arch/ia64/hp/common/sba_iommu.c | 6 +++--- arch/ia64/kernel

[PATCH 1/3] drivers/net/ethernet/amd: Correct spacing around C keywords

2021-02-05 Thread Amy Parker
Many C keywords and their statements are not formatted correctly per the kernel style guide. Their spacing makes them harder to read and to maintain. This patch updates their spacing to follow the style guide. Signed-off-by: Amy Parker --- drivers/net/ethernet/amd/atarilance.c | 36

[PATCH 2/3] drivers/net/ethernet/amd: Fix bracket matching and line levels

2021-02-05 Thread Amy Parker
Some statements - often if statements - do not follow the kernel style guide regarding what lines brackets and pairs should be on. This patch fixes those style violations. Signed-off-by: Amy Parker --- drivers/net/ethernet/amd/atarilance.c | 13 + drivers/net/ethernet/amd

[PATCH 3/3] drivers/net/ethernet/amd: Break apart one-lined expressions

2021-02-05 Thread Amy Parker
Some expressions using C keywords - especially if expressions - are crammed onto one line. The kernel style guide indicates not to do this, as it harms readability. This patch splits these one-lined statements into two lines. Signed-off-by: Amy Parker --- drivers/net/ethernet/amd/atarilance.c

Re: [PATCH 0/3] fs/efs: Follow kernel style guide

2021-02-05 Thread Amy Parker
On Fri, Feb 5, 2021 at 2:37 PM Richard Weinberger wrote: > > On Fri, Feb 5, 2021 at 11:26 PM Amy Parker wrote: > > > > On Fri, Feb 5, 2021 at 5:1 AM David Sterba wrote: > > > > > > On Thu, Feb 04, 2021 at 08:52:14PM -0800, Amy Parker wrote: > > >

[PATCH 0/3] drivers/net/ethernet/amd: Follow style guide

2021-02-05 Thread Amy Parker
This patchset updates atarilance.c and sun3lance.c to follow the kernel style guide. Each patch tackles a different issue in the style guide. -Amy IP Amy Parker (3): drivers/net/ethernet/amd: Correct spacing around C keywords drivers/net/ethernet/amd: Fix bracket matching and line levels

Re: [PATCH 0/3] fs/efs: Follow kernel style guide

2021-02-05 Thread Amy Parker
On Fri, Feb 5, 2021 at 5:1 AM David Sterba wrote: > > On Thu, Feb 04, 2021 at 08:52:14PM -0800, Amy Parker wrote: > > As the EFS driver is old and non-maintained, > > Is anybody using EFS on current kernels? There's not much point updating > it to current coding style, deleti

[PATCH v2 3/3] fs/efs: Fix line breakage for C keywords

2021-02-04 Thread Amy Parker
Some statements - such as if statements - are not broken into their lines correctly. For example, some are expressed on a single line. Single line if statements are expressely prohibited by the style guide. This patch corrects these violations. Signed-off-by: Amy Parker --- fs/efs/inode.c

[PATCH v2 0/3] fs/efs: Follow kernel style guide

2021-02-04 Thread Amy Parker
- Corrected line breakage for C keywords Amy Parker (3): fs/efs: Use correct brace styling for statements fs/efs: Correct spacing after C keywords fs/efs: Fix line breakage for C keywords fs/efs/inode.c | 36 ++-- fs/efs/namei.c | 2 +- fs/efs/super.c | 25

Re: [PATCH 1/3] fs/efs: Use correct brace styling for statements

2021-02-04 Thread Amy Parker
On Thu, Feb 4, 2021 at 9:09 PM Chaitanya Kulkarni wrote: > > On 2/4/21 21:01, Amy Parker wrote: > >> Commit message is too long. Follow the style present in the tree. > > Are you referring to the per-line length? That was supposed to have > > been broken up, my apol

[PATCH v2 2/3] fs/efs: Correct spacing after C keywords

2021-02-04 Thread Amy Parker
In EFS code, some C keywords (most commonly 'for') do not have spaces before their instructions, such as for() vs for (). The kernel style guide indicates that these should be of the latter variant. This patch updates them accordingly. Signed-off-by: Amy Parker --- fs/efs/inode.c | 8

[PATCH v2 1/3] fs/efs: Use correct brace styling for statements

2021-02-04 Thread Amy Parker
. This patch fixes these style violations. Single-line statements that have braces have had their braces stripped. Pair single-line statements have been formatted per the style guide. Pair mixed-line statements have had their braces updated to conform. Signed-off-by: Amy Parker --- fs/efs/inode.c | 10

Re: [PATCH 1/3] fs/efs: Use correct brace styling for statements

2021-02-04 Thread Amy Parker
On Thu, Feb 4, 2021 at 8:57 PM Chaitanya Kulkarni wrote: > > On 2/4/21 20:55, Amy Parker wrote: > > Many single-line statements have unnecessary braces, and some statement > > pairs have mismatched braces. This is a clear violation of the kernel style > > guide, which m

[PATCH 3/3] fs/efs: Fix line breakage for C keywords

2021-02-04 Thread Amy Parker
Some statements - such as if statements - are not broken into their lines correctly. For example, some are expressed on a single line. Single line if statements are expressely prohibited by the style guide. This patch corrects these violations. Signed-off-by: Amy Parker --- fs/efs/inode.c

[PATCH 2/3] fs/efs: Correct spacing after C keywords

2021-02-04 Thread Amy Parker
In EFS code, some C keywords (most commonly 'for') do not have spaces before their instructions, such as for() vs for (). The kernel style guide indicates that these should be of the latter variant. This patch updates them accordingly. Signed-off-by: Amy Parker --- fs/efs/inode.c | 8

[PATCH 1/3] fs/efs: Use correct brace styling for statements

2021-02-04 Thread Amy Parker
. This patch fixes these style violations. Single-line statements that have braces have had their braces stripped. Pair single-line statements have been formatted per the style guide. Pair mixed-line statements have had their braces updated to conform. Signed-off-by: Amy Parker --- fs/efs/inode.c | 10

[PATCH 0/3] fs/efs: Follow kernel style guide

2021-02-04 Thread Amy Parker
As the EFS driver is old and non-maintained, many kernel style guide rules have not been followed, and their violations have not been noticed. This patchset corrects those violations. Amy Parker (3): fs/efs: Use correct brace styling for statements fs/efs: Correct spacing after C keywords

Re: Alternative compilers to GCC/Clang

2021-02-02 Thread Amy Parker
On Tue, Feb 2, 2021 at 8:26 AM Amy Parker wrote: > > It compiles extremely fast, implements some subsets of gcc (a few > > attributes for example), but is far from being able to compile a kernel > > Well, we'll see what I can do with that. :) Well, just installed it and tried b

Re: Alternative compilers to GCC/Clang

2021-02-02 Thread Amy Parker
On Mon, Feb 1, 2021 at 9:33 PM Willy Tarreau wrote: > > Hi Amy, > > On Mon, Feb 01, 2021 at 03:31:49PM -0800, Amy Parker wrote: > > Hello! My name's Amy. I'm really impressed by the work done to make > > Clang (and the LLVM toolchain overall) able to compile the ker

Re: [PATCH net 3/4] net: ipa: use the right accessor in ipa_endpoint_status_skip()

2021-02-01 Thread Amy Parker
On Mon, Feb 1, 2021 at 4:15 PM Alex Elder wrote: > > On 2/1/21 6:02 PM, Amy Parker wrote: > > On Mon, Feb 1, 2021 at 3:32 PM Alex Elder wrote: > >> > >> When extracting the destination endpoint ID from the status in > >> ipa_endpoint_status_skip()

Re: [PATCH] nvme-pci: Mark Phison E16 (Corsair MP600) as IGNORE_DEV_SUBNQN

2021-02-01 Thread Amy Parker
> -- > 2.26.2 > Can't test this - don't have an MP600 of my own to test with - but it should work just fine. If anyone else has an MP600 to throw at this that'd be great. Acked-by: Amy Parker Best regards, Amy Parker (she/her/hers)

Re: [PATCH net 1/4] net: ipa: add a missing __iomem attribute

2021-02-01 Thread Amy Parker
read32(virt + GSI_CH_C_CNTXT_0_OFFSET(channel_id)); > -- > 2.27.0 > Seems pretty straightforward to me, ioread32 expects an __iomem-annotated pointer. Reviewed-by: Amy Parker

Re: [PATCH net 3/4] net: ipa: use the right accessor in ipa_endpoint_status_skip()

2021-02-01 Thread Amy Parker
On Mon, Feb 1, 2021 at 4:02 PM Amy Parker wrote: > > Fix this by using u8_get_bits() to get the destination endpoint ID. > > Isn't > Apologies about this - premature email sending. This was simply going to be "Isn't endpoint_id u32?", which was addressed later anyways.

Re: [PATCH net 3/4] net: ipa: use the right accessor in ipa_endpoint_status_skip()

2021-02-01 Thread Amy Parker
n true; > > -- > 2.27.0 > As far as I see it, using u32_get_bits instead of u8_get_bits simply eliminates confusion about the type of endpoint_id. Perhaps instead of this patch, send a patch with a comment that while u32_get_bits is used, the field is only 8 bits? Best regards, Amy Parker (she/her/hers)

Re: [PATCH] mm/swap_state: Constify static struct attribute_group

2021-02-01 Thread Amy Parker
ct attribute *swap_attrs[] = { > NULL, > }; > > -static struct attribute_group swap_attr_group = { > +static const struct attribute_group swap_attr_group = { > .attrs = swap_attrs, > }; > > -- > 2.30.0 > Looks all good to me - there aren't any dependencies on it anywhere else. Reviewed-by: Amy Parker

Alternative compilers to GCC/Clang

2021-02-01 Thread Amy Parker
structure as GCC and Clang (read: you can pass it in as CC=compilername in your $MAKEOPTS). Any compilers along that route anyone here has worked with that I could work with? Best regards, Amy Parker (she/her/hers)

Re: Getting a new fs in the kernel

2021-01-27 Thread Amy Parker
ng > haul, it really needs to be more than a single person's hobby. Yeah, got that. > > Good luck! > > - Ted Thank you! Best regards, Amy Parker (she/her/hers)

Re: [PATCH 1/2] fs/efs/inode.c: follow style guide

2021-01-27 Thread Amy Parker
On Wed, Jan 27, 2021 at 9:08 AM Kari Argillander wrote: > > On Tue, Jan 26, 2021 at 12:58:05PM -0800, Amy Parker wrote: > > This patch updates inode.c for EFS to follow the kernel style guide. > > > +++ b/fs/efs/inode.c > > @@ -109,9 +109,9 @@ struct inode *efs_ige

Re: [PATCH 1/2] fs/efs/inode.c: follow style guide

2021-01-26 Thread Amy Parker
On Tue, Jan 26, 2021 at 7:59 PM Randy Dunlap wrote: > > On 1/26/21 7:46 PM, Randy Dunlap wrote: > > Hi Amy, > > > > What mail client did you use? > > It is breaking (splitting) long lines into shorter lines and that > > makes it not possible to apply the patch cleanly. Was worried about that,

[PATCH 2/2] fs/efs: fix style guide for namei.c and super.c

2021-01-26 Thread Amy Parker
This patch updates various styling in namei.c and super.c to follow the kernel style guide. Signed-off-by: Amy Parker --- fs/efs/namei.c | 2 +- fs/efs/super.c | 13 +++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/fs/efs/namei.c b/fs/efs/namei.c index 38961ee1d1af

[PATCH 0/2] Clean up various style guide violations for EFS

2021-01-26 Thread Amy Parker
and fix up something in EFS in an emergency, probably a good idea to have the code as neat as possible. Amy Parker (2): fs/efs/inode.c: follow style guide fs/efs: fix style guide for namei.c and super.c fs/efs/inode.c | 64 +- fs/efs/namei.c | 2

[PATCH 1/2] fs/efs/inode.c: follow style guide

2021-01-26 Thread Amy Parker
This patch updates inode.c for EFS to follow the kernel style guide. Signed-off-by: Amy Parker --- fs/efs/inode.c | 64 +- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/fs/efs/inode.c b/fs/efs/inode.c index 89e73a6f0d36

Re: Getting a new fs in the kernel

2021-01-26 Thread Amy Parker
On Tue, Jan 26, 2021 at 11:18 AM Matthew Wilcox wrote: > > On Tue, Jan 26, 2021 at 08:23:03AM -0800, Amy Parker wrote: > > Kernel development newcomer here. I've begun creating a concept for a > > new filesystem, and ideally once it's completed, rich, and stable

Re: Getting a new fs in the kernel

2021-01-26 Thread Amy Parker
On Tue, Jan 26, 2021 at 11:06 AM Chaitanya Kulkarni wrote: > > Amy, > > On 1/26/21 8:26 AM, Amy Parker wrote: > > Kernel development newcomer here. I've begun creating a concept for a > > new filesystem, and ideally once it's completed, rich, and stable I'd > >

Re: Getting a new fs in the kernel

2021-01-26 Thread Amy Parker
On Tue, Jan 26, 2021 at 9:15 AM Andreas Dilger wrote: > > On Jan 26, 2021, at 09:25, Amy Parker wrote: > > > > Kernel development newcomer here. I've begun creating a concept for a > > new filesystem, and ideally once it's completed, rich, and stable I'd > >

Getting a new fs in the kernel

2021-01-26 Thread Amy Parker
in tons of dependent patches doesn't sound like a great idea. I've seen requests for pulls, but since I'm new here I don't really know what to do. Thank you for guidance! Best regards, Amy Parker she/her/hers

Directory category for accessory drivers

2020-11-03 Thread Amy Parker
on the drivers/ folder level? If such is the case, what should said folder be entitled? Best regards, Amy Parker Please refer to me using singular they/them/theirs pronouns.

Regarding Proposal contact:(wlm.parke...@gmail.com ) call:+447031899987

2015-02-23 Thread WILLIAM PARKER
-- 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/

Regarding Proposal contact:(wlm.parke...@gmail.com ) call:+447031899987

2015-02-23 Thread WILLIAM PARKER
-- 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/

Buisness Proposal For you Contact: mao_cha...@outlook.com

2015-02-15 Thread William Parker
*CSIR-NGRI ** Disclaimer ** CSIR-NGRI This email, together with any files or attachments transmitted with it, is intended solely for the addressee. If you are not the intended recipient, please delete the email and notify the sender /originator immediately. Please

Buisness Proposal For you Contact: mao_cha...@outlook.com

2015-02-15 Thread William Parker
*CSIR-NGRI ** Disclaimer ** CSIR-NGRI This email, together with any files or attachments transmitted with it, is intended solely for the addressee. If you are not the intended recipient, please delete the email and notify the sender /originator immediately. Please

Re: broken links on https://www.kernel.org/doc/

2014-12-02 Thread Matt Parker
, -Matt On Sat, Nov 29, 2014 at 5:28 PM, Rob Landley wrote: > > On 11/29/14 16:27, Matt Parker wrote: > > Howdy Rob, > > > > I was following the links in "Videos worth watching" and found that the > > links for the videos on video.google.com <http://vi

Re: broken links on https://www.kernel.org/doc/

2014-12-02 Thread Matt Parker
, -Matt On Sat, Nov 29, 2014 at 5:28 PM, Rob Landley r...@landley.net wrote: On 11/29/14 16:27, Matt Parker wrote: Howdy Rob, I was following the links in Videos worth watching and found that the links for the videos on video.google.com http://video.google.com are broken, but I could

Loan Offer

2014-07-10 Thread Terry Parker Loan Firm
Do you need a loan at 3% interest rate? Revert back to us now with your details address, phone no,amount,duration -- 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

Loan Offer

2014-07-10 Thread Terry Parker Loan Firm
Do you need a loan at 3% interest rate? Revert back to us now with your details address, phone no,amount,duration -- 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

Re: ARM: ixp4xx regression (bisected) since v3.5-rc1

2013-02-23 Thread Brad Parker
On Sat, Feb 23, 2013 at 4:49 AM, Russell King - ARM Linux wrote: > On Sat, Feb 23, 2013 at 01:30:57AM -0500, Brad Parker wrote: >> I then reversed this commit on 3.7.9 and the board booted >> successfully. I'm not sure if this affects other boards of the same >> arch or no

Re: ARM: ixp4xx regression (bisected) since v3.5-rc1

2013-02-23 Thread Brad Parker
On Sat, Feb 23, 2013 at 4:49 AM, Russell King - ARM Linux li...@arm.linux.org.uk wrote: On Sat, Feb 23, 2013 at 01:30:57AM -0500, Brad Parker wrote: I then reversed this commit on 3.7.9 and the board booted successfully. I'm not sure if this affects other boards of the same arch or not, I only

ARM: ixp4xx regression (bisected) since v3.5-rc1

2013-02-22 Thread Brad Parker
I am using an ADI Pronghorn Metro board and noticed an issue with any kernel >= 3.5-rc1 where the board would not boot (or at least no console messages appear over the serial port), just giving "Uncompressing Linux... done, booting the kernel." and stopping there. I ran a git bisect between v3.4

ARM: ixp4xx regression (bisected) since v3.5-rc1

2013-02-22 Thread Brad Parker
I am using an ADI Pronghorn Metro board and noticed an issue with any kernel = 3.5-rc1 where the board would not boot (or at least no console messages appear over the serial port), just giving Uncompressing Linux... done, booting the kernel. and stopping there. I ran a git bisect between v3.4 and

Re: intel 82571EB gigabit fails to see link on 2.6.20-rc5 in-tree e1000 driver (regression)

2007-01-16 Thread Allen Parker
Allen Parker wrote: I have a PCI-E pro/1000 MT Quad Port adapter, which works quite well under 2.6.19.2 but fails to see link under 2.6.20-rc5. Earlier today I reported this to [EMAIL PROTECTED], but thought I should get the word out in case someone else is testing this kernel on this nic

Re: intel 82571EB gigabit fails to see link on 2.6.20-rc5 in-tree e1000 driver (regression)

2007-01-16 Thread Allen Parker
Allen Parker wrote: I have a PCI-E pro/1000 MT Quad Port adapter, which works quite well under 2.6.19.2 but fails to see link under 2.6.20-rc5. Earlier today I reported this to [EMAIL PROTECTED], but thought I should get the word out in case someone else is testing this kernel on this nic

82571EB gigabit on e1000 in 2.6.20-rc5

2007-01-15 Thread Allen Parker
2.6.20-rc5. If the e1000 guys need any assistance testing, I'll be more than happy to volunteer myself as a guinea pig for patches. Allen Parker - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at ht

82571EB gigabit on e1000 in 2.6.20-rc5

2007-01-15 Thread Allen Parker
. If the e1000 guys need any assistance testing, I'll be more than happy to volunteer myself as a guinea pig for patches. Allen Parker - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo

Re: Please open sysfs symbols to proprietary modules

2005-02-17 Thread parker
On Thu, 03 Feb 2005 09:41:00 +0100, Arjan van de Ven <[EMAIL PROTECTED]> wrote: > On Wed, 2005-02-02 at 17:56 -0500, Pavel Roskin wrote: > > Hello! > > > > I'm writing a module under a proprietary license. I decided to use sysfs > > to do the configuration. Unfortunately, all sysfs exports are

Re: Please open sysfs symbols to proprietary modules

2005-02-17 Thread parker
On Thu, 03 Feb 2005 09:41:00 +0100, Arjan van de Ven [EMAIL PROTECTED] wrote: On Wed, 2005-02-02 at 17:56 -0500, Pavel Roskin wrote: Hello! I'm writing a module under a proprietary license. I decided to use sysfs to do the configuration. Unfortunately, all sysfs exports are available

Question: multiple major numbers - one driver

2000-10-27 Thread chris parker
I have a need for more than 256 minor numbers. I could add some more major numbers, thus getting the number of majors * 256. I would like to have only device driver loaded to handle the multiple majors. I thoought of the following things that would have to be changed: 1) make the new device

Question: multiple major numbers - one driver

2000-10-27 Thread chris parker
I have a need for more than 256 minor numbers. I could add some more major numbers, thus getting the number of majors * 256. I would like to have only device driver loaded to handle the multiple majors. I thoought of the following things that would have to be changed: 1) make the new device