Bug 717 - ft.c attach fail on my Mountain tape drive
Summary: ft.c attach fail on my Mountain tape drive
Status: Closed FIXED
Alias: None
Product: Base System
Classification: Unclassified
Component: misc (show other bugs)
Version: 2.0-RELEASE
Hardware: Any Any
: Normal Affects Only Me
Assignee: freebsd-bugs (Nobody)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 1995-09-01 18:40 UTC by John Nistler
Modified: 1996-04-10 04:59 UTC (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description John Nistler 1995-09-01 18:40:01 UTC
	When the ft.c code does the attach it uses polling in the ftintr_waiti(in the if (ft->attach),
	in case FTCMD_SEEK) with a delay(100) which is too short.  I changed this to 1000.

Fix: 

/usr/src/sys/i386/isa> diff ft.c.orig  ft.c
	1480c1480,1481
	<                       DELAY(100);
	---
	>                   DELAY(1000);
	>                   /* DELAY(100); */
Comment 1 scrappy freebsd_committer freebsd_triage 1996-04-10 04:58:50 UTC
State Changed
From-To: open->closed

committer reports this as being cfixed