On 04/10/17 06:38, Jan Beulich wrote:
Julien Grall 09/28/17 9:30 PM >>>
On 09/22/2017 10:15 AM, Jan Beulich wrote:
On 21.09.17 at 14:40, wrote:
Also take the opportunity to:
- move from 1 << * to 1UL << *.
- use unsigned when possible
- move from unsigned int -> unsigned
>>> Julien Grall 09/28/17 9:30 PM >>>
>On 09/22/2017 10:15 AM, Jan Beulich wrote:
> On 21.09.17 at 14:40, wrote:
>>> Also take the opportunity to:
>>> - move from 1 << * to 1UL << *.
>>> - use unsigned when possible
>>> - move from unsigned int -> unsigned long for some inducti
Hi Jan,
On 09/22/2017 10:15 AM, Jan Beulich wrote:
On 21.09.17 at 14:40, wrote:
Also take the opportunity to:
- move from 1 << * to 1UL << *.
- use unsigned when possible
- move from unsigned int -> unsigned long for some induction
variables
I don't understand this last p
>>> On 21.09.17 at 14:40, wrote:
> Also take the opportunity to:
> - move from 1 << * to 1UL << *.
> - use unsigned when possible
> - move from unsigned int -> unsigned long for some induction
> variables
I don't understand this last point, btw - the largest order page the
code ne
On 09/21/2017 01:40 PM, Julien Grall wrote:
> Also take the opportunity to:
> - move from 1 << * to 1UL << *.
> - use unsigned when possible
> - move from unsigned int -> unsigned long for some induction
> variables
>
> Signed-off-by: Julien Grall
> Acked-by: Andrew Cooper
Revie
On Thu, Sep 21, 2017 at 01:40:23PM +0100, Julien Grall wrote:
> Also take the opportunity to:
> - move from 1 << * to 1UL << *.
> - use unsigned when possible
> - move from unsigned int -> unsigned long for some induction
> variables
>
> Signed-off-by: Julien Grall
> Acked-by: And