1. 10 Oct, 2002 1 commit
    • Kai Germaschewski's avatar
      ISDN: race-free incoming call handling · 755c978b
      Kai Germaschewski authored
      Move the incoming call handling from isdn_net.c to isdn_net_lib.c.
      We use a spinlock protected list for finding a matching device on incoming
      calls, making sure that a concurrent net_device::close() cannot corrupt
      the list under us or destroy the isdn_net_dev before its ref count hits
      zero.
      
      Also, remove superfluous #ifdefs from isdn_concap.c
      755c978b
  2. 09 Oct, 2002 11 commits
    • Jens Axboe's avatar
      [PATCH] Scsi sense buffer thinko · 716041cc
      Jens Axboe authored
      Noticed by Peter Chubb.
      
      SCpnt->sense_buffer[0] has to _equal_ 0xf0 for the sense to be valid,
      not vice versa.
      716041cc
    • Andrew Morton's avatar
      [PATCH] Hardwire CONFIG_LBD to "on" for testing · d74cfca3
      Andrew Morton authored
      Make 64-bit sector_t compulsory.  Accelerated testing...
      d74cfca3
    • Andrew Morton's avatar
      [PATCH] Fix xxx_get_biosgeometry --- avoid useless 64-bit division. · 89956725
      Andrew Morton authored
      From Peter Chubb
      
      The bios geometry is almost useless, except for fdisk to try to write
      an MSDOS partition table that is vaguely compatible with one written by
      other operating systems.
      
      If the size of disc will overflow a ten-bit cylinder number, then all
      bets are off anyway.  So fake it by casting the true disc capacity to a
      smaller type (than u64), so that we avoid 64-bit division on 32-bit
      platforms.  If the disc is small enough that the number of cylinders is
      correct, then this has no effect; otherwise, the number-of-cylinders we
      report is bogus, but you can't use an MSDOS-format partition table on
      such a drive anyway --- use the EFI GPT or the LDM partitioning, which
      use 64-bit offsets internally.
      89956725
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - remove udivdi3, use sector_div() · a2b12f37
      Andrew Morton authored
      From Peter Chubb
      
      Get rid of need for GCC _udivdi3 and _umoddi3 helper functions
       - use sector_div more aggressively.
      a2b12f37
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - md fixes · d6b4ef83
      Andrew Morton authored
      From Peter Chubb
      
      (Yes I forgot something...  Without this patch, trying to use RAID
      without CONFIG_LBD would fail.)
      
      Fix md operation without CONFIG_LBD --- don't try to include __udivdi3
      etc.
      d6b4ef83
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - filesystems · 763fb9a3
      Andrew Morton authored
      From Peter Chubb
      
      Filesystem migration to possibly 64-bit sector_t:
       - bmap() now takes and returns a sector_t to allow filesystems
         (e.g., JFS, XFS) that are 64-bit clean to deal with large files
       - buffer handling now 64-bit clean
      
      Enable 64-bit sector_t on IA32 and PPC.
      
      kiobufs takes sector_t array, not array of long.
      Fix blkmtd.c to deal in such an array.
      
      Miscellaneous fixes for 64-bit sector_t.
       	 - missed printk formats
      	 - ide_floppy_do_request had incorrect signature
      	 - in blkmtd.c there was a pointer used to
      	   manipulate an array to be used by kiobuf --
       	   it was unsigned long, needed to be sector_t
      763fb9a3
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - driver changes · 6179fd18
      Andrew Morton authored
      From Peter Chubb
      
      Compaq Smart array sector_t cleanup: prepare for possible 64-bit sector_t
      
      Clean up loop device to allow huge backing files.
      
      MD transition to 64-bit sector_t.
       - Hold sizes and offsets as sector_t not int;
       - use 64-bit arithmetic if necessary to map block-in-raid to zone
         and block-in-zone
      6179fd18
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - printk changes and sector_t cleanup · be48ef9e
      Andrew Morton authored
      From Peter Chubb
      
      printk changes: A sector_t can be either 64 or 32 bits, so cast it to a
      printable type that is at least as large as 64-bits on all platforms
      (i.e., cast to unsigned long long and use a %llu format)
      
      Transition to 64-bit sector_t: fix isofs_get_blocks by converting the
      (possibly 64-bit) arg to a long.
      
      SCSI 64-bit sector_t cleanup: capacity now stored as sector_t; make
      sure that the READ_CAPACITY command doesn't sign-extend its returned
      value; avoid 64-bit division when printing size in MB.
      
      Still to do:
       - 16-byte SCSI commands
       - Individual scsi drivers.
      be48ef9e
    • Andrew Morton's avatar
      [PATCH] 64-bit sector_t - various driver changes · 9f2f568c
      Andrew Morton authored
      peter's code works for me, and the 40-odd people who download
      the -mm patches.  Anton has tested it on ppc64 and I presume that
      Peter has tested it on ia64.  I use gcc-2.91.66 and others use
      later compilers.  I expect that any remaining problems will
      mainly be caught by the compiler.  And compiler bugs can be
      detected by turning off the option in config and seeing if things
      get better.
      
      From Peter Chubb
      
       - do_request() function takes sector_t not unsigned long as the
         block number to operate on.
       - Various casts to long where the underlying device can never get
         big enough to warrant a 64-bit sector offset.
       - Cast sector_t to unsigned long long when printing.
      9f2f568c
    • Patrick Mochel's avatar
      7eb32c6d
    • Patrick Mochel's avatar
      Merge osdl.org:/home/mochel/src/kernel/devel/linux-2.5-virgin · d745be1e
      Patrick Mochel authored
      into osdl.org:/home/mochel/src/kernel/devel/linux-2.5-core
      d745be1e
  3. 08 Oct, 2002 28 commits