All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails
@ 2022-05-24 14:58 bugzilla-daemon
  2022-05-24 15:07 ` Greg KH
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: bugzilla-daemon @ 2022-05-24 14:58 UTC (permalink / raw)
  To: linux-usb

https://bugzilla.kernel.org/show_bug.cgi?id=216020

            Bug ID: 216020
           Summary: drivers/usb/ folder compilation with allyesconfig
                    fails
           Product: Drivers
           Version: 2.5
    Kernel Version: 5.18
          Hardware: All
                OS: Linux
              Tree: Mainline
            Status: NEW
          Severity: normal
          Priority: P1
         Component: USB
          Assignee: drivers_usb@kernel-bugs.kernel.org
          Reporter: kushagra765@outlook.com
        Regression: No

When compiling the drivers/usb/ folder with GCC version 12.1.0, the compilation
fails with the following errors:

    drivers/usb/storage/ene_ub6250.c: In function ‘ms_lib_process_bootblock’:
drivers/usb/storage/ene_ub6250.c:1050:44: error: array subscript ‘struct
ms_bootblock_idi[0]’ is partly outside array bounds of ‘unsigned char[512]’
[-Werror=array-bounds]
 1050 |                         if (le16_to_cpu(idi->wIDIgeneralConfiguration)
!= MS_IDI_GENERAL_CONF)
      |                                            ^~

    drivers/usb/storage/ene_ub6250.c: In function ‘ms_lib_process_bootblock’:
drivers/usb/storage/ene_ub6250.c:1053:70: error: array subscript ‘struct
ms_bootblock_idi[0]’ is partly outside array bounds of ‘unsigned char[512]’
[-Werror=array-bounds]
 1053 |                info->MS_Lib.BytesPerSector =
le16_to_cpu(idi->wIDIbytesPerSector);
      |                                                             ^~

After these errors, when make waits for unfinished jobs, the following errors
come:

   In function ‘xhci_mvebu_mbus_config’,
    inlined from ‘xhci_mvebu_mbus_init_quirk’ at
drivers/usb/host/xhci-mvebu.c:66:2:
drivers/usb/host/xhci-mvebu.c:37:28: error: array subscript 0 is outside array
bounds of ‘const struct mbus_dram_window[0]’ [-Werror=array-bounds]
   37 |                 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr
<< 8) |
      |                          ~~^~~~~~
drivers/usb/host/xhci-mvebu.c:37:59: error: array subscript 0 is outside array
bounds of ‘const struct mbus_dram_window[0]’ [-Werror=array-bounds]
   37 |                 writel(((cs->size - 1) & 0xffff0000) | (cs->mbus_attr
<< 8) |
      |                                                         ~~^~~~~~~~~~~
drivers/usb/host/xhci-mvebu.c:41:27: error: array subscript 0 is outside array
bounds of ‘const struct mbus_dram_window[0]’ [-Werror=array-bounds]
   41 |                 writel((cs->base & 0xffff0000), base +
USB3_WIN_BASE(win));
      |                         ~~^~~~~~
cc1: all warnings being treated as errors

These errors also come when compiling gregkh/usb.git (usb-next branch) with the
GCC version and the configuration mentioned above.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails
  2022-05-24 14:58 [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails bugzilla-daemon
@ 2022-05-24 15:07 ` Greg KH
  2022-05-24 15:07 ` [Bug 216020] " bugzilla-daemon
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Greg KH @ 2022-05-24 15:07 UTC (permalink / raw)
  To: bugzilla-daemon; +Cc: linux-usb

On Tue, May 24, 2022 at 02:58:45PM +0000, bugzilla-daemon@kernel.org wrote:
> https://bugzilla.kernel.org/show_bug.cgi?id=216020
> 
>             Bug ID: 216020
>            Summary: drivers/usb/ folder compilation with allyesconfig
>                     fails
>            Product: Drivers
>            Version: 2.5
>     Kernel Version: 5.18
>           Hardware: All
>                 OS: Linux
>               Tree: Mainline
>             Status: NEW
>           Severity: normal
>           Priority: P1
>          Component: USB
>           Assignee: drivers_usb@kernel-bugs.kernel.org
>           Reporter: kushagra765@outlook.com
>         Regression: No
> 
> When compiling the drivers/usb/ folder with GCC version 12.1.0, the compilation
> fails with the following errors:

There are numerous errors when building the kernel with gcc 12.1 right
now.  It is being worked on, please see the development efforts on the
linux-kernel mailing list if you wish to help out.

Also, patches for this are always gladly accepted, no need to file a
bugzilla report for this.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug 216020] drivers/usb/ folder compilation with allyesconfig fails
  2022-05-24 14:58 [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails bugzilla-daemon
  2022-05-24 15:07 ` Greg KH
