mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* problems with alloc_disk in genhd.c
@ 2004-06-23 21:18 mikem
  2004-06-23 21:24 ` viro
  0 siblings, 1 reply; 4+ messages in thread
From: mikem @ 2004-06-23 21:18 UTC (permalink / raw)
  To: linux-kernel; +Cc: viro, bob.montgomery


We've encountered a problem using one of our internal test tools. It calls
our CCISS_GETLUNINFO ioctl for partition info. In the *alloc_disk(int minors)
function it only tests for the max_number_of_parts - 1.

        if (minors > 1) {
                int size = (minors - 1) * sizeof(struct hd_struct *);

When we allocate space we pass in

        for (n = 0; n < NWD; n++) {
                disk[n] = alloc_disk(1 << NWD_SHIFT);

In the  ioctl we are doing

        /* count partitions 1 to 15 with sizes > 0 */
        for(i=0; i <MAX_PART; i++) {


Depending on what lies beyond the array we have seen either Oops's or
a hard lock with a reboot about 30 seconds later. If we pass in MAX_PART - 1
we have no problems.
Is the entire disk no longer counted as partition zero?
Other drivers also pass in their max part value. Have any other problems
been reported?

Thanks,
mikem


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

end of thread, other threads:[~2004-06-23 22:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-06-23 21:18 problems with alloc_disk in genhd.c mikem
2004-06-23 21:24 ` viro
2004-06-23 21:55   ` mikem
2004-06-23 22:03     ` viro

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®