home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #20 / NN_1992_20.iso / spool / comp / os / linux / 10324 < prev    next >
Encoding:
Text File  |  1992-09-09  |  1.6 KB  |  46 lines

  1. Newsgroups: comp.os.linux
  2. Path: sparky!uunet!spool.mu.edu!agate!boulder!ophelia!drew
  3. From: drew@ophelia.cs.colorado.edu (Drew Eckhardt)
  4. Subject: Re: 0.97pl4 breaks SCSI extended partition code
  5. Message-ID: <1992Sep10.011527.6848@colorado.edu>
  6. Sender: news@colorado.edu (The Daily Planet)
  7. Nntp-Posting-Host: ophelia.cs.colorado.edu
  8. Organization: University of Colorado at Boulder
  9. References: <3541@ra.nrl.navy.mil> <716098399snx@prism.demon.co.uk> <3555@ra.nrl.navy.mil>
  10. Date: Thu, 10 Sep 1992 01:15:27 GMT
  11. Lines: 33
  12.  
  13. In article <3555@ra.nrl.navy.mil> eric@tantalus.dell.com (Eric Youngdale) writes:
  14. >-Eric
  15. >
  16. >*** sd.c.~1~    Tue Jul 28 19:31:23 1992
  17. >--- sd.c    Wed Sep  9 17:18:37 1992
  18. >***************
  19. >*** 38,44 ****
  20. >                  
  21. >  int NR_SD=0;
  22. >  Scsi_Disk rscsi_disks[MAX_SD];
  23. >! static int sd_sizes[MAX_SD << 4];
  24. >  static int this_count;
  25. >  static int the_result;
  26. >  
  27. >--- 38,44 ----
  28. >                  
  29. >  int NR_SD=0;
  30. >  Scsi_Disk rscsi_disks[MAX_SD];
  31. >! static int sd_sizes[MAX_SD << 4] = {0, };
  32. >  static int this_count;
  33. >  static int the_result;
  34. >
  35.  
  36. Nailed by the @#$% boot strap loader.  In 'C', BSS is zero filled.  The 
  37. net effect is that all non-auto, non-regiester variables are initialized 
  38. to zero.  Of course, since the Linux bootstrap loader doesn't specifically
  39. initialize BSS to zero, these variables aren't initialized to 0 like 
  40. they should be, and it may fail.  
  41. -- 
  42. Microsoft is responsible for propogating the evils it calls DOS and Windows, 
  43. IBM for AIX (appropriately called Aches by those having to administer it), but 
  44. marketing's sins don't come close to those of legal departments.
  45. Boycott AT&T for their absurd anti-BSDI lawsuit.
  46.