1. 26 7月, 2014 4 次提交
  2. 25 7月, 2014 1 次提交
  3. 18 7月, 2014 2 次提交
  4. 29 5月, 2014 3 次提交
  5. 27 2月, 2014 4 次提交
    • B
      i2o: Use pci_bus_alloc_resource(), not allocate_resource() directly · d2e074cc
      Bjorn Helgaas 提交于
      Convert i2o_res_alloc() to use pci_bus_alloc_resource() rather than
      pci_find_parent_resource() and allocate_resource().  We don't have a
      resource to start with, so pci_find_parent_resource() can't do anything
      useful: a bus may have several memory resources available, so there might
      be several possible parents.  This is more likely on root buses because
      host bridges may have any number of apertures.
      
      I'm pretty sure this didn't work in the first place because it passed
      size == min == max to allocate_resource().  The min and max parameters are
      constraints on the *addresses* of the resource, not on its size, so I think
      it was impossible for allocate_resource() to succeed.
      Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
      d2e074cc
    • B
      i2o: Refactor i2o_iop_systab_set() PCI space allocation · 60f061e1
      Bjorn Helgaas 提交于
      Refactor the PCI space allocation in i2o_iop_systab_set().  This might
      improve readability slightly, but mainly it is to make the next patch
      simpler.
      
      No functional change.
      Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
      60f061e1
    • B
      i2o: Fix I/O space alignment requirement · 5c513bd5
      Bjorn Helgaas 提交于
      When i2o_iop_systab_set() allocates I/O port space, it specifies 1Mb
      alignment required.  This seems unlikely, since most platforms have only
      64Kb of I/O space total.  I think 4Kb is a more reasonable choice, since
      that's the minimum alignment of a PCI-PCI bridge I/O window.
      
      My guess is that this is a copy/paste error from the memory allocation
      code, which specifies 1Mb alignment (which is the minimum alignment of a
      PCI-PCI bridge memory window).
      Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
      5c513bd5
    • B
      i2o: Fix I/O space allocation copy/paste error · 7ed37fc3
      Bjorn Helgaas 提交于
      When i2o_iop_systab_set() allocates I/O port space, it assigns the base of
      the new I/O port region to sb->current_mem_base, not sb->current_io_base.
      This looks like a copy/paste error, because we do use current_io_base, but
      there's no other place that sets it.
      Signed-off-by: NBjorn Helgaas <bhelgaas@google.com>
      7ed37fc3
  6. 11 2月, 2014 1 次提交
  7. 15 1月, 2014 1 次提交
  8. 24 11月, 2013 1 次提交
    • K
      block: Kill bio_segments()/bi_vcnt usage · 458b76ed
      Kent Overstreet 提交于
      When we start sharing biovecs, keeping bi_vcnt accurate for splits is
      going to be error prone - and unnecessary, if we refactor some code.
      
      So bio_segments() has to go - but most of the existing users just needed
      to know if the bio had multiple segments, which is easier - add a
      bio_multiple_segments() for them.
      
      (Two of the current uses of bio_segments() are going to go away in a
      couple patches, but the current implementation of bio_segments() is
      unsafe as soon as we start doing driver conversions for immutable
      biovecs - so implement a dumb version for bisectability, it'll go away
      in a couple patches)
      Signed-off-by: NKent Overstreet <kmo@daterainc.com>
      Cc: Jens Axboe <axboe@kernel.dk>
      Cc: Neil Brown <neilb@suse.de>
      Cc: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
      Cc: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
      Cc: "James E.J. Bottomley" <JBottomley@parallels.com>
      458b76ed
  9. 13 11月, 2013 1 次提交
  10. 17 10月, 2013 1 次提交
  11. 04 7月, 2013 1 次提交
  12. 07 5月, 2013 1 次提交
  13. 02 5月, 2013 1 次提交
  14. 01 5月, 2013 1 次提交
  15. 30 4月, 2013 1 次提交
  16. 10 4月, 2013 3 次提交
  17. 24 3月, 2013 1 次提交
    • K
      block: Remove some unnecessary bi_vcnt usage · 2f477877
      Kent Overstreet 提交于
      More prep work for immutable bvecs/effecient bio splitting - usage of
      bi_vcnt has to be auditing, so getting rid of all the unnecessary usage
      makes that easier.
      
      Plus, bio_segments() is really what this code wanted, as it respects the
      current value of bi_idx.
      Signed-off-by: NKent Overstreet <koverstreet@google.com>
      CC: Jens Axboe <axboe@kernel.dk>
      CC: Eric Moore <Eric.Moore@lsi.com>
      CC: "James E.J. Bottomley" <JBottomley@parallels.com>
      CC: linux-scsi@vger.kernel.org
      2f477877
  18. 04 1月, 2013 1 次提交
    • G
      Drivers: message: remove __dev* attributes. · 47b1ea75
      Greg Kroah-Hartman 提交于
      CONFIG_HOTPLUG is going away as an option.  As a result, the __dev*
      markings need to be removed.
      
      This change removes the use of __devinit, __devexit_p, __devinitdata,
      and __devexit from these drivers.
      
      Based on patches originally written by Bill Pemberton, but redone by me
      in order to handle some of the coding style issues better, by hand.
      
      Cc: Bill Pemberton <wfp5p@virginia.edu>
      Cc: Nagalakshmi Nandigama <Nagalakshmi.Nandigama@lsi.com>
      Cc: Sreekanth Reddy <Sreekanth.Reddy@lsi.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      47b1ea75
  19. 19 12月, 2012 1 次提交
  20. 29 11月, 2012 1 次提交
  21. 15 9月, 2012 1 次提交
  22. 31 7月, 2012 2 次提交
  23. 01 6月, 2012 1 次提交
  24. 22 5月, 2012 1 次提交
  25. 18 5月, 2012 1 次提交
    • P
      MCA: delete all remaining traces of microchannel bus support. · bb8187d3
      Paul Gortmaker 提交于
      Hardware with MCA bus is limited to 386 and 486 class machines
      that are now 20+ years old and typically with less than 32MB
      of memory.  A quick search on the internet, and you see that
      even the MCA hobbyist/enthusiast community has lost interest
      in the early 2000 era and never really even moved ahead from
      the 2.4 kernels to the 2.6 series.
      
      This deletes anything remaining related to CONFIG_MCA from core
      kernel code and from the x86 architecture.  There is no point in
      carrying this any further into the future.
      
      One complication to watch for is inadvertently scooping up
      stuff relating to machine check, since there is overlap in
      the TLA name space (e.g. arch/x86/boot/mca.c).
      
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: James Bottomley <JBottomley@Parallels.com>
      Cc: x86@kernel.org
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Acked-by: NH. Peter Anvin <hpa@zytor.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      bb8187d3
  26. 16 5月, 2012 1 次提交
    • P
      tokenring: delete all remaining driver support · ee446fd5
      Paul Gortmaker 提交于
      This represents the mass deletion of the of the tokenring support.
      
      It gets rid of:
        - the net/tr.c which the drivers depended on
        - the drivers/net component
        - the Kbuild infrastructure around it
        - any tokenring related CONFIG_ settings in any defconfigs
        - the tokenring headers in the include/linux dir
        - the firmware associated with the tokenring drivers.
        - any associated token ring documentation.
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      ee446fd5
  27. 29 3月, 2012 1 次提交
  28. 28 2月, 2012 1 次提交