From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Knutsson Date: Fri, 16 Feb 2007 16:40:15 +0000 Subject: Re: [KJ] [PATCH] is_power_of_2 in ia64mm Message-Id: <45D5DE6F.6030604@student.ltu.se> List-Id: References: <1171627435.6127.0.camel@wriver-t81fb058.linuxcoe> <45D5C789.1090607@student.ltu.se> <45D5D47F.3000303@student.ltu.se> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Andreas Schwab Cc: Vignesh Babu BM , Kernel Janitors List , linux-mm@kvack.org, tony.luck@intel.com, linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org Andreas Schwab wrote: > Richard Knutsson writes: > >> Andreas Schwab wrote: >> >>> Richard Knutsson writes: >>> >>> >>>> Vignesh Babu BM wrote: >>>> >>>>> @@ -175,7 +176,7 @@ static int __init hugetlb_setup_sz(char *str) >>>>> tr_pages = 0x15557000UL; >>>>> size = memparse(str, &str); >>>>> - if (*str || (size & (size-1)) || !(tr_pages & size) || >>>>> + if (*str || !is_power_of_2(size) || !(tr_pages & size) || >>>>> size <= PAGE_SIZE || >>>>> size >= (1UL << PAGE_SHIFT << MAX_ORDER)) { >>>>> printk(KERN_WARNING "Invalid huge page size specified\n"); >>>>> >>>> As we talked about before; is this really correct? !is_power_of_2(0) = >>>> true while (0 & (0-1)) = 0. >>>> >>> size = 0 is also covered by the next two conditions, so the overall value >>> does not change. >>> >> Yes, but is it meant to state that 'size' is not a power of two? >> > > What else can it mean? > What about !one_or_less_bit()? It has not been implemented (yet?) but been discussed. It ended by concluding that is_power_of_2() should be fixed up first and then we can see about it. And as I stated before; !is_power_of_2(size) != (size & (size-1))! It may be a bug but then we have to be sure it is suppose to be the power of 2. Richard Knutsson _______________________________________________ Kernel-janitors mailing list Kernel-janitors@lists.osdl.org https://lists.osdl.org/mailman/listinfo/kernel-janitors From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Knutsson Date: Fri, 16 Feb 2007 16:40:15 +0000 Subject: Re: [KJ] [PATCH] is_power_of_2 in ia64mm Message-Id: <45D5DE6F.6030604@student.ltu.se> List-Id: References: <1171627435.6127.0.camel@wriver-t81fb058.linuxcoe> <45D5C789.1090607@student.ltu.se> <45D5D47F.3000303@student.ltu.se> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Andreas Schwab Cc: Vignesh Babu BM , Kernel Janitors List , linux-mm@kvack.org, tony.luck@intel.com, linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org Andreas Schwab wrote: > Richard Knutsson writes: > >> Andreas Schwab wrote: >> >>> Richard Knutsson writes: >>> >>> >>>> Vignesh Babu BM wrote: >>>> >>>>> @@ -175,7 +176,7 @@ static int __init hugetlb_setup_sz(char *str) >>>>> tr_pages = 0x15557000UL; >>>>> size = memparse(str, &str); >>>>> - if (*str || (size & (size-1)) || !(tr_pages & size) || >>>>> + if (*str || !is_power_of_2(size) || !(tr_pages & size) || >>>>> size <= PAGE_SIZE || >>>>> size >= (1UL << PAGE_SHIFT << MAX_ORDER)) { >>>>> printk(KERN_WARNING "Invalid huge page size specified\n"); >>>>> >>>> As we talked about before; is this really correct? !is_power_of_2(0) = >>>> true while (0 & (0-1)) = 0. >>>> >>> size = 0 is also covered by the next two conditions, so the overall value >>> does not change. >>> >> Yes, but is it meant to state that 'size' is not a power of two? >> > > What else can it mean? > What about !one_or_less_bit()? It has not been implemented (yet?) but been discussed. It ended by concluding that is_power_of_2() should be fixed up first and then we can see about it. And as I stated before; !is_power_of_2(size) != (size & (size-1))! It may be a bug but then we have to be sure it is suppose to be the power of 2. Richard Knutsson From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1945992AbXBPQkZ (ORCPT ); Fri, 16 Feb 2007 11:40:25 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1945998AbXBPQkZ (ORCPT ); Fri, 16 Feb 2007 11:40:25 -0500 Received: from gepetto.dc.ltu.se ([130.240.42.40]:53705 "EHLO gepetto.dc.ltu.se" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1945982AbXBPQkY (ORCPT ); Fri, 16 Feb 2007 11:40:24 -0500 Message-ID: <45D5DE6F.6030604@student.ltu.se> Date: Fri, 16 Feb 2007 17:40:15 +0100 From: Richard Knutsson User-Agent: Thunderbird 1.5.0.9 (X11/20070212) MIME-Version: 1.0 To: Andreas Schwab CC: Vignesh Babu BM , Kernel Janitors List , linux-mm@kvack.org, tony.luck@intel.com, linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [KJ] [PATCH] is_power_of_2 in ia64mm References: <1171627435.6127.0.camel@wriver-t81fb058.linuxcoe> <45D5C789.1090607@student.ltu.se> <45D5D47F.3000303@student.ltu.se> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Andreas Schwab wrote: > Richard Knutsson writes: > >> Andreas Schwab wrote: >> >>> Richard Knutsson writes: >>> >>> >>>> Vignesh Babu BM wrote: >>>> >>>>> @@ -175,7 +176,7 @@ static int __init hugetlb_setup_sz(char *str) >>>>> tr_pages = 0x15557000UL; >>>>> size = memparse(str, &str); >>>>> - if (*str || (size & (size-1)) || !(tr_pages & size) || >>>>> + if (*str || !is_power_of_2(size) || !(tr_pages & size) || >>>>> size <= PAGE_SIZE || >>>>> size >= (1UL << PAGE_SHIFT << MAX_ORDER)) { >>>>> printk(KERN_WARNING "Invalid huge page size specified\n"); >>>>> >>>> As we talked about before; is this really correct? !is_power_of_2(0) == >>>> true while (0 & (0-1)) == 0. >>>> >>> size == 0 is also covered by the next two conditions, so the overall value >>> does not change. >>> >> Yes, but is it meant to state that 'size' is not a power of two? >> > > What else can it mean? > What about !one_or_less_bit()? It has not been implemented (yet?) but been discussed. It ended by concluding that is_power_of_2() should be fixed up first and then we can see about it. And as I stated before; !is_power_of_2(size) != (size & (size-1))! It may be a bug but then we have to be sure it is suppose to be the power of 2. Richard Knutsson From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <45D5DE6F.6030604@student.ltu.se> Date: Fri, 16 Feb 2007 17:40:15 +0100 From: Richard Knutsson MIME-Version: 1.0 Subject: Re: [KJ] [PATCH] is_power_of_2 in ia64mm References: <1171627435.6127.0.camel@wriver-t81fb058.linuxcoe> <45D5C789.1090607@student.ltu.se> <45D5D47F.3000303@student.ltu.se> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org Return-Path: To: Andreas Schwab Cc: Vignesh Babu BM , Kernel Janitors List , linux-mm@kvack.org, tony.luck@intel.com, linux-ia64@vger.kernel.org, linux-kernel@vger.kernel.org List-ID: Andreas Schwab wrote: > Richard Knutsson writes: > >> Andreas Schwab wrote: >> >>> Richard Knutsson writes: >>> >>> >>>> Vignesh Babu BM wrote: >>>> >>>>> @@ -175,7 +176,7 @@ static int __init hugetlb_setup_sz(char *str) >>>>> tr_pages = 0x15557000UL; >>>>> size = memparse(str, &str); >>>>> - if (*str || (size & (size-1)) || !(tr_pages & size) || >>>>> + if (*str || !is_power_of_2(size) || !(tr_pages & size) || >>>>> size <= PAGE_SIZE || >>>>> size >= (1UL << PAGE_SHIFT << MAX_ORDER)) { >>>>> printk(KERN_WARNING "Invalid huge page size specified\n"); >>>>> >>>> As we talked about before; is this really correct? !is_power_of_2(0) == >>>> true while (0 & (0-1)) == 0. >>>> >>> size == 0 is also covered by the next two conditions, so the overall value >>> does not change. >>> >> Yes, but is it meant to state that 'size' is not a power of two? >> > > What else can it mean? > What about !one_or_less_bit()? It has not been implemented (yet?) but been discussed. It ended by concluding that is_power_of_2() should be fixed up first and then we can see about it. And as I stated before; !is_power_of_2(size) != (size & (size-1))! It may be a bug but then we have to be sure it is suppose to be the power of 2. Richard Knutsson -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org