1. 15 5月, 2006 2 次提交
  2. 12 4月, 2006 1 次提交
  3. 11 4月, 2006 1 次提交
  4. 04 4月, 2006 1 次提交
  5. 02 4月, 2006 8 次提交
  6. 31 3月, 2006 1 次提交
  7. 24 3月, 2006 4 次提交
  8. 22 3月, 2006 5 次提交
  9. 12 3月, 2006 1 次提交
  10. 28 2月, 2006 1 次提交
  11. 20 2月, 2006 1 次提交
  12. 13 2月, 2006 3 次提交
  13. 12 2月, 2006 1 次提交
    • T
      [PATCH] libata: convert assert(X)'s in libata core layer to WARN_ON(!X)'s · a4631474
      Tejun Heo 提交于
      In an effort to kill libata-specific assert() and use generic
      WARN_ON(), this patch converts all assert(X)'s in libata core layer to
      WARN_ON(!X)'s.  Most conversions are straight-forward logical negation
      exception for the followings.
      
      * In libata-core.c:ata_fill_sg(),
        assert(qc->n_elem > 0) is converted to WARN_ON(qc->n_elem == 0) because
        qc->n_elem is unsigned and unsigned <= 0 is weird.
      
      * In libata-scsi.c:ata_gen_ata_desc/fixed_sense(),
        assert(NULL != qc->ap->ops->tf_read) is converted to
        WARN_ON(qc->ap->ops->tf_read == NULL), as there are no other users of
        'constant cond var' style in libata.
      Signed-off-by: NTejun Heo <htejun@gmail.com>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      a4631474
  14. 10 2月, 2006 3 次提交
  15. 09 2月, 2006 2 次提交
  16. 30 1月, 2006 1 次提交
  17. 29 1月, 2006 1 次提交
    • R
      Various libata documentation updates. · c893a3ae
      Randy Dunlap 提交于
      This is a merger of libata docs + cleanups from
      Martin Waitz <tali@admingilde.org> and me.
      
      From: Randy Dunlap <rdunlap@xenotime.net>
      From: Martin Waitz <tali@admingilde.org>
      
      Fix libata kernel-doc comments to match code.
      Add some function parameters to kernel-doc.
      Fix some typos/spellos.
      Put comments in <= 80 columns.
      Make one DPRINTK string unique.
      Fix sparse cast warnings.
      Signed-off-by: NRandy Dunlap <rdunlap@xenotime.net>
      Signed-off-by: NJeff Garzik <jgarzik@pobox.com>
      c893a3ae
  18. 27 1月, 2006 3 次提交