1. 17 12月, 2010 1 次提交
  2. 02 12月, 2010 1 次提交
  3. 25 11月, 2010 1 次提交
    • C
      drivers/net/tile/: on-chip network drivers for the tile architecture · e5a06939
      Chris Metcalf 提交于
      This change adds the first network driver for the tile architecture,
      supporting the on-chip XGBE and GBE shims.
      
      The infrastructure is present for the TILE-Gx networking drivers (another
      three source files in the new directory) but for now the the actual
      tilegx sources are waiting on releasing hardware to initial customers.
      
      Note that arch/tile/include/hv/* are "upstream" headers from the
      Tilera hypervisor and will probably benefit less from LKML review.
      Signed-off-by: NChris Metcalf <cmetcalf@tilera.com>
      e5a06939
  4. 24 11月, 2010 1 次提交
  5. 22 11月, 2010 1 次提交
  6. 19 11月, 2010 2 次提交
  7. 17 11月, 2010 1 次提交
  8. 15 11月, 2010 1 次提交
  9. 12 11月, 2010 1 次提交
  10. 10 11月, 2010 6 次提交
  11. 09 11月, 2010 1 次提交
  12. 03 11月, 2010 1 次提交
  13. 01 11月, 2010 1 次提交
  14. 29 10月, 2010 2 次提交
  15. 28 10月, 2010 1 次提交
  16. 27 10月, 2010 7 次提交
  17. 26 10月, 2010 1 次提交
  18. 25 10月, 2010 3 次提交
  19. 23 10月, 2010 4 次提交
  20. 21 10月, 2010 3 次提交
    • J
      Move hdaps driver to platform/x86 · bd9fc3a7
      Jean Delvare 提交于
      The hdaps driver isn't a hardware monitoring driver, so it shouldn't
      live under driver/hwmon. drivers/platform/x86 seems much more
      appropriate, as the driver is only useful on x86 laptops.
      Signed-off-by: NJean Delvare <khali@linux-fr.org>
      Cc: Guenter Roeck <guenter.roeck@ericsson.com>
      Cc: Matthew Garrett <mjg@redhat.com>
      Cc: Frank Seidel <frank@f-seidel.de>
      Signed-off-by: NMatthew Garrett <mjg@redhat.com>
      bd9fc3a7
    • Y
      rbd: introduce rados block device (rbd), based on libceph · 602adf40
      Yehuda Sadeh 提交于
      The rados block device (rbd), based on osdblk, creates a block device
      that is backed by objects stored in the Ceph distributed object storage
      cluster.  Each device consists of a single metadata object and data
      striped over many data objects.
      
      The rbd driver supports read-only snapshots.
      Signed-off-by: NYehuda Sadeh <yehuda@hq.newdream.net>
      Signed-off-by: NSage Weil <sage@newdream.net>
      602adf40
    • Y
      ceph: factor out libceph from Ceph file system · 3d14c5d2
      Yehuda Sadeh 提交于
      This factors out protocol and low-level storage parts of ceph into a
      separate libceph module living in net/ceph and include/linux/ceph.  This
      is mostly a matter of moving files around.  However, a few key pieces
      of the interface change as well:
      
       - ceph_client becomes ceph_fs_client and ceph_client, where the latter
         captures the mon and osd clients, and the fs_client gets the mds client
         and file system specific pieces.
       - Mount option parsing and debugfs setup is correspondingly broken into
         two pieces.
       - The mon client gets a generic handler callback for otherwise unknown
         messages (mds map, in this case).
       - The basic supported/required feature bits can be expanded (and are by
         ceph_fs_client).
      
      No functional change, aside from some subtle error handling cases that got
      cleaned up in the refactoring process.
      Signed-off-by: NSage Weil <sage@newdream.net>
      3d14c5d2