lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 24 Aug 2016 11:00:04 -0400 (EDT)
From:   Paolo Bonzini <pbonzini@...hat.com>
To:     SF Markus Elfring <elfring@...rs.sourceforge.net>
Cc:     Julia Lawall <julia.lawall@...6.fr>, walter harms <wharms@....de>,
        kvm@...r.kernel.org, linux-s390@...r.kernel.org,
        Christian Bornträger <borntraeger@...ibm.com>,
        Cornelia Huck <cornelia.huck@...ibm.com>,
        David Hildenbrand <dahi@...ux.vnet.ibm.com>,
        Heiko Carstens <heiko.carstens@...ibm.com>,
        Martin Schwidefsky <schwidefsky@...ibm.com>,
        Radim Krčmář <rkrcmar@...hat.com>,
        LKML <linux-kernel@...r.kernel.org>,
        kernel-janitors@...r.kernel.org
Subject: Re: Replacing specific kmalloc() calls by kmalloc_array()?



----- Original Message -----
> From: "SF Markus Elfring" <elfring@...rs.sourceforge.net>
> To: "Paolo Bonzini" <pbonzini@...hat.com>
> Cc: "Julia Lawall" <julia.lawall@...6.fr>, "walter harms" <wharms@....de>, kvm@...r.kernel.org,
> linux-s390@...r.kernel.org, "Christian Bornträger" <borntraeger@...ibm.com>, "Cornelia Huck"
> <cornelia.huck@...ibm.com>, "David Hildenbrand" <dahi@...ux.vnet.ibm.com>, "Heiko Carstens"
> <heiko.carstens@...ibm.com>, "Martin Schwidefsky" <schwidefsky@...ibm.com>, "Radim Krčmář" <rkrcmar@...hat.com>,
> "LKML" <linux-kernel@...r.kernel.org>, kernel-janitors@...r.kernel.org
> Sent: Wednesday, August 24, 2016 2:10:13 PM
> Subject: Re: Replacing specific kmalloc() calls by kmalloc_array()?
> 
> > Or kmalloc_array, since zeroing is not necessary.  Might be an idea for
> > a new Coccinelle script, like
> > 
> > - kmalloc (N * sizeof T, GFP)
> > + kmalloc_array(N, sizeof T, GFP)
> 
> I have picked your idea up. The corresponding script for the semantic
> patch language became longer than your general suggestion
> (if additional source code control flow aspects are integrated).
> 
> Would it make sense to check any more function combinations
> in a similar way?

I don't know :) but I'm interested in seeing the semantic patch!

Paolo

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