All of lore.kernel.org
 help / color / mirror / Atom feed
* Crash in 3.14.0+ (plus hacks)
@ 2014-04-10 17:17 Ben Greear
  2014-04-11 19:18 ` Ben Greear
  2014-04-25 10:48 ` J. Bruce Fields
  0 siblings, 2 replies; 8+ messages in thread
From: Ben Greear @ 2014-04-10 17:17 UTC (permalink / raw)
  To: linux-nfs

This could be related to some changes I made to nfs, but in case the
problem is obvious, here's the stack trace.

I instrumented the code to add the BUG_ON below, and it hits.  Something is
sending NULL or close to it into the posix_acl_equiv_mode method.

/*
  * Returns 0 if the acl can be exactly represented in the traditional
  * file mode permission bits, or else 1. Returns -E... on error.
  */
int
posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
{
	const struct posix_acl_entry *pa, *pe;
	umode_t mode = 0;
	int not_equiv = 0;

	BUG_ON((unsigned long)(acl) < 4000);


[root@ice-si-dmz ~]# uname -a
Linux ice-si-dmz 3.14.0+ #16 SMP PREEMPT Thu Apr 10 08:53:30 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux


kernel BUG at /mnt/sda/home/greearb/git/linux-3.14.dev.y/fs/posix_acl.c:249!
invalid opcode: 0000 [#1] PREEMPT SMP
Modules linked in: iptable_raw xt_CT ip6table_filter ip6_tables ebtable_nat ebtables 8021q mrp garp nf_nat_ipv4 nf_nat bridge stp llc fuse macvlan pktgen 
iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi nfsd lockd nfs_acl auth_rpcgss oid_registry sunrpc ipv6 kvm uinput ppdev e1000e parport_pc i5k_amb 
i5000_edac parport edac_core microcode iTCO_wdt gpio_ich i2c_i801 iTCO_vendor_support lpc_ich ioatdma ptp dca pcspkr pps_core shpchp floppy radeon ttm 
drm_kms_helper drm i2c_algo_bit i2c_core hwmon [last unloaded: iptable_nat]
CPU: 5 PID: 1945 Comm: nfsd Tainted: G         C O 3.14.0+ #16
Hardware name: Supermicro X7DBU/X7DBU, BIOS 2.1 06/23/2008
task: ffff880211f9a150 ti: ffff88021189c000 task.ti: ffff88021189c000
RIP: 0010:[<ffffffff811e4426>]  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
RSP: 0018:ffff88021189dcc8  EFLAGS: 00010293
RAX: ffffffff811e4ea7 RBX: 0000000000000000 RCX: 0000000000000004
RDX: 0000000000008000 RSI: ffff880223de3268 RDI: 0000000000000000
RBP: ffff88021189dcc8 R08: 0000000000000004 R09: 0000000000000000
R10: ffffffff811b65c3 R11: ffff880223de32f0 R12: ffff880223de3268
R13: 0000000000008000 R14: ffff880211c7e000 R15: 000000000000001c
FS:  0000000000000000(0000) GS:ffff88022fd40000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: ffffffffff600400 CR3: 0000000211b04000 CR4: 00000000000007e0
Stack:
  ffff88021189dcf8 ffffffff811e4ecd ffffffff811e4ea7 ffff880211fa0000
  ffff880211fa1000 ffff880223de3268 ffff88021189dd38 ffffffffa07f0b67
  ffff88021189dd38 ffff880211c7e000 ffff880211c7e000 ffffffffa0808940
Call Trace:
  [<ffffffff811e4ecd>] simple_set_acl+0x26/0x5f
  [<ffffffff811e4ea7>] ? posix_acl_fix_xattr_to_user+0x38/0x38
  [<ffffffffa07f0b67>] nfsd3_proc_setacl+0xef/0x18c [nfsd]
  [<ffffffffa07e4a8e>] nfsd_dispatch+0x99/0x153 [nfsd]
  [<ffffffffa0778aff>] svc_process_common+0x293/0x3e0 [sunrpc]
  [<ffffffffa07796bb>] svc_process+0xf2/0x10f [sunrpc]
  [<ffffffffa07e45f2>] nfsd+0xc8/0x121 [nfsd]
  [<ffffffffa07e452a>] ? nfsd_destroy+0x63/0x63 [nfsd]
  [<ffffffff810dd251>] kthread+0xc4/0xcc
  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
  [<ffffffff815dabcc>] ret_from_fork+0x7c/0xb0
  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
Code: 34 c5 18 00 00 00 48 63 f6 e8 26 12 f8 ff 48 85 c0 74 df c7 00 01 00 00 00 5d c3 31 c0 c3 55 48 81 ff 9f 0f 00 00 48 89 e5 77 02 <0f> 0b 8b 47 10 48 8d 4f 
14 31 d2 4c 8d 44 c7 14 31 c0 eb 66 66
RIP  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
  RSP <ffff88021189dcc8>
---[ end trace b5a8a6a2f0ff3fab ]---


Thanks,
Ben

-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-04-10 17:17 Crash in 3.14.0+ (plus hacks) Ben Greear
@ 2014-04-11 19:18 ` Ben Greear
  2014-04-25 10:48 ` J. Bruce Fields
  1 sibling, 0 replies; 8+ messages in thread
From: Ben Greear @ 2014-04-11 19:18 UTC (permalink / raw)
  To: linux-nfs

On 04/10/2014 10:17 AM, Ben Greear wrote:
> This could be related to some changes I made to nfs, but in case the
> problem is obvious, here's the stack trace.

Easily reproducible on Fedora 14 with stock kernel.  We do not see the
problem on Fedora 17.  Maybe F-14 is missing some user-space tool that
sets acls and kernel cannot deal with that properly?

We will be happy to test patches.....


BUG: unable to handle kernel NULL pointer dereference at 0000000000000010
IP: [<ffffffff811e415c>] posix_acl_equiv_mode+0x1/0x9c
PGD 0
Oops: 0000 [#1] PREEMPT SMP
Modules linked in: ip6table_filter ip6_tables ebtable_nat ebtables ipt_MASQUERADE iptable_nat 8021q mrp garp iptable_raw xt_CT nf_nat_ipv4 nf_nat bridge stp llc
fuse macvlan pktgen iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi nfsd lockd nfs_acl auth_rpcgss oid_registry sunrpc ipv6 kvm uinput i5k_amb i5000_edac
e1000e iTCO_wdt gpio_ich edac_core iTCO_vendor_support lpc_ich ppdev pcspkr ptp parport_pc parport shpchp i2c_i801 ioatdma dca microcode pps_core floppy radeon
ttm drm_kms_helper drm i2c_algo_bit i2c_core hwmon [last unloaded: iptable_nat]
CPU: 1 PID: 1942 Comm: nfsd Tainted: G         C   3.14.0 #1
Hardware name: Supermicro X7DBU/X7DBU, BIOS 2.1 06/23/2008
task: ffff8800be01a150 ti: ffff8800be118000 task.ti: ffff8800be118000
RIP: 0010:[<ffffffff811e415c>]  [<ffffffff811e415c>] posix_acl_equiv_mode+0x1/0x9c
RSP: 0018:ffff8800be119cc8  EFLAGS: 00010246
RAX: ffffffff81617040 RBX: 0000000000000000 RCX: 0000000000000004
RDX: 0000000000008000 RSI: ffff8802244cece8 RDI: 0000000000000000
RBP: ffff8800be119cf8 R08: 0000000000000004 R09: 0000000000000000
R10: ffffffff811b6567 R11: ffff8802244ced70 R12: ffff8802244cece8
R13: 0000000000008000 R14: ffff8800be6fa000 R15: 000000000000001c
FS:  0000000000000000(0000) GS:ffff88022fc40000(0000) knlGS:0000000000000000
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 0000000000000010 CR3: 00000000ca525000 CR4: 00000000000007e0
Stack:
 ffff8800be119cf8 ffffffff811e4e66 ffffffff81617040 ffff8800be5fc000
 ffff8800be5fd000 ffff8802244cece8 ffff8800be119d38 ffffffffa07a7b2f
 ffff8800be119d38 ffff8800be6fa000 ffff8800be6fa000 ffffffffa07bf790
Call Trace:
 [<ffffffff811e4e66>] ? simple_set_acl+0x26/0x5f
 [<ffffffffa07a7b2f>] nfsd3_proc_setacl+0xbf/0x154 [nfsd]
 [<ffffffffa079ba8e>] nfsd_dispatch+0x99/0x153 [nfsd]
 [<ffffffffa072faf7>] svc_process_common+0x293/0x3e0 [sunrpc]
 [<ffffffffa07306b3>] svc_process+0xf2/0x10f [sunrpc]
 [<ffffffffa079b5f2>] nfsd+0xc8/0x121 [nfsd]
 [<ffffffffa079b52a>] ? nfsd_destroy+0x63/0x63 [nfsd]
 [<ffffffff810dd251>] kthread+0xc4/0xcc
 [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
 [<ffffffff815da58c>] ret_from_fork+0x7c/0xb0
 [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
Code: 09 b8 08 00 00 00 eb 02 31 c0 48 83 c2 08 4c 39 c2 0f 82 67 ff ff ff 83 f8 01 19 c0 f7 d0 83 e0 ea eb 05 b8 ea ff ff ff 5d c3 55 <8b> 47 10 48 8d 4f 14 31
d2 48 89 e5 4c 8d 44 c7 14 31 c0 eb 66
RIP  [<ffffffff811e415c>] posix_acl_equiv_mode+0x1/0x9c
 RSP <ffff8800be119cc8>
CR2: 0000000000000010
---[ end trace b80122b904746713 ]---

> 
> I instrumented the code to add the BUG_ON below, and it hits.  Something is
> sending NULL or close to it into the posix_acl_equiv_mode method.
> 
> /*
>  * Returns 0 if the acl can be exactly represented in the traditional
>  * file mode permission bits, or else 1. Returns -E... on error.
>  */
> int
> posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
> {
>     const struct posix_acl_entry *pa, *pe;
>     umode_t mode = 0;
>     int not_equiv = 0;
> 
>     BUG_ON((unsigned long)(acl) < 4000);
> 
> 
> [root@ice-si-dmz ~]# uname -a
> Linux ice-si-dmz 3.14.0+ #16 SMP PREEMPT Thu Apr 10 08:53:30 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux
> 
> 
> kernel BUG at /mnt/sda/home/greearb/git/linux-3.14.dev.y/fs/posix_acl.c:249!
> invalid opcode: 0000 [#1] PREEMPT SMP
> Modules linked in: iptable_raw xt_CT ip6table_filter ip6_tables ebtable_nat ebtables 8021q mrp garp nf_nat_ipv4 nf_nat bridge stp llc fuse macvlan pktgen
> iscsi_tcp libiscsi_tcp libiscsi scsi_transport_iscsi nfsd lockd nfs_acl auth_rpcgss oid_registry sunrpc ipv6 kvm uinput ppdev e1000e parport_pc i5k_amb
> i5000_edac parport edac_core microcode iTCO_wdt gpio_ich i2c_i801 iTCO_vendor_support lpc_ich ioatdma ptp dca pcspkr pps_core shpchp floppy radeon ttm
> drm_kms_helper drm i2c_algo_bit i2c_core hwmon [last unloaded: iptable_nat]
> CPU: 5 PID: 1945 Comm: nfsd Tainted: G         C O 3.14.0+ #16
> Hardware name: Supermicro X7DBU/X7DBU, BIOS 2.1 06/23/2008
> task: ffff880211f9a150 ti: ffff88021189c000 task.ti: ffff88021189c000
> RIP: 0010:[<ffffffff811e4426>]  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
> RSP: 0018:ffff88021189dcc8  EFLAGS: 00010293
> RAX: ffffffff811e4ea7 RBX: 0000000000000000 RCX: 0000000000000004
> RDX: 0000000000008000 RSI: ffff880223de3268 RDI: 0000000000000000
> RBP: ffff88021189dcc8 R08: 0000000000000004 R09: 0000000000000000
> R10: ffffffff811b65c3 R11: ffff880223de32f0 R12: ffff880223de3268
> R13: 0000000000008000 R14: ffff880211c7e000 R15: 000000000000001c
> FS:  0000000000000000(0000) GS:ffff88022fd40000(0000) knlGS:0000000000000000
> CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> CR2: ffffffffff600400 CR3: 0000000211b04000 CR4: 00000000000007e0
> Stack:
>  ffff88021189dcf8 ffffffff811e4ecd ffffffff811e4ea7 ffff880211fa0000
>  ffff880211fa1000 ffff880223de3268 ffff88021189dd38 ffffffffa07f0b67
>  ffff88021189dd38 ffff880211c7e000 ffff880211c7e000 ffffffffa0808940
> Call Trace:
>  [<ffffffff811e4ecd>] simple_set_acl+0x26/0x5f
>  [<ffffffff811e4ea7>] ? posix_acl_fix_xattr_to_user+0x38/0x38
>  [<ffffffffa07f0b67>] nfsd3_proc_setacl+0xef/0x18c [nfsd]
>  [<ffffffffa07e4a8e>] nfsd_dispatch+0x99/0x153 [nfsd]
>  [<ffffffffa0778aff>] svc_process_common+0x293/0x3e0 [sunrpc]
>  [<ffffffffa07796bb>] svc_process+0xf2/0x10f [sunrpc]
>  [<ffffffffa07e45f2>] nfsd+0xc8/0x121 [nfsd]
>  [<ffffffffa07e452a>] ? nfsd_destroy+0x63/0x63 [nfsd]
>  [<ffffffff810dd251>] kthread+0xc4/0xcc
>  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
>  [<ffffffff815dabcc>] ret_from_fork+0x7c/0xb0
>  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
> Code: 34 c5 18 00 00 00 48 63 f6 e8 26 12 f8 ff 48 85 c0 74 df c7 00 01 00 00 00 5d c3 31 c0 c3 55 48 81 ff 9f 0f 00 00 48 89 e5 77 02 <0f> 0b 8b 47 10 48 8d 4f
> 14 31 d2 4c 8d 44 c7 14 31 c0 eb 66 66
> RIP  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
>  RSP <ffff88021189dcc8>
> ---[ end trace b5a8a6a2f0ff3fab ]---
> 
> 
> Thanks,
> Ben
> 


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-04-10 17:17 Crash in 3.14.0+ (plus hacks) Ben Greear
  2014-04-11 19:18 ` Ben Greear
@ 2014-04-25 10:48 ` J. Bruce Fields
  2014-04-25 11:04   ` Christoph Hellwig
  1 sibling, 1 reply; 8+ messages in thread
From: J. Bruce Fields @ 2014-04-25 10:48 UTC (permalink / raw)
  To: Ben Greear; +Cc: linux-nfs, Christoph Hellwig

On Thu, Apr 10, 2014 at 10:17:30AM -0700, Ben Greear wrote:
> This could be related to some changes I made to nfs, but in case the
> problem is obvious, here's the stack trace.

There's also a report here:

	https://bugzilla.kernel.org/show_bug.cgi?id=74721

While I'm travelling, I'm cc'ing Christoph in case this might be a
consequence of his recent ACL cleanup?

--b.

> 
> I instrumented the code to add the BUG_ON below, and it hits.  Something is
> sending NULL or close to it into the posix_acl_equiv_mode method.
> 
> /*
>  * Returns 0 if the acl can be exactly represented in the traditional
>  * file mode permission bits, or else 1. Returns -E... on error.
>  */
> int
> posix_acl_equiv_mode(const struct posix_acl *acl, umode_t *mode_p)
> {
> 	const struct posix_acl_entry *pa, *pe;
> 	umode_t mode = 0;
> 	int not_equiv = 0;
> 
> 	BUG_ON((unsigned long)(acl) < 4000);
> 
> 
> [root@ice-si-dmz ~]# uname -a
> Linux ice-si-dmz 3.14.0+ #16 SMP PREEMPT Thu Apr 10 08:53:30 PDT 2014 x86_64 x86_64 x86_64 GNU/Linux
> 
> 
> kernel BUG at /mnt/sda/home/greearb/git/linux-3.14.dev.y/fs/posix_acl.c:249!
> invalid opcode: 0000 [#1] PREEMPT SMP
> Modules linked in: iptable_raw xt_CT ip6table_filter ip6_tables
> ebtable_nat ebtables 8021q mrp garp nf_nat_ipv4 nf_nat bridge stp
> llc fuse macvlan pktgen iscsi_tcp libiscsi_tcp libiscsi
> scsi_transport_iscsi nfsd lockd nfs_acl auth_rpcgss oid_registry
> sunrpc ipv6 kvm uinput ppdev e1000e parport_pc i5k_amb i5000_edac
> parport edac_core microcode iTCO_wdt gpio_ich i2c_i801
> iTCO_vendor_support lpc_ich ioatdma ptp dca pcspkr pps_core shpchp
> floppy radeon ttm drm_kms_helper drm i2c_algo_bit i2c_core hwmon
> [last unloaded: iptable_nat]
> CPU: 5 PID: 1945 Comm: nfsd Tainted: G         C O 3.14.0+ #16
> Hardware name: Supermicro X7DBU/X7DBU, BIOS 2.1 06/23/2008
> task: ffff880211f9a150 ti: ffff88021189c000 task.ti: ffff88021189c000
> RIP: 0010:[<ffffffff811e4426>]  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
> RSP: 0018:ffff88021189dcc8  EFLAGS: 00010293
> RAX: ffffffff811e4ea7 RBX: 0000000000000000 RCX: 0000000000000004
> RDX: 0000000000008000 RSI: ffff880223de3268 RDI: 0000000000000000
> RBP: ffff88021189dcc8 R08: 0000000000000004 R09: 0000000000000000
> R10: ffffffff811b65c3 R11: ffff880223de32f0 R12: ffff880223de3268
> R13: 0000000000008000 R14: ffff880211c7e000 R15: 000000000000001c
> FS:  0000000000000000(0000) GS:ffff88022fd40000(0000) knlGS:0000000000000000
> CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b
> CR2: ffffffffff600400 CR3: 0000000211b04000 CR4: 00000000000007e0
> Stack:
>  ffff88021189dcf8 ffffffff811e4ecd ffffffff811e4ea7 ffff880211fa0000
>  ffff880211fa1000 ffff880223de3268 ffff88021189dd38 ffffffffa07f0b67
>  ffff88021189dd38 ffff880211c7e000 ffff880211c7e000 ffffffffa0808940
> Call Trace:
>  [<ffffffff811e4ecd>] simple_set_acl+0x26/0x5f
>  [<ffffffff811e4ea7>] ? posix_acl_fix_xattr_to_user+0x38/0x38
>  [<ffffffffa07f0b67>] nfsd3_proc_setacl+0xef/0x18c [nfsd]
>  [<ffffffffa07e4a8e>] nfsd_dispatch+0x99/0x153 [nfsd]
>  [<ffffffffa0778aff>] svc_process_common+0x293/0x3e0 [sunrpc]
>  [<ffffffffa07796bb>] svc_process+0xf2/0x10f [sunrpc]
>  [<ffffffffa07e45f2>] nfsd+0xc8/0x121 [nfsd]
>  [<ffffffffa07e452a>] ? nfsd_destroy+0x63/0x63 [nfsd]
>  [<ffffffff810dd251>] kthread+0xc4/0xcc
>  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
>  [<ffffffff815dabcc>] ret_from_fork+0x7c/0xb0
>  [<ffffffff810dd18d>] ? __kthread_parkme+0x5c/0x5c
> Code: 34 c5 18 00 00 00 48 63 f6 e8 26 12 f8 ff 48 85 c0 74 df c7 00
> 01 00 00 00 5d c3 31 c0 c3 55 48 81 ff 9f 0f 00 00 48 89 e5 77 02
> <0f> 0b 8b 47 10 48 8d 4f 14 31 d2 4c 8d 44 c7 14 31 c0 eb 66 66
> RIP  [<ffffffff811e4426>] posix_acl_equiv_mode+0xd/0xa7
>  RSP <ffff88021189dcc8>
> ---[ end trace b5a8a6a2f0ff3fab ]---
> 
> 
> Thanks,
> Ben
> 
> -- 
> Ben Greear <greearb@candelatech.com>
> Candela Technologies Inc  http://www.candelatech.com
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-04-25 10:48 ` J. Bruce Fields
@ 2014-04-25 11:04   ` Christoph Hellwig
  2014-04-25 13:30     ` Chuck Lever
  0 siblings, 1 reply; 8+ messages in thread
From: Christoph Hellwig @ 2014-04-25 11:04 UTC (permalink / raw)
  To: J. Bruce Fields; +Cc: Ben Greear, linux-nfs, Christoph Hellwig

On Fri, Apr 25, 2014 at 06:48:03AM -0400, J. Bruce Fields wrote:
> On Thu, Apr 10, 2014 at 10:17:30AM -0700, Ben Greear wrote:
> > This could be related to some changes I made to nfs, but in case the
> > problem is obvious, here's the stack trace.
> 
> There's also a report here:
> 
> 	https://bugzilla.kernel.org/show_bug.cgi?id=74721
> 
> While I'm travelling, I'm cc'ing Christoph in case this might be a
> consequence of his recent ACL cleanup?

Chuck already sent a patch in reply to this bug report:

	[PATCH] tmpfs: Fix simple_set_acl()


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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-04-25 11:04   ` Christoph Hellwig
@ 2014-04-25 13:30     ` Chuck Lever
  2014-05-07 13:43       ` Ben Greear
  0 siblings, 1 reply; 8+ messages in thread
From: Chuck Lever @ 2014-04-25 13:30 UTC (permalink / raw)
  To: Christoph Hellwig; +Cc: J. Bruce Fields, Ben Greear, Linux NFS Mailing List


On Apr 25, 2014, at 7:04 AM, Christoph Hellwig <hch@infradead.org> wrote:

> On Fri, Apr 25, 2014 at 06:48:03AM -0400, J. Bruce Fields wrote:
>> On Thu, Apr 10, 2014 at 10:17:30AM -0700, Ben Greear wrote:
>>> This could be related to some changes I made to nfs, but in case the
>>> problem is obvious, here's the stack trace.
>> 
>> There's also a report here:
>> 
>> 	https://bugzilla.kernel.org/show_bug.cgi?id=74721
>> 
>> While I'm travelling, I'm cc'ing Christoph in case this might be a
>> consequence of his recent ACL cleanup?
> 
> Chuck already sent a patch in reply to this bug report:
> 
> 	[PATCH] tmpfs: Fix simple_set_acl()

FWIW, Ben reports this patch fixes the crash for him.

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-04-25 13:30     ` Chuck Lever
@ 2014-05-07 13:43       ` Ben Greear
  2014-05-07 14:31         ` Chuck Lever
  0 siblings, 1 reply; 8+ messages in thread
From: Ben Greear @ 2014-05-07 13:43 UTC (permalink / raw)
  To: Chuck Lever; +Cc: Christoph Hellwig, J. Bruce Fields, Linux NFS Mailing List

On 04/25/2014 06:30 AM, Chuck Lever wrote:
> 
> On Apr 25, 2014, at 7:04 AM, Christoph Hellwig <hch@infradead.org> wrote:
> 
>> On Fri, Apr 25, 2014 at 06:48:03AM -0400, J. Bruce Fields wrote:
>>> On Thu, Apr 10, 2014 at 10:17:30AM -0700, Ben Greear wrote:
>>>> This could be related to some changes I made to nfs, but in case the
>>>> problem is obvious, here's the stack trace.
>>>
>>> There's also a report here:
>>>
>>> 	https://bugzilla.kernel.org/show_bug.cgi?id=74721
>>>
>>> While I'm travelling, I'm cc'ing Christoph in case this might be a
>>> consequence of his recent ACL cleanup?
>>
>> Chuck already sent a patch in reply to this bug report:
>>
>> 	[PATCH] tmpfs: Fix simple_set_acl()
> 
> FWIW, Ben reports this patch fixes the crash for him.

>From what I can tell, this patch has not yet made it into 3.14 stable.

Probably it should be submitted to stable??

Thanks,
Ben


-- 
Ben Greear <greearb@candelatech.com>
Candela Technologies Inc  http://www.candelatech.com


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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-05-07 13:43       ` Ben Greear
@ 2014-05-07 14:31         ` Chuck Lever
  2014-05-07 15:02           ` Christoph Hellwig
  0 siblings, 1 reply; 8+ messages in thread
From: Chuck Lever @ 2014-05-07 14:31 UTC (permalink / raw)
  To: Ben Greear; +Cc: Christoph Hellwig, J. Bruce Fields, Linux NFS Mailing List


On May 7, 2014, at 9:43 AM, Ben Greear <greearb@candelatech.com> wrote:

> On 04/25/2014 06:30 AM, Chuck Lever wrote:
>> 
>> On Apr 25, 2014, at 7:04 AM, Christoph Hellwig <hch@infradead.org> wrote:
>> 
>>> On Fri, Apr 25, 2014 at 06:48:03AM -0400, J. Bruce Fields wrote:
>>>> On Thu, Apr 10, 2014 at 10:17:30AM -0700, Ben Greear wrote:
>>>>> This could be related to some changes I made to nfs, but in case the
>>>>> problem is obvious, here's the stack trace.
>>>> 
>>>> There's also a report here:
>>>> 
>>>> 	https://bugzilla.kernel.org/show_bug.cgi?id=74721
>>>> 
>>>> While I'm travelling, I'm cc'ing Christoph in case this might be a
>>>> consequence of his recent ACL cleanup?
>>> 
>>> Chuck already sent a patch in reply to this bug report:
>>> 
>>> 	[PATCH] tmpfs: Fix simple_set_acl()
>> 
>> FWIW, Ben reports this patch fixes the crash for him.
> 
> From what I can tell, this patch has not yet made it into 3.14 stable.
> 
> Probably it should be submitted to stable??

Christoph has a broader fix for this issue, which affects more than
just tmpfs. Stay tuned.

--
Chuck Lever
chuck[dot]lever[at]oracle[dot]com




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

* Re: Crash in 3.14.0+ (plus hacks)
  2014-05-07 14:31         ` Chuck Lever
@ 2014-05-07 15:02           ` Christoph Hellwig
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Hellwig @ 2014-05-07 15:02 UTC (permalink / raw)
  To: Chuck Lever
  Cc: Ben Greear, Christoph Hellwig, J. Bruce Fields, Linux NFS Mailing List

On Wed, May 07, 2014 at 10:31:10AM -0400, Chuck Lever wrote:
> > Probably it should be submitted to stable??
> 
> Christoph has a broader fix for this issue, which affects more than
> just tmpfs. Stay tuned.

The fix has just made it into Linus' tree.  I added a Cc: stable
tag, so it should get picked up soon.


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

end of thread, other threads:[~2014-05-07 15:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-10 17:17 Crash in 3.14.0+ (plus hacks) Ben Greear
2014-04-11 19:18 ` Ben Greear
2014-04-25 10:48 ` J. Bruce Fields
2014-04-25 11:04   ` Christoph Hellwig
2014-04-25 13:30     ` Chuck Lever
2014-05-07 13:43       ` Ben Greear
2014-05-07 14:31         ` Chuck Lever
2014-05-07 15:02           ` Christoph Hellwig

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