@ 2022-05-24 15:07 ` bugzilla-daemon
  2022-05-24 15:16 ` bugzilla-daemon
  2022-05-24 18:48 ` bugzilla-daemon
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla-daemon @ 2022-05-24 15:07 UTC (permalink / raw)
  To: linux-usb

https://bugzilla.kernel.org/show_bug.cgi?id=216020

--- Comment #1 from Greg Kroah-Hartman (greg@kroah.com) ---
On Tue, May 24, 2022 at 02:58:45PM +0000, bugzilla-daemon@kernel.org wrote:
> https://bugzilla.kernel.org/show_bug.cgi?id=216020
> 
>             Bug ID: 216020
>            Summary: drivers/usb/ folder compilation with allyesconfig
>                     fails
>            Product: Drivers
>            Version: 2.5
>     Kernel Version: 5.18
>           Hardware: All
>                 OS: Linux
>               Tree: Mainline
>             Status: NEW
>           Severity: normal
>           Priority: P1
>          Component: USB
>           Assignee: drivers_usb@kernel-bugs.kernel.org
>           Reporter: kushagra765@outlook.com
>         Regression: No
> 
> When compiling the drivers/usb/ folder with GCC version 12.1.0, the
> compilation
> fails with the following errors:

There are numerous errors when building the kernel with gcc 12.1 right
now.  It is being worked on, please see the development efforts on the
linux-kernel mailing list if you wish to help out.

Also, patches for this are always gladly accepted, no need to file a
bugzilla report for this.

thanks,

greg k-h

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug 216020] drivers/usb/ folder compilation with allyesconfig fails
  2022-05-24 14:58 [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails bugzilla-daemon
  2022-05-24 15:07 ` Greg KH
  2022-05-24 15:07 ` [Bug 216020] " bugzilla-daemon
@ 2022-05-24 15:16 ` bugzilla-daemon
  2022-05-24 18:48 ` bugzilla-daemon
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla-daemon @ 2022-05-24 15:16 UTC (permalink / raw)
  To: linux-usb

https://bugzilla.kernel.org/show_bug.cgi?id=216020

--- Comment #2 from Kushagra Verma (kushagra765@outlook.com) ---
(In reply to Greg Kroah-Hartman from comment #1)
> On Tue, May 24, 2022 at 02:58:45PM +0000, bugzilla-daemon@kernel.org wrote:
> > https://bugzilla.kernel.org/show_bug.cgi?id=216020
> > 
> >             Bug ID: 216020
> >            Summary: drivers/usb/ folder compilation with allyesconfig
> >                     fails
> >            Product: Drivers
> >            Version: 2.5
> >     Kernel Version: 5.18
> >           Hardware: All
> >                 OS: Linux
> >               Tree: Mainline
> >             Status: NEW
> >           Severity: normal
> >           Priority: P1
> >          Component: USB
> >           Assignee: drivers_usb@kernel-bugs.kernel.org
> >           Reporter: kushagra765@outlook.com
> >         Regression: No
> > 
> > When compiling the drivers/usb/ folder with GCC version 12.1.0, the
> > compilation
> > fails with the following errors:
> 
> There are numerous errors when building the kernel with gcc 12.1 right
> now.  It is being worked on, please see the development efforts on the
> linux-kernel mailing list if you wish to help out.
> 
> Also, patches for this are always gladly accepted, no need to file a
> bugzilla report for this.

Ok.
> 
> thanks,
> 
> greg k-h

Thanks,

Kushagra

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Bug 216020] drivers/usb/ folder compilation with allyesconfig fails
  2022-05-24 14:58 [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails bugzilla-daemon
                   ` (2 preceding siblings ...)
  2022-05-24 15:16 ` bugzilla-daemon
@ 2022-05-24 18:48 ` bugzilla-daemon
  3 siblings, 0 replies; 5+ messages in thread
From: bugzilla-daemon @ 2022-05-24 18:48 UTC (permalink / raw)
  To: linux-usb

https://bugzilla.kernel.org/show_bug.cgi?id=216020

--- Comment #3 from Alan Stern (stern@rowland.harvard.edu) ---
The warnings about ene_ub6250.c are accurate.  The driver uses (EntryOffset %
512) to index a 512-byte buffer and dereferences a 16-bit value at that
location, without checking for proper alignment.  It then dereferences another
16-bit value located 10 bytes farther on, without checking for overflow.

Not having the specs for this type of device, I don't know how this is meant to
work.  Perhaps EntryOffset % 512 is always supposed to be 0.  But perhaps not,
so I don't want to make any hasty changes.

-- 
You may reply to this email to add a comment.

You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2022-05-24 18:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-24 14:58 [Bug 216020] New: drivers/usb/ folder compilation with allyesconfig fails bugzilla-daemon
2022-05-24 15:07 ` Greg KH
2022-05-24 15:07 ` [Bug 216020] " bugzilla-daemon
2022-05-24 15:16 ` bugzilla-daemon
2022-05-24 18:48 ` bugzilla-daemon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.