* [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask @ 2015-07-19 12:20 Sowmini Varadhan 2015-07-19 15:27 ` Guenter Roeck 0 siblings, 1 reply; 10+ messages in thread From: Sowmini Varadhan @ 2015-07-19 12:20 UTC (permalink / raw) To: linux-kernel; +Cc: akpm, sowmini.varadhan, linux, benh, davem Using a 64 bit constant generates "warning: integer constant is too large for 'long' type" on 32 bit platforms. Instead use ~0l to get the desired effect. Detected by Andrew Morton who has confirmed that this patch fixes the warning on i386/gcc-4.4.3, i386/gcc-4.4.0 and arm/gcc-4.4.4. Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> --- lib/iommu-common.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/iommu-common.c b/lib/iommu-common.c index df30632..fd1297d 100644 --- a/lib/iommu-common.c +++ b/lib/iommu-common.c @@ -119,7 +119,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev, unsigned long align_mask = 0; if (align_order > 0) - align_mask = 0xffffffffffffffffl >> (64 - align_order); + align_mask = ~0l >> (64 - align_order); /* Sanity check */ if (unlikely(npages == 0)) { -- 1.7.1 ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-19 12:20 [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask Sowmini Varadhan @ 2015-07-19 15:27 ` Guenter Roeck 2015-07-19 20:25 ` Rasmus Villemoes 2015-07-20 14:44 ` Sowmini Varadhan 0 siblings, 2 replies; 10+ messages in thread From: Guenter Roeck @ 2015-07-19 15:27 UTC (permalink / raw) To: Sowmini Varadhan; +Cc: linux-kernel, akpm, benh, davem On Sun, Jul 19, 2015 at 02:20:14PM +0200, Sowmini Varadhan wrote: > > Using a 64 bit constant generates "warning: integer constant is too > large for 'long' type" on 32 bit platforms. Instead use ~0l to get > the desired effect. > > Detected by Andrew Morton who has confirmed that this patch > fixes the warning on i386/gcc-4.4.3, i386/gcc-4.4.0 and arm/gcc-4.4.4. > > Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> > --- > lib/iommu-common.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/lib/iommu-common.c b/lib/iommu-common.c > index df30632..fd1297d 100644 > --- a/lib/iommu-common.c > +++ b/lib/iommu-common.c > @@ -119,7 +119,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev, > unsigned long align_mask = 0; > > if (align_order > 0) > - align_mask = 0xffffffffffffffffl >> (64 - align_order); > + align_mask = ~0l >> (64 - align_order); > Wonder if this just hides the real problem. Unless align_order is very large, the resulting mask on 32 bit systems may be 0. Is this really the idea ? Guenter ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-19 15:27 ` Guenter Roeck @ 2015-07-19 20:25 ` Rasmus Villemoes 2015-07-19 20:41 ` Sowmini Varadhan 2015-07-20 1:58 ` Guenter Roeck 2015-07-20 14:44 ` Sowmini Varadhan 1 sibling, 2 replies; 10+ messages in thread From: Rasmus Villemoes @ 2015-07-19 20:25 UTC (permalink / raw) To: Guenter Roeck; +Cc: Sowmini Varadhan, linux-kernel, akpm, benh, davem On Sun, Jul 19 2015, Guenter Roeck <linux@roeck-us.net> wrote: > On Sun, Jul 19, 2015 at 02:20:14PM +0200, Sowmini Varadhan wrote: >> >> Using a 64 bit constant generates "warning: integer constant is too >> large for 'long' type" on 32 bit platforms. Instead use ~0l to get >> the desired effect. >> >> Detected by Andrew Morton who has confirmed that this patch >> fixes the warning on i386/gcc-4.4.3, i386/gcc-4.4.0 and arm/gcc-4.4.4. >> >> Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> >> --- >> lib/iommu-common.c | 2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/lib/iommu-common.c b/lib/iommu-common.c >> index df30632..fd1297d 100644 >> --- a/lib/iommu-common.c >> +++ b/lib/iommu-common.c >> @@ -119,7 +119,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev, >> unsigned long align_mask = 0; >> >> if (align_order > 0) >> - align_mask = 0xffffffffffffffffl >> (64 - align_order); >> + align_mask = ~0l >> (64 - align_order); >> > Wonder if this just hides the real problem. Unless align_order > is very large, the resulting mask on 32 bit systems may be 0. > Is this really the idea ? Probably not, but that's not what would happen on x86: the shift only depends on the lower 5 or 6 bits - I don't know if other platforms also has that behaviour. So for align_order == 2 and x86_32 we'd effectively end up with a shift of 62 & 31 == 30 (though technically undefined behaviour), and the desired mask of 0x3. Wouldn't GENMASK(align_order-1, 0) work for all cases (assuming align_order has a sane value)? Rasmus ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-19 20:25 ` Rasmus Villemoes @ 2015-07-19 20:41 ` Sowmini Varadhan 2015-07-20 1:58 ` Guenter Roeck 1 sibling, 0 replies; 10+ messages in thread From: Sowmini Varadhan @ 2015-07-19 20:41 UTC (permalink / raw) To: Rasmus Villemoes; +Cc: Guenter Roeck, linux-kernel, akpm, benh, davem On (07/19/15 22:25), Rasmus Villemoes wrote: > > Wouldn't GENMASK(align_order-1, 0) work for all cases (assuming > align_order has a sane value)? Devices with limits on DMA masks are uncommon, so I'm personally not an expert at all the variations in this space, but I was thinking that this doing align_mask = 0xffffffffffffffffull >> (64 - align_order); would be the compact answer for both 32 and 64 bit cases here? --Sowmini ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-19 20:25 ` Rasmus Villemoes 2015-07-19 20:41 ` Sowmini Varadhan @ 2015-07-20 1:58 ` Guenter Roeck 2015-07-20 17:57 ` Rasmus Villemoes 1 sibling, 1 reply; 10+ messages in thread From: Guenter Roeck @ 2015-07-20 1:58 UTC (permalink / raw) To: Rasmus Villemoes; +Cc: Sowmini Varadhan, linux-kernel, akpm, benh, davem On 07/19/2015 01:25 PM, Rasmus Villemoes wrote: > On Sun, Jul 19 2015, Guenter Roeck <linux@roeck-us.net> wrote: > >> On Sun, Jul 19, 2015 at 02:20:14PM +0200, Sowmini Varadhan wrote: >>> >>> Using a 64 bit constant generates "warning: integer constant is too >>> large for 'long' type" on 32 bit platforms. Instead use ~0l to get >>> the desired effect. >>> >>> Detected by Andrew Morton who has confirmed that this patch >>> fixes the warning on i386/gcc-4.4.3, i386/gcc-4.4.0 and arm/gcc-4.4.4. >>> >>> Signed-off-by: Sowmini Varadhan <sowmini.varadhan@oracle.com> >>> --- >>> lib/iommu-common.c | 2 +- >>> 1 files changed, 1 insertions(+), 1 deletions(-) >>> >>> diff --git a/lib/iommu-common.c b/lib/iommu-common.c >>> index df30632..fd1297d 100644 >>> --- a/lib/iommu-common.c >>> +++ b/lib/iommu-common.c >>> @@ -119,7 +119,7 @@ unsigned long iommu_tbl_range_alloc(struct device *dev, >>> unsigned long align_mask = 0; >>> >>> if (align_order > 0) >>> - align_mask = 0xffffffffffffffffl >> (64 - align_order); >>> + align_mask = ~0l >> (64 - align_order); >>> >> Wonder if this just hides the real problem. Unless align_order >> is very large, the resulting mask on 32 bit systems may be 0. >> Is this really the idea ? > > Probably not, but that's not what would happen on x86: the shift > only depends on the lower 5 or 6 bits - I don't know if other platforms > also has that behaviour. So for align_order == 2 and x86_32 we'd > effectively end up with a shift of 62 & 31 == 30 (though technically > undefined behaviour), and the desired mask of 0x3. > #include <stdio.h> main(int argc, char **argv) { unsigned long am1, am2, am3; int align_order = 2; am1 = 0xffffffffffffffffl >> (64 - align_order); am2 = ~0l >> (64 - align_order); am3 = ~0ul >> (64 - align_order); printf("0x%lx 0x%lx 0x%lx\n", am1, am2, am3); } yields an output of 0x3 0xffffffffffffffff 0x3 So either case ~0l appears to be wrong; it should be ~0ul. I don't know if ~0ull makes a difference for some architectures. Guenter ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-20 1:58 ` Guenter Roeck @ 2015-07-20 17:57 ` Rasmus Villemoes 2015-07-20 19:25 ` Sowmini Varadhan 2015-07-20 23:28 ` Andrew Morton 0 siblings, 2 replies; 10+ messages in thread From: Rasmus Villemoes @ 2015-07-20 17:57 UTC (permalink / raw) To: Guenter Roeck; +Cc: Sowmini Varadhan, linux-kernel, akpm, benh, davem On Mon, Jul 20 2015, Guenter Roeck <linux@roeck-us.net> wrote: > So either case ~0l appears to be wrong; it should be ~0ul. Yes, right-shifting -1 of any type is probably always wrong, as it will always give -1 again. Probably one should add a smatch/sparse warning for that. > I don't know if ~0ull makes a difference for some architectures. I highly doubt it. The result is truncated to unsigned long anyway. Assuming align_order always has a value between 0 and BITS_PER_LONG, GENMASK should be exactly what is wanted. Rasmus ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-20 17:57 ` Rasmus Villemoes @ 2015-07-20 19:25 ` Sowmini Varadhan 2015-07-20 23:28 ` Andrew Morton 1 sibling, 0 replies; 10+ messages in thread From: Sowmini Varadhan @ 2015-07-20 19:25 UTC (permalink / raw) To: Rasmus Villemoes; +Cc: Guenter Roeck, linux-kernel, akpm, benh, davem On (07/20/15 19:57), Rasmus Villemoes wrote: > I highly doubt it. The result is truncated to unsigned long > anyway. Assuming align_order always has a value between 0 and > BITS_PER_LONG, GENMASK should be exactly what is wanted. While GENMASK may do the job, the code is already quite obscure, so I'm going to stick with the minimal delta to get this right, namely - align_mask = 0xffffffffffffffffl >> (64 - align_order); + align_mask = ~0ul >> (BITS_PER_LONG - align_order); --Sowmini ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-20 17:57 ` Rasmus Villemoes 2015-07-20 19:25 ` Sowmini Varadhan @ 2015-07-20 23:28 ` Andrew Morton 2015-07-21 0:26 ` Guenter Roeck 1 sibling, 1 reply; 10+ messages in thread From: Andrew Morton @ 2015-07-20 23:28 UTC (permalink / raw) To: Rasmus Villemoes Cc: Guenter Roeck, Sowmini Varadhan, linux-kernel, benh, davem On Mon, 20 Jul 2015 19:57:18 +0200 Rasmus Villemoes <linux@rasmusvillemoes.dk> wrote: > On Mon, Jul 20 2015, Guenter Roeck <linux@roeck-us.net> wrote: > > > So either case ~0l appears to be wrong; it should be ~0ul. > > Yes, right-shifting -1 of any type is probably always wrong, as it will > always give -1 again. Not for unsigned types. The kernel uses "-1UL" and "-1ULL" quite a lot - it's a convenient way of saying "all ones, regardless of size". Also, assigning plain old "-1" to an unsigned variable will make that variable all-ones regardless of size. In this case I expect we could do align_mask = -1UL >> (64 - align_order); but I don't know about that 64. Maybe it should be BITS_PER_LONG? ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-20 23:28 ` Andrew Morton @ 2015-07-21 0:26 ` Guenter Roeck 0 siblings, 0 replies; 10+ messages in thread From: Guenter Roeck @ 2015-07-21 0:26 UTC (permalink / raw) To: Andrew Morton, Rasmus Villemoes Cc: Sowmini Varadhan, linux-kernel, benh, davem On 07/20/2015 04:28 PM, Andrew Morton wrote: > On Mon, 20 Jul 2015 19:57:18 +0200 Rasmus Villemoes <linux@rasmusvillemoes.dk> wrote: > >> On Mon, Jul 20 2015, Guenter Roeck <linux@roeck-us.net> wrote: >> >>> So either case ~0l appears to be wrong; it should be ~0ul. >> >> Yes, right-shifting -1 of any type is probably always wrong, as it will >> always give -1 again. > > Not for unsigned types. > > The kernel uses "-1UL" and "-1ULL" quite a lot - it's a convenient way > of saying "all ones, regardless of size". Also, assigning plain old > "-1" to an unsigned variable will make that variable all-ones > regardless of size. > > In this case I expect we could do > > align_mask = -1UL >> (64 - align_order); > -1ul works, at least on x86 (32 and 64 bit). > but I don't know about that 64. Maybe it should be BITS_PER_LONG? > I think that is going to be in the next version of the patch. Guenter ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask 2015-07-19 15:27 ` Guenter Roeck 2015-07-19 20:25 ` Rasmus Villemoes @ 2015-07-20 14:44 ` Sowmini Varadhan 1 sibling, 0 replies; 10+ messages in thread From: Sowmini Varadhan @ 2015-07-20 14:44 UTC (permalink / raw) To: Guenter Roeck Cc: linux-kernel, akpm, benh, davem, jose.marchesi, sowmini.varadhan, dave.kleikamp On (07/19/15 08:27), Guenter Roeck wrote: > > - align_mask = 0xffffffffffffffffl >> (64 - align_order); > > + align_mask = ~0l >> (64 - align_order); > > > Wonder if this just hides the real problem. Unless align_order > is very large, the resulting mask on 32 bit systems may be 0. > Is this really the idea ? <subsequent example code deleted> > So either case ~0l appears to be wrong; it should be ~0ul. > I don't know if ~0ull makes a difference for some architectures. I agree about the unsigned part. However, regarding the arch specific twists.. I checked into this.. even though I have a test program on x86_64 that "does the right thing" for both of align_mask = ~0ul >> (64 - align_order); align_mask = ~0ul >> (BITS_PER_LONG - align_order); when I compiled with -m32 and without (I tried align_order == 1 and 31 for edge cases), I think there are some gcc/arch specific variations possible based on undefined behavior, so that the second variant is safer. I'll send out a patch with that version soon. --Sowmini ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2015-07-21 0:26 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-07-19 12:20 [PATCH] iommu-common: Do not use 64 bit constant 0xffffffffffffffffl for computing align_mask Sowmini Varadhan 2015-07-19 15:27 ` Guenter Roeck 2015-07-19 20:25 ` Rasmus Villemoes 2015-07-19 20:41 ` Sowmini Varadhan 2015-07-20 1:58 ` Guenter Roeck 2015-07-20 17:57 ` Rasmus Villemoes 2015-07-20 19:25 ` Sowmini Varadhan 2015-07-20 23:28 ` Andrew Morton 2015-07-21 0:26 ` Guenter Roeck 2015-07-20 14:44 ` Sowmini Varadhan
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).