From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752565AbbBJQ65 (ORCPT ); Tue, 10 Feb 2015 11:58:57 -0500 Received: from mail-ie0-f175.google.com ([209.85.223.175]:38059 "EHLO mail-ie0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750726AbbBJQ64 (ORCPT ); Tue, 10 Feb 2015 11:58:56 -0500 MIME-Version: 1.0 In-Reply-To: References: <20150209.191601.1373941323785500419.davem@davemloft.net> <20150209.205209.1524645061817000265.davem@davemloft.net> Date: Tue, 10 Feb 2015 08:58:55 -0800 X-Google-Sender-Auth: jYfz9mpY0pn9WXtmXOcOHffvO_Y Message-ID: Subject: Re: [GIT] Networking From: Linus Torvalds To: David Miller Cc: Al Viro , Andrew Morton , Network Development , Linux Kernel Mailing List Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 10, 2015 at 8:33 AM, Linus Torvalds wrote: > > Will try your suggestion, Nope, that wasn't it. It still hangs in the same place (I forgot to get rid of the red hat graphical boot screen so I didn't see the oops, but ..) Looking more closely at the generated code, and the fact that the oops was an access at offset 0x18 from a NULL pointer, it would *look* like it's this instruction: call *24(%rax) # MEM[(struct ablkcipher_tfm *)_48 + 8B].decrypt in the asm. Very odd. That part doesn't seem to have changed at all (it's the crypto_ablkcipher_decrypt() part inside the af_alg_wait_for_completion call). Ignoring whitespace changes and doing a git show -w 1d10eb2f156f crypto/algif_skcipher.c does make it clear that apart from the "iter" changes, the only real difference seems to be to the usage of "used". But I can't judge the iter changes. And maybe something else changed elsewhere. Any other ideas? Al? Linus