1. 06 11月, 2007 2 次提交
  2. 23 10月, 2007 1 次提交
  3. 20 10月, 2007 3 次提交
  4. 16 10月, 2007 1 次提交
  5. 04 7月, 2007 1 次提交
    • M
      ide: never called printk statement in ide-taskfile.c::wait_drive_not_busy · b42fa133
      Masatake YAMATO 提交于
      Look at wait_drive_not_busy in drivers/ide/ide-taskfile.c:
      
          static u8 wait_drive_not_busy(ide_drive_t *drive)
          {
                  ide_hwif_t *hwif = HWIF(drive);
                  int retries = 100;
                  u8 stat;
      
                  /*
                   * Last sector was transfered, wait until drive is ready.
                   * This can take up to 10 usec, but we will wait max 1 ms
                   * (drive_cmd_intr() waits that long).
                   */
                  while (((stat = hwif->INB(IDE_STATUS_REG)) & BUSY_STAT) && retries--)
                          udelay(10);
      
                  if (!retries)
                          printk(KERN_ERR "%s: drive still BUSY!\n", drive->name);
      
                  return stat;
          }
      
      `printk' is never called because `retries' never holds zero at the
      outside of `while' loop: when `retries' holds zero at the while's loop
      condition, `retries' will hold -1 at the if condition.
      Signed-off-by: NMasatake YAMATO <jet@gyve.org>
      Cc: Chuck Ebbert <cebbert@redhat.com>
      Cc: joe@perches.com
      Signed-off-by: NBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
      b42fa133
  6. 16 10月, 2006 1 次提交
  7. 01 10月, 2006 1 次提交
    • J
      [PATCH] Split struct request ->flags into two parts · 4aff5e23
      Jens Axboe 提交于
      Right now ->flags is a bit of a mess: some are request types, and
      others are just modifiers. Clean this up by splitting it into
      ->cmd_type and ->cmd_flags. This allows introduction of generic
      Linux block message types, useful for sending generic Linux commands
      to block devices.
      Signed-off-by: NJens Axboe <axboe@suse.de>
      4aff5e23
  8. 04 7月, 2006 1 次提交
  9. 01 7月, 2006 1 次提交
  10. 23 6月, 2006 1 次提交
  11. 01 4月, 2006 1 次提交
  12. 16 2月, 2006 1 次提交
  13. 15 1月, 2006 1 次提交
  14. 20 11月, 2005 2 次提交
  15. 10 11月, 2005 1 次提交
  16. 07 11月, 2005 2 次提交
  17. 18 9月, 2005 1 次提交
  18. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4