| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Add FreeBSD Id
|
|
|
|
| |
Submitted by: Sheldon Hearn <sheldonh@uunet.co.za>
|
|
|
|
|
| |
Apparently some other panics still exist in this driver, but with
this fix, it was at least possible to run the Nokia card at SANE 2000.
|
| |
|
|
|
|
| |
Submitted by: bde
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
It may cause misterious chars appearse in the middle of the scrolled lines.
The bug trigger: enter
grep P_32 /usr/include/*.h
command and see misterious "db.\" filename.
|
| |
|
| |
|
|
|
|
| |
Reminded by: hoek
|
| |
|
|
|
|
|
| |
Submitted by: Doug Barton <DougB@gorean.org>
Reviewed by: bde
|
|
|
|
|
|
|
| |
sys/boot/i386/btx/btx/Makefile 1.8
sys/boot/i386/btx/btx/btx.s 1.16 and 1.17
sys/boot/i386/btx/btxldr/btxldr.s 1.10
sys/boot/i386/loader/Makefile 1.45
|
|
|
|
|
|
|
| |
Added two ata devices (Kazuya Kodama <kodama@rd.nacsis.ac.jp> in nomads)
Added CyQ've ELA-110E (mihira-san <sanpei@sanpei.org>)
The CyQ card doesn't have a PR number (yet).
|
|
|
|
|
| |
Submitted by: MIHIRA Yoshiro
PR: kern/17349
|
| |
|
|
|
|
|
|
| |
for this card.
Submitted by: Kazuya Kodama <kodama@rd.nacsis.ac.jp>
|
|
|
|
|
|
|
| |
scan of the active queue. This fix is not expected to have any
noticeable impact on performance.
Noticed by: Rik van Riel <riel@conectiva.com.br>
|
|
|
|
| |
the moment.
|
| |
|
|
|
|
| |
unsed ioctl locking
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Simple stuff
------------
Split _download up so that the MIB settings are in their own functions.
Made "tx completed but status is ..." a recoverable error
Cut down verbosity of "unloaded" messages
Moved ccs_free and com_runq from intr_ccs to ecf_done and runq_done
to avoid embarasing mistakes and waits.
Merged runq_add and runq_arr into one and called it runq_add
Made RAY_COM_DUMP a real debug called RAY_DCOM
Consistnet debugging around tsleeps.
Use bus_activate_resource for attr/cm mapping, and set the flags
correctly in the allocation routines (needs more hacks to
sys/pccard/pcic.c)
com_malloc is now seperated from the comq initialization. This was
done whilst trying to set automatic variables for the comqs.
Harder Stuff
------------
As part of the IFF_RUNNING fixes, remove the panic in runq if we are
not running.
Change, again, runq_add. This time we don't do any cleaning up
if there were errors. This is so that callers get the chance
to re-try (not that I ever see it being used).
In runq_add, only sleep when there is something to sleep on!
ioctl locking routines, stolen from awi.c but not used
Hardest Stuff
-------------
Dealing with serialing ioctls correctly means that we must QUEUE
changes to IFF_RUNNING and check it in the QUEUED commands, not
in the user commands. Whilst simple to state, it took a few
hours of head scratching to get it right. The realisation was that
I only have to guarantee that sub-commands from a single process
are serialised and "atomic", and that they check the status of the
interface flags when invoked and not when they are queued.
Another way of looking at it, is that the driver's state is stored
in the runq and the IFF_RUNNING flag. These must be changed together.
What this means practically, is that IFF_RUNNING is set after
we have started/joined/associated with a network. And it is
cleared by ray_stop via the runq so that unfinsished commands are
not distrupted.
I still have to fix up promisc, upp/repparams and mcast.
Oh yeah, stop is essentially a noop in that it only
changes IFF_RUNNING
|
|
|
|
| |
pointed out by: dfr
|
|
|
|
|
|
|
|
|
|
| |
- Get rid of a fiew uselessly `long' variables
and casts to `long'.
- Estimate the PCI clock for all chips, except
C1010 for now (we should do that for each PCI BUS)
- Refine a couple of C1010 errata work-arounds.
- For now, make sure AIP generation is disabled
for the C1010-66.
|
| |
|
| |
|
|
|
|
| |
this will not compile without COMPAT_OLDPCI.
|
|
|
|
|
|
| |
"options COMPAT_OLDPCI". This option already existed, but now also tidies
up the declarations in #include <pci/pci*.h>. It is amazing how much stuff
was using the old pre-FreeBSD 3.x names and going silently undetected.
|
|
|
|
| |
defines.
|
| |
|
|
|
|
| |
s/PCI_COMMAND_STATUS_REG/PCIR_COMMAND/
|
|
|
|
| |
s/PCI_MAP_REG_START/PCIR_MAPS/
|
|
|
|
| |
stuff).
|
| |
|
|
|
|
| |
use constant that used to be a variable in our (very) old pci code.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
dumps to create temporary page mappings. This replaces the use of CADDR1
which is fairly x86 specific.
Reviewed by: dillon
|
| |
|
| |
|
|
|
|
| |
Reviewed by: arch
|
|
|
|
| |
compatability name.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|