Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1298087 > unrolled thread
| Started by | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| First post | 2015-12-25 08:00 +0100 |
| Last post | 2015-12-25 09:40 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: crypto: algif_skcipher - Require setkey before accept(2) Julia Lawall <julia.lawall@lip6.fr> - 2015-12-25 08:00 +0100
Re: crypto: algif_skcipher - Require setkey before accept(2) Herbert Xu <herbert@gondor.apana.org.au> - 2015-12-25 08:50 +0100
Re: crypto: algif_skcipher - Require setkey before accept(2) Julia Lawall <julia.lawall@lip6.fr> - 2015-12-25 09:40 +0100
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2015-12-25 08:00 +0100 |
| Subject | Re: crypto: algif_skcipher - Require setkey before accept(2) |
| Message-ID | <qJuw1-9w-1@gated-at.bofh.it> |
Lines 766, 767 don't look correct at all.
julia
On Thu, 24 Dec 2015, kbuild test robot wrote:
> In-Reply-To: <20151224093902.GA8235@gondor.apana.org.au>
>
> [if your patch is applied to the wrong git tree, please drop us a note to help improving the system]
> Hi Herbert,
>
> [auto build test WARNING on crypto/master]
> [also build test WARNING on next-20151223]
> [cannot apply to v4.4-rc6]
>
> url: https://github.com/0day-ci/linux/commits/Herbert-Xu/crypto-algif_skcipher-Require-setkey-before-accept-2/20151224-174142
> base: https://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git master
> :::::: branch date: 63 minutes ago
> :::::: commit date: 63 minutes ago
>
> >> crypto/algif_skcipher.c:767:18-21: ERROR: reference preceded by free on line 766
>
> git remote add linux-review https://github.com/0day-ci/linux
> git remote update linux-review
> git checkout 7f3e28b295bcfeb7fba928af15780f1bb3051430
> vim +767 crypto/algif_skcipher.c
>
> 7f3e28b2 Herbert Xu 2015-12-24 760 tfm = kzalloc(sizeof(*tfm), GFP_KERNEL);
> 7f3e28b2 Herbert Xu 2015-12-24 761 if (!tfm)
> 7f3e28b2 Herbert Xu 2015-12-24 762 return ERR_PTR(-ENOMEM);
> 7f3e28b2 Herbert Xu 2015-12-24 763
> 7f3e28b2 Herbert Xu 2015-12-24 764 tfm->skcipher = crypto_alloc_skcipher(name, type, mask);
> 7f3e28b2 Herbert Xu 2015-12-24 765 if (IS_ERR(tfm->skcipher)) {
> 7f3e28b2 Herbert Xu 2015-12-24 @766 kfree(tfm);
> 7f3e28b2 Herbert Xu 2015-12-24 @767 return ERR_CAST(tfm->skcipher);
> 7f3e28b2 Herbert Xu 2015-12-24 768 }
> 7f3e28b2 Herbert Xu 2015-12-24 769
> 7f3e28b2 Herbert Xu 2015-12-24 770 return tfm;
>
> ---
> 0-DAY kernel test infrastructure Open Source Technology Center
> https://lists.01.org/pipermail/kbuild-all Intel Corporation
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Herbert Xu <herbert@gondor.apana.org.au> |
|---|---|
| Date | 2015-12-25 08:50 +0100 |
| Message-ID | <qJviq-EO-1@gated-at.bofh.it> |
| In reply to | #1298087 |
On Fri, Dec 25, 2015 at 07:54:48AM +0100, Julia Lawall wrote: > Lines 766, 767 don't look correct at all. Thanks Julia. I have sent an updated patch in the original thread. I wonder why I haven't received the original kbuild test robot email though. Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Julia Lawall <julia.lawall@lip6.fr> |
|---|---|
| Date | 2015-12-25 09:40 +0100 |
| Message-ID | <qJw4N-1c1-3@gated-at.bofh.it> |
| In reply to | #1298096 |
On Fri, 25 Dec 2015, Herbert Xu wrote: > On Fri, Dec 25, 2015 at 07:54:48AM +0100, Julia Lawall wrote: > > Lines 766, 767 don't look correct at all. > > Thanks Julia. I have sent an updated patch in the original thread. > I wonder why I haven't received the original kbuild test robot > email though. I goes to me to check for false positives first. julia -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web