Release 4.12 drivers/ide/ide-lib.c
  
  
  
#include <linux/types.h>
#include <linux/string.h>
#include <linux/kernel.h>
#include <linux/export.h>
#include <linux/interrupt.h>
#include <linux/ide.h>
#include <linux/bitops.h>
/**
 *      ide_toggle_bounce       -       handle bounce buffering
 *      @drive: drive to update
 *      @on: on/off boolean
 *
 *      Enable or disable bounce buffering for the device. Drives move
 *      between PIO and DMA and that changes the rules we need.
 */
void ide_toggle_bounce(ide_drive_t *drive, int on)
{
	u64 addr = BLK_BOUNCE_HIGH;	/* dma64_addr_t */
	if (!PCI_DMA_BUS_IS_PHYS) {
		addr = BLK_BOUNCE_ANY;
	} else if (on && drive->media == ide_disk) {
		struct device *dev = drive->hwif->dev;
		if (dev && dev->dma_mask)
			addr = *dev->dma_mask;
	}
	if (drive->queue)
		blk_queue_bounce_limit(drive->queue, addr);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Jens Axboe | 52 | 62.65% | 2 | 40.00% | 
| Bartlomiej Zolnierkiewicz | 17 | 20.48% | 1 | 20.00% | 
| James Bottomley | 12 | 14.46% | 1 | 20.00% | 
| Linus Torvalds | 2 | 2.41% | 1 | 20.00% | 
| Total | 83 | 100.00% | 5 | 100.00% | 
u64 ide_get_lba_addr(struct ide_cmd *cmd, int lba48)
{
	struct ide_taskfile *tf = &cmd->tf;
	u32 high, low;
	low  = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
	if (lba48) {
		tf = &cmd->hob;
		high = (tf->lbah << 16) | (tf->lbam << 8) | tf->lbal;
	} else
		high = tf->device & 0xf;
	return ((u64)high << 24) | low;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Bartlomiej Zolnierkiewicz | 70 | 66.04% | 1 | 50.00% | 
| Sergei Shtylyov | 36 | 33.96% | 1 | 50.00% | 
| Total | 106 | 100.00% | 2 | 100.00% | 
EXPORT_SYMBOL_GPL(ide_get_lba_addr);
static void ide_dump_sector(ide_drive_t *drive)
{
	struct ide_cmd cmd;
	struct ide_taskfile *tf = &cmd.tf;
	u8 lba48 = !!(drive->dev_flags & IDE_DFLAG_LBA48);
	memset(&cmd, 0, sizeof(cmd));
	if (lba48) {
		cmd.valid.in.tf  = IDE_VALID_LBA;
		cmd.valid.in.hob = IDE_VALID_LBA;
		cmd.tf_flags = IDE_TFLAG_LBA48;
	} else
		cmd.valid.in.tf  = IDE_VALID_LBA | IDE_VALID_DEVICE;
	ide_tf_readback(drive, &cmd);
	if (lba48 || (tf->device & ATA_LBA))
		printk(KERN_CONT ", LBAsect=%llu",
			(unsigned long long)ide_get_lba_addr(&cmd, lba48));
	else
		printk(KERN_CONT ", CHS=%d/%d/%d", (tf->lbah << 8) + tf->lbam,
			tf->device & 0xf, tf->lbal);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Bartlomiej Zolnierkiewicz | 126 | 77.30% | 4 | 50.00% | 
| Sergei Shtylyov | 32 | 19.63% | 3 | 37.50% | 
| Andrew Morton | 5 | 3.07% | 1 | 12.50% | 
| Total | 163 | 100.00% | 8 | 100.00% | 
static void ide_dump_ata_error(ide_drive_t *drive, u8 err)
{
	printk(KERN_CONT "{ ");
	if (err & ATA_ABORTED)
		printk(KERN_CONT "DriveStatusError ");
	if (err & ATA_ICRC)
		printk(KERN_CONT "%s",
			(err & ATA_ABORTED) ? "BadCRC " : "BadSector ");
	if (err & ATA_UNC)
		printk(KERN_CONT "UncorrectableError ");
	if (err & ATA_IDNF)
		printk(KERN_CONT "SectorIdNotFound ");
	if (err & ATA_TRK0NF)
		printk(KERN_CONT "TrackZeroNotFound ");
	if (err & ATA_AMNF)
		printk(KERN_CONT "AddrMarkNotFound ");
	printk(KERN_CONT "}");
	if ((err & (ATA_BBK | ATA_ABORTED)) == ATA_BBK ||
	    (err & (ATA_UNC | ATA_IDNF | ATA_AMNF))) {
		struct request *rq = drive->hwif->rq;
		ide_dump_sector(drive);
		if (rq)
			printk(KERN_CONT ", sector=%llu",
			       (unsigned long long)blk_rq_pos(rq));
	}
	printk(KERN_CONT "\n");
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Bartlomiej Zolnierkiewicz | 171 | 96.61% | 9 | 81.82% | 
| Denys Vlasenko | 3 | 1.69% | 1 | 9.09% | 
| Tejun Heo | 3 | 1.69% | 1 | 9.09% | 
| Total | 177 | 100.00% | 11 | 100.00% | 
static void ide_dump_atapi_error(ide_drive_t *drive, u8 err)
{
	printk(KERN_CONT "{ ");
	if (err & ATAPI_ILI)
		printk(KERN_CONT "IllegalLengthIndication ");
	if (err & ATAPI_EOM)
		printk(KERN_CONT "EndOfMedia ");
	if (err & ATA_ABORTED)
		printk(KERN_CONT "AbortedCommand ");
	if (err & ATA_MCR)
		printk(KERN_CONT "MediaChangeRequested ");
	if (err & ATAPI_LFS)
		printk(KERN_CONT "LastFailedSense=0x%02x ",
			(err & ATAPI_LFS) >> 4);
	printk(KERN_CONT "}\n");
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Bartlomiej Zolnierkiewicz | 93 | 100.00% | 6 | 100.00% | 
| Total | 93 | 100.00% | 6 | 100.00% | 
/**
 *      ide_dump_status         -       translate ATA/ATAPI error
 *      @drive: drive that status applies to
 *      @msg: text message to print
 *      @stat: status byte to decode
 *
 *      Error reporting, in human readable form (luxurious, but a memory hog).
 *      Combines the drive name, message and status byte to provide a
 *      user understandable explanation of the device error.
 */
u8 ide_dump_status(ide_drive_t *drive, const char *msg, u8 stat)
{
	u8 err = 0;
	printk(KERN_ERR "%s: %s: status=0x%02x { ", drive->name, msg, stat);
	if (stat & ATA_BUSY)
		printk(KERN_CONT "Busy ");
	else {
		if (stat & ATA_DRDY)
			printk(KERN_CONT "DriveReady ");
		if (stat & ATA_DF)
			printk(KERN_CONT "DeviceFault ");
		if (stat & ATA_DSC)
			printk(KERN_CONT "SeekComplete ");
		if (stat & ATA_DRQ)
			printk(KERN_CONT "DataRequest ");
		if (stat & ATA_CORR)
			printk(KERN_CONT "CorrectedError ");
		if (stat & ATA_SENSE)
			printk(KERN_CONT "Sense ");
		if (stat & ATA_ERR)
			printk(KERN_CONT "Error ");
	}
	printk(KERN_CONT "}\n");
	if ((stat & (ATA_BUSY | ATA_ERR)) == ATA_ERR) {
		err = ide_read_error(drive);
		printk(KERN_ERR "%s: %s: error=0x%02x ", drive->name, msg, err);
		if (drive->media == ide_disk)
			ide_dump_ata_error(drive, err);
		else
			ide_dump_atapi_error(drive, err);
	}
	printk(KERN_ERR "%s: possibly failed opcode: 0x%02x\n",
		drive->name, drive->hwif->cmd.tf.command);
	return err;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Andrew Morton | 128 | 57.14% | 1 | 7.69% | 
| Bartlomiej Zolnierkiewicz | 93 | 41.52% | 10 | 76.92% | 
| Hannes Reinecke | 2 | 0.89% | 1 | 7.69% | 
| Al Viro | 1 | 0.45% | 1 | 7.69% | 
| Total | 224 | 100.00% | 13 | 100.00% | 
EXPORT_SYMBOL(ide_dump_status);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Bartlomiej Zolnierkiewicz | 577 | 65.64% | 19 | 52.78% | 
| Andrew Morton | 137 | 15.59% | 2 | 5.56% | 
| Jens Axboe | 69 | 7.85% | 3 | 8.33% | 
| Sergei Shtylyov | 68 | 7.74% | 3 | 8.33% | 
| James Bottomley | 12 | 1.37% | 1 | 2.78% | 
| Tejun Heo | 3 | 0.34% | 1 | 2.78% | 
| Paul Gortmaker | 3 | 0.34% | 1 | 2.78% | 
| Denys Vlasenko | 3 | 0.34% | 1 | 2.78% | 
| Hannes Reinecke | 2 | 0.23% | 1 | 2.78% | 
| Linus Torvalds | 2 | 0.23% | 1 | 2.78% | 
| Al Viro | 1 | 0.11% | 1 | 2.78% | 
| Adrian Bunk | 1 | 0.11% | 1 | 2.78% | 
| Alan Cox | 1 | 0.11% | 1 | 2.78% | 
| Total | 879 | 100.00% | 36 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.