Re: [PATCH 1/4] pnp: pnpbios: Add explicit X86_32 dependency to PNPBIOS

2016-05-01 Thread William Breathitt Gray
On Sat, Apr 23, 2016 at 01:51:19AM +0200, Rafael J. Wysocki wrote: >On 4/11/2016 3:25 PM, William Breathitt Gray wrote: >> The PNPBIOS driver requires preprocessor defines (located in >> include/asm/segment.h) only declared if the architecture is set to >> X86_32. If the architecture is set to X86_

Re: [PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-05-01 Thread William Breathitt Gray
On Wed, Apr 13, 2016 at 08:18:26AM -0700, Greg KH wrote: >On Wed, Apr 13, 2016 at 10:48:42AM -0400, William Breathitt Gray wrote: >> On Wed, Apr 13, 2016 at 04:38:38PM +0200, Ingo Molnar wrote: >> >Ah, ok, so it's for enabling real hardware, not just a cleanup, right? You >> >might >> >want to pu

Re: [PATCH 0/4] Decouple X86_32 dependency from the ISA Kconfig option

2016-05-01 Thread Greg KH
On Sun, May 01, 2016 at 12:17:07PM -0400, William Breathitt Gray wrote: > On Wed, Apr 13, 2016 at 08:18:26AM -0700, Greg KH wrote: > >On Wed, Apr 13, 2016 at 10:48:42AM -0400, William Breathitt Gray wrote: > >> On Wed, Apr 13, 2016 at 04:38:38PM +0200, Ingo Molnar wrote: > >> >Ah, ok, so it's for e

[PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
The 'bios_segment' member of a struct ultrastor_config is passed to the sprintf function with a respective %05X format identifier. The 'bio_segment' member is a kernel pointer, but the %X format identifier expects an int data type. A cast to int is correctly used to satisfy the format identifier, b

[PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
The 'bios_segment' member of a struct ultrastor_config is passed to the sprintf function with a respective %05X format identifier. The 'bio_segment' member is a kernel pointer, but the %X format identifier expects an int data type. A cast to int is correctly used to satisfy the format identifier, b

Re: [PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread James Bottomley
On Sun, 2016-05-01 at 17:57 -0400, William Breathitt Gray wrote: > The 'bios_segment' member of a struct ultrastor_config is passed to the > sprintf function with a respective %05X format identifier. The > 'bio_segment' member is a kernel pointer, but the %X format identifier > expects an int data

Re: [PATCH RESEND] scsi: ultrastor: Use correct format identifier for kernel pointer

2016-05-01 Thread William Breathitt Gray
On Sun, May 01, 2016 at 04:08:25PM -0700, James Bottomley wrote: >On Sun, 2016-05-01 at 17:57 -0400, William Breathitt Gray wrote: >> The 'bios_segment' member of a struct ultrastor_config is passed to the >> sprintf function with a respective %05X format identifier. The >> 'bio_segment' member is