All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matt Domsch <Matt_Domsch@dell.com>
To: Christian Kujau <evil@g-house.de>
Cc: Linus Torvalds <torvalds@osdl.org>,
	linux-kernel <linux-kernel@vger.kernel.org>,
	Chuck Ebbert <76306.1226@compuserve.com>
Subject: Re: Oops in 2.6.10-rc1 (almost solved)
Date: Sun, 14 Nov 2004 15:55:21 -0600	[thread overview]
Message-ID: <20041114215521.GA9717@lists.us.dell.com> (raw)
In-Reply-To: <4197B9D9.9010806@g-house.de>

On Sun, Nov 14, 2004 at 09:02:33PM +0100, Christian Kujau wrote:
> > Not ready for Linus yet, and you'll need to re-apply the previous
> > edd.S patch which is now reverted in Linus's tree.  As your BIOS
> 
> i've applied the patch to a pristine 2.6.10-rc1, so the (currently
> reverted) EDD change is still there. tell me, if the patch had to be
> applied to sth. else.
> 
> but for now i have to say, that it still oopses:
> 
> http://www.nerdbynature.de/bits/prinz/2.6.10-rc1/dmesg-2.6.10-rc1_edd-2.txt

OK, the patch below (which Linus applied to his tree yesterday) should
fix the oopses.
 
> BIOS EDD facility v0.16 2004-Jun-25, 16 devices found

but the patch to edd.S doesn't resolve that EDD believes you've got 16
devices (I would expect it to report 2, as you have only 2 disks).

Thanks for the quick testing.  Back to the drawing board though for
this second part.

Thanks,
Matt

-- 
Matt Domsch
Sr. Software Engineer, Lead Engineer
Dell Linux Solutions linux.dell.com & www.dell.com/linux
Linux on Dell mailing lists @ http://lists.us.dell.com

===== drivers/firmware/edd.c 1.30 vs edited =====
--- 1.30/drivers/firmware/edd.c	2004-06-29 09:44:48 -05:00
+++ edited/drivers/firmware/edd.c	2004-11-13 07:56:00 -06:00
@@ -70,7 +70,7 @@
 static int edd_dev_is_type(struct edd_device *edev, const char *type);
 static struct pci_dev *edd_get_pci_dev(struct edd_device *edev);
 
-static struct edd_device *edd_devices[EDDMAXNR];
+static struct edd_device *edd_devices[EDD_MBR_SIG_MAX];
 
 #define EDD_DEVICE_ATTR(_name,_mode,_show,_test) \
 struct edd_attribute edd_attr_##_name = { 	\
@@ -728,9 +728,9 @@
 
 static inline int edd_num_devices(void)
 {
-	return min_t(unsigned char,
-		     max_t(unsigned char, edd.edd_info_nr, edd.mbr_signature_nr),
-		     max_t(unsigned char, EDD_MBR_SIG_MAX, EDDMAXNR));
+	return max_t(unsigned char,
+		     min_t(unsigned char, EDD_MBR_SIG_MAX, edd.mbr_signature_nr),
+		     min_t(unsigned char, EDDMAXNR, edd.edd_info_nr));
 }
 
 /**

  reply	other threads:[~2004-11-14 21:55 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-11-13  3:45 Oops in 2.6.10-rc1 (almost solved) Chuck Ebbert
2004-11-13 14:28 ` Matt Domsch
2004-11-13 18:55   ` Matt Domsch
2004-11-14  2:58   ` Matt Domsch
2004-11-14  4:43     ` Linus Torvalds
2004-11-14 11:45     ` Christian
2004-11-14 20:02     ` Christian Kujau
2004-11-14 21:55       ` Matt Domsch [this message]
2004-11-15 12:41         ` Oops in 2.6.10-rc1 (solved) Christian Kujau
  -- strict thread matches above, loose matches on Subject: below --
2004-10-28 13:12 Oops in 2.6.10-rc1 Christian
2004-11-07 16:57 ` Linus Torvalds
2004-11-07 18:31   ` Christian Kujau
2004-11-07 23:45     ` Christian Kujau
2004-11-08  1:16       ` Linus Torvalds
2004-11-08 13:01         ` Christian Kujau
2004-11-08 18:13           ` Linus Torvalds
2004-11-08 20:59             ` Christian Kujau
2004-11-08 23:49               ` Christian Kujau
2004-11-09  1:31                 ` Christian Kujau
2004-11-09  7:40                   ` Pekka Enberg
2004-11-09 12:33                     ` Christian Kujau
2004-11-09 17:26                       ` Oops in 2.6.10-rc1 (almost solved) Christian Kujau
2004-11-09 18:53                         ` Linus Torvalds
2004-11-09 23:30                           ` Christian Kujau
2004-11-09 23:40                             ` Matt Domsch
2004-11-10  0:21                               ` Christian Kujau
2004-11-10  1:01                                 ` Linus Torvalds
2004-11-11 22:43                               ` Matt Domsch
2004-11-11 22:53                                 ` Linus Torvalds
2004-11-11 22:55                                   ` Matt Domsch
2004-11-12  0:27                                 ` Christian Kujau
2004-11-12  0:49                                   ` Linus Torvalds
2004-11-12  1:27                                     ` Christian Kujau

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20041114215521.GA9717@lists.us.dell.com \
    --to=matt_domsch@dell.com \
    --cc=76306.1226@compuserve.com \
    --cc=evil@g-house.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@osdl.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.