Up to [cvs.netbsd.org] / src / sys / dev / pci
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.52.8.1 / (download) - annotate - [select for diffs], Tue Apr 17 00:07:47 2012 UTC (5 weeks, 4 days ago) by yamt
Branch: yamt-pagecache
Changes since 1.52: +4 -7
lines
Diff to previous 1.52 (colored) next main 1.53 (colored)
sync with head
Revision 1.52.12.1 / (download) - annotate - [select for diffs], Sat Feb 18 07:34:39 2012 UTC (3 months ago) by mrg
Branch: jmcneill-usbmp
Changes since 1.52: +4 -7
lines
Diff to previous 1.52 (colored) next main 1.53 (colored)
merge to -current.
Revision 1.53 / (download) - annotate - [select for diffs], Mon Jan 30 19:41:20 2012 UTC (3 months, 3 weeks ago) by drochner
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
HEAD
Changes since 1.52: +4 -7
lines
Diff to previous 1.52 (colored)
Use pci_aprint_devinfo(9) instead of pci_devinfo+aprint_{normal,naive}
where it looks straightforward, and pci_aprint_devinfo_fancy in a few
others where drivers want to supply their own device names instead
of the pcidevs generated one. More complicated cases, where names
are composed at runtime, are left alone for now. It certainly makes
sense to simplify the drivers here rather than inventing a catch-all API.
This should serve as as example for new drivers, and also ensure
consistent output in the AB_QUIET ("boot -q") case. Also, it avoids
excessive stack usage where drivers attach child devices because the
buffer for the device name is not kept on the local stack anymore.
Revision 1.50.4.2 / (download) - annotate - [select for diffs], Sat Mar 5 20:53:41 2011 UTC (14 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.50.4.1: +3 -2
lines
Diff to previous 1.50.4.1 (colored) to branchpoint 1.50 (colored) next main 1.51 (colored)
sync with head
Revision 1.52 / (download) - annotate - [select for diffs], Mon Nov 15 05:57:07 2010 UTC (18 months, 1 week ago) by uebayasi
Branch: MAIN
CVS Tags: yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
jruoho-x86intr,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: yamt-pagecache,
jmcneill-usbmp
Changes since 1.51: +3 -2
lines
Diff to previous 1.51 (colored)
tsleep needs sys/proc.h.
Revision 1.39.4.5 / (download) - annotate - [select for diffs], Wed Aug 11 22:53:46 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.39.4.4: +8 -10
lines
Diff to previous 1.39.4.4 (colored) to branchpoint 1.39 (colored) next main 1.40 (colored)
sync with head.
Revision 1.50.4.1 / (download) - annotate - [select for diffs], Sun May 30 05:17:33 2010 UTC (23 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.50: +8 -10
lines
Diff to previous 1.50 (colored)
sync with head
Revision 1.50.2.1 / (download) - annotate - [select for diffs], Fri Apr 30 14:43:35 2010 UTC (2 years ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.50: +8 -10
lines
Diff to previous 1.50 (colored) next main 1.51 (colored)
Sync with HEAD.
Revision 1.51 / (download) - annotate - [select for diffs], Mon Apr 5 07:20:25 2010 UTC (2 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1
Changes since 1.50: +8 -10
lines
Diff to previous 1.50 (colored)
Push the bpf_ops usage back into bpf.h. Push the common ifp->if_bpf check into the inline functions as well the fourth argument for bpf_attach.
Revision 1.39.4.4 / (download) - annotate - [select for diffs], Thu Mar 11 15:03:46 2010 UTC (2 years, 2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.39.4.3: +9 -24
lines
Diff to previous 1.39.4.3 (colored) to branchpoint 1.39 (colored)
sync with head
Revision 1.50 / (download) - annotate - [select for diffs], Tue Jan 19 22:07:00 2010 UTC (2 years, 4 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-nfs-mp-base9,
uebayasi-xip-base
Branch point for: uebayasi-xip,
rmind-uvmplock
Changes since 1.49: +9 -24
lines
Diff to previous 1.49 (colored)
Redefine bpf linkage through an always present op vector, i.e. #if NBPFILTER is no longer required in the client. This change doesn't yet add support for loading bpf as a module, since drivers can register before bpf is attached. However, callers of bpf can now be modularized. Dynamically loadable bpf could probably be done fairly easily with coordination from the stub driver and the real driver by registering attachments in the stub before the real driver is loaded and doing a handoff. ... and I'm not going to ponder the depths of unload here. Tested with i386/MONOLITHIC, modified MONOLITHIC without bpf and rump.
Revision 1.39.4.3 / (download) - annotate - [select for diffs], Wed Sep 16 13:37:51 2009 UTC (2 years, 8 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.39.4.2: +5 -5
lines
Diff to previous 1.39.4.2 (colored) to branchpoint 1.39 (colored)
sync with head
Revision 1.49 / (download) - annotate - [select for diffs], Sat Sep 5 14:09:55 2009 UTC (2 years, 8 months ago) by tsutsui
Branch: MAIN
CVS Tags: yamt-nfs-mp-base8,
matt-premerge-20091211,
jym-xensuspend-nbase
Changes since 1.48: +5 -5
lines
Diff to previous 1.48 (colored)
Invert logic around nested pmf(9) registrations for readability.
Revision 1.39.4.2 / (download) - annotate - [select for diffs], Sat May 16 10:41:34 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.39.4.1: +9 -10
lines
Diff to previous 1.39.4.1 (colored) to branchpoint 1.39 (colored)
sync with head
Revision 1.45.2.1 / (download) - annotate - [select for diffs], Wed May 13 17:20:25 2009 UTC (3 years ago) by jym
Branch: jym-xensuspend
Changes since 1.45: +9 -10
lines
Diff to previous 1.45 (colored) next main 1.46 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.48 / (download) - annotate - [select for diffs], Tue May 12 08:23:00 2009 UTC (3 years ago) by cegger
Branch: MAIN
CVS Tags: yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
jymxensuspend-base,
jym-xensuspend-base
Changes since 1.47: +4 -4
lines
Diff to previous 1.47 (colored)
use device_private(). "looks good" ad@ XXX for the device_t/softc split, please check the driver that no cases have been missed.
Revision 1.47 / (download) - annotate - [select for diffs], Wed May 6 10:34:32 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.46: +7 -8
lines
Diff to previous 1.46 (colored)
struct device * -> device_t, no functional changes intended.
Revision 1.46 / (download) - annotate - [select for diffs], Wed May 6 09:25:15 2009 UTC (3 years ago) by cegger
Branch: MAIN
Changes since 1.45: +4 -4
lines
Diff to previous 1.45 (colored)
struct cfdata * -> cfdata_t, no functional changes intended.
Revision 1.39.4.1 / (download) - annotate - [select for diffs], Mon May 4 08:12:56 2009 UTC (3 years ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.39: +62 -17
lines
Diff to previous 1.39 (colored)
sync with head.
Revision 1.41.6.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:18:25 2009 UTC (3 years, 4 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.41: +47 -10
lines
Diff to previous 1.41 (colored) next main 1.42 (colored)
Sync with HEAD.
Revision 1.36.6.3 / (download) - annotate - [select for diffs], Sat Jan 17 13:28:59 2009 UTC (3 years, 4 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.36.6.2: +45 -8
lines
Diff to previous 1.36.6.2 (colored) to branchpoint 1.36 (colored) next main 1.37 (colored)
Sync with HEAD.
Revision 1.42.2.2 / (download) - annotate - [select for diffs], Wed Jan 14 17:57:39 2009 UTC (3 years, 4 months ago) by snj
Branch: netbsd-5
CVS Tags: netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b
Changes since 1.42.2.1: +3 -3
lines
Diff to previous 1.42.2.1 (colored) to branchpoint 1.42 (colored) next main 1.43 (colored)
Pull up following revision(s) (requested by jmcneill in ticket #250): sys/dev/pci/if_iwi.c: revision 1.78 sys/dev/pci/if_ipw.c: revision 1.45 Make the "EULA not accepted" message a bit more informative, now reads: EULA not accepted; please see the <driver>(4) man page.
Revision 1.45 / (download) - annotate - [select for diffs], Fri Jan 9 21:14:36 2009 UTC (3 years, 4 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
mjf-devfs2-base
Branch point for: jym-xensuspend
Changes since 1.44: +3 -3
lines
Diff to previous 1.44 (colored)
Make the "EULA not accepted" message a bit more informative, now reads: EULA not accepted; please see the <driver>(4) man page.
Revision 1.41.4.1 / (download) - annotate - [select for diffs], Sat Dec 13 01:14:35 2008 UTC (3 years, 5 months ago) by haad
Branch: haad-dm
Changes since 1.41: +47 -10
lines
Diff to previous 1.41 (colored) next main 1.42 (colored)
Update haad-dm branch to haad-dm-base2.
Revision 1.42.2.1 / (download) - annotate - [select for diffs], Sun Nov 9 04:00:06 2008 UTC (3 years, 6 months ago) by snj
Branch: netbsd-5
Changes since 1.42: +6 -9
lines
Diff to previous 1.42 (colored)
Pull up following revision(s) (requested by joerg in ticket #25): sys/dev/pci/if_ipw.c: revision 1.44 sys/dev/pci/if_ipwvar.h: revision 1.14 sys/dev/pci/if_iwi.c: revision 1.76 sys/dev/pci/if_iwn.c: revision 1.26 Match image name with upstream distfiles.
Revision 1.44 / (download) - annotate - [select for diffs], Fri Nov 7 14:58:27 2008 UTC (3 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Changes since 1.43: +6 -9
lines
Diff to previous 1.43 (colored)
Match image name with upstream distfiles.
Revision 1.43 / (download) - annotate - [select for diffs], Fri Nov 7 00:20:07 2008 UTC (3 years, 6 months ago) by dyoung
Branch: MAIN
Changes since 1.42: +4 -3
lines
Diff to previous 1.42 (colored)
*** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02:de:ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.
Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address. (Thanks matt@.)
Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior. Make network drivers share more code.
Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.
Return consistent, appropriate error codes from network drivers.
Improve readability. KNF.
*** Details ***
In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.
In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.
Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR. In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr. That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR. In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.
In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.
Pull device initialization out of switch statements under
SIOCINITIFADDR. For example, pull ..._init() out of any switch
statement that looks like this:
switch (...->sa_family) {
case ...:
..._init();
...
break;
...
default:
..._init();
...
break;
}
Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,
switch (x & (IFF_UP|IFF_RUNNING)) {
case 0:
...
break;
case IFF_RUNNING:
...
break;
case IFF_UP:
...
break;
case IFF_UP|IFF_RUNNING:
...
break;
}
unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).
In ipw(4), remove an if_set_sadl() call that is out of place.
In nfe(4), reuse the jumbo MTU logic in ether_ioctl().
Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure. Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.
Return ENOTTY instead of EINVAL for inappropriate ioctls. In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.
Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source. In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.
Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively. Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.
In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.
Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.
In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.
Let ifioctl_common() handle SIOCGIFADDR.
Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.
In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.
bzero -> memset. Delete unnecessary casts to void *. Use
sockaddr_in_init() and sockaddr_in6_init(). Compare pointers with
NULL instead of "testing truth". Replace some instances of (type
*)0 with NULL. Change some K&R prototypes to ANSI C, and join
lines.
Revision 1.42 / (download) - annotate - [select for diffs], Thu Oct 30 00:27:32 2008 UTC (3 years, 6 months ago) by joerg
Branch: MAIN
CVS Tags: netbsd-5-base
Branch point for: netbsd-5
Changes since 1.41: +41 -2
lines
Diff to previous 1.41 (colored)
Add glue to ship Intel firmware images. For ipw and iwi require user to accept the EULA via sysctl as discussed with core@.
Revision 1.31.8.1 / (download) - annotate - [select for diffs], Thu Sep 4 08:46:45 2008 UTC (3 years, 8 months ago) by skrll
Branch: wrstuden-fixsa
Changes since 1.31: +16 -6
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
Sync with netbsd-4.
Revision 1.39.6.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:31:11 2008 UTC (3 years, 11 months ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.39: +17 -9
lines
Diff to previous 1.39 (colored) next main 1.40 (colored)
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.31.2.1 / (download) - annotate - [select for diffs], Sun Jun 8 20:04:24 2008 UTC (3 years, 11 months ago) by bouyer
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base
Changes since 1.31: +16 -6
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
Pull up following revision(s) (requested by jmcneill in ticket #1156): sys/dev/pci/if_ipw.c: revision 1.40 PR#34477: Don't dereference ni_chan if it points to the special ``any channel'' token IEEE80211_CHAN_ANYC
Revision 1.39.2.1 / (download) - annotate - [select for diffs], Wed Jun 4 02:05:14 2008 UTC (3 years, 11 months ago) by yamt
Branch: yamt-pf42
Changes since 1.39: +17 -9
lines
Diff to previous 1.39 (colored) next main 1.40 (colored)
sync with head
Revision 1.36.6.2 / (download) - annotate - [select for diffs], Mon Jun 2 13:23:39 2008 UTC (3 years, 11 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.36.6.1: +69 -103
lines
Diff to previous 1.36.6.1 (colored) to branchpoint 1.36 (colored)
Sync with HEAD.
Revision 1.41 / (download) - annotate - [select for diffs], Tue May 27 21:41:01 2008 UTC (3 years, 11 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-pf42-base4,
yamt-pf42-base3,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
matt-mips64-base2,
haad-dm-base1
Branch point for: nick-hppapmap,
haad-dm
Changes since 1.40: +17 -19
lines
Diff to previous 1.40 (colored)
Initialize the channel info in the tx/rx radiotap headers in ipw_newstate(), instead of reinitializing every time a packet is sent or received. Drop the unused radiotap 'flags' field.
Revision 1.40 / (download) - annotate - [select for diffs], Sun May 25 23:17:33 2008 UTC (4 years ago) by jmcneill
Branch: MAIN
Changes since 1.39: +16 -6
lines
Diff to previous 1.39 (colored)
PR#34477: Don't dereference ni_chan if it points to the special ``any channel'' token IEEE80211_CHAN_ANYC
Revision 1.39 / (download) - annotate - [select for diffs], Thu Apr 10 19:13:37 2008 UTC (4 years, 1 month ago) by cegger
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base2,
yamt-pf42-base,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
hpcarm-cleanup-nbase
Branch point for: yamt-pf42,
yamt-nfs-mp,
wrstuden-revivesa
Changes since 1.38: +56 -98
lines
Diff to previous 1.38 (colored)
use aprint_*_dev and device_xname
Revision 1.36.6.1 / (download) - annotate - [select for diffs], Thu Apr 3 12:42:50 2008 UTC (4 years, 1 month ago) by mjf
Branch: mjf-devfs2
Changes since 1.36: +3 -17
lines
Diff to previous 1.36 (colored)
Sync with HEAD.
Revision 1.36.2.1 / (download) - annotate - [select for diffs], Mon Mar 24 07:15:47 2008 UTC (4 years, 2 months ago) by keiichi
Branch: keiichi-mipv6
Changes since 1.36: +3 -17
lines
Diff to previous 1.36 (colored) next main 1.37 (colored)
sync with head.
Revision 1.32.16.3 / (download) - annotate - [select for diffs], Sun Mar 23 02:04:47 2008 UTC (4 years, 2 months ago) by matt
Branch: matt-armv6
Changes since 1.32.16.2: +3 -17
lines
Diff to previous 1.32.16.2 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored)
sync with HEAD
Revision 1.12.2.6 / (download) - annotate - [select for diffs], Mon Mar 17 09:15:11 2008 UTC (4 years, 2 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12.2.5: +3 -17
lines
Diff to previous 1.12.2.5 (colored) next main 1.13 (colored)
sync with head.
Revision 1.38 / (download) - annotate - [select for diffs], Tue Mar 11 20:39:24 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
matt-armv6-nbase,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
ad-socklock-base1
Changes since 1.37: +3 -17
lines
Diff to previous 1.37 (colored)
pci_disable_retry() is now a no-op, so don't call it any more.
Revision 1.37 / (download) - annotate - [select for diffs], Fri Feb 29 06:13:39 2008 UTC (4 years, 2 months ago) by dyoung
Branch: MAIN
Changes since 1.36: +4 -4
lines
Diff to previous 1.36 (colored)
Use PMF_FN_ARGS, PMF_FN_PROTO.
Revision 1.12.2.5 / (download) - annotate - [select for diffs], Mon Jan 21 09:43:54 2008 UTC (4 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12.2.4: +14 -81
lines
Diff to previous 1.12.2.4 (colored)
sync with head
Revision 1.32.16.2 / (download) - annotate - [select for diffs], Wed Jan 9 01:53:45 2008 UTC (4 years, 4 months ago) by matt
Branch: matt-armv6
Changes since 1.32.16.1: +14 -81
lines
Diff to previous 1.32.16.1 (colored) to branchpoint 1.32 (colored)
sync with HEAD
Revision 1.35.2.1 / (download) - annotate - [select for diffs], Wed Jan 2 21:54:43 2008 UTC (4 years, 4 months ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.35: +3 -3
lines
Diff to previous 1.35 (colored) next main 1.36 (colored)
Sync with HEAD
Revision 1.34.4.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:46:51 2007 UTC (4 years, 5 months ago) by ad
Branch: vmlocking2
Changes since 1.34: +14 -81
lines
Diff to previous 1.34 (colored) next main 1.35 (colored)
Sync with head.
Revision 1.36 / (download) - annotate - [select for diffs], Thu Dec 20 21:08:19 2007 UTC (4 years, 5 months ago) by dyoung
Branch: MAIN
CVS Tags: vmlocking2-base3,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-base,
hpcarm-cleanup-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base
Branch point for: mjf-devfs2,
keiichi-mipv6
Changes since 1.35: +3 -3
lines
Diff to previous 1.35 (colored)
Constify struct ifnet->if_sadl and every use throughout the tree. Add if_set_sadl() that both sets the link-layer address length and replaces the current link-layer address with a new one, and use it throughout the tree.
Revision 1.34.6.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:32:06 2007 UTC (4 years, 5 months ago) by yamt
Branch: yamt-kmem
Changes since 1.34: +13 -80
lines
Diff to previous 1.34 (colored) next main 1.35 (colored)
sync with head.
Revision 1.35 / (download) - annotate - [select for diffs], Sun Dec 9 20:28:09 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: MAIN
CVS Tags: yamt-kmem-base3,
yamt-kmem-base2,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Changes since 1.34: +13 -80
lines
Diff to previous 1.34 (colored)
Merge jmcneill-pm branch.
Revision 1.32.14.5 / (download) - annotate - [select for diffs], Sat Dec 8 16:21:27 2007 UTC (4 years, 5 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.32.14.4: +4 -4
lines
Diff to previous 1.32.14.4 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored)
Rename pnp(9) -> pmf(9), as requested by many.
Revision 1.32.16.1 / (download) - annotate - [select for diffs], Tue Nov 6 23:28:59 2007 UTC (4 years, 6 months ago) by matt
Branch: matt-armv6
CVS Tags: matt-armv6-prevmlocking
Changes since 1.32: +6 -8
lines
Diff to previous 1.32 (colored)
sync with HEAD
Revision 1.32.14.4 / (download) - annotate - [select for diffs], Tue Nov 6 14:27:24 2007 UTC (4 years, 6 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.32.14.3: +9 -9
lines
Diff to previous 1.32.14.3 (colored) to branchpoint 1.32 (colored)
Refactor PNP API: - Make suspend/resume directly a device functionality. It consists of three layers (class logic, device logic, bus logic), all of them being optional. This replaces D0/D3 transitions. - device_is_active returns true if the device was not disabled and was not suspended (even partially), device_is_enabled returns true if the device was enabled. - Change pnp_global_transition into pnp_system_suspend and pnp_system_resume. Before running any suspend/resume handlers, check that all currently attached devices support power management and bail out otherwise. The latter is not done for the shutdown/panic case. - Make the former bus-specific generic network handlers a class handler. - Make PNP message like volume up/down/toogle PNP events. Each device can register what events they are interested in and whether the handler should be global or not. - Introduce device_active API for devices to mark themselve in use from either the system or the device. Use this to implement the idle handling for audio and input devices. This is intended to replace most ad-hoc watchdogs as well. - Fix somes situations in which audio resume would lose mixer settings. - Make USB host controllers better deal with suspend in the light of shared interrupts. - Flush filesystem cache on suspend. - Flush disk caches on suspend. Put ATA disks into standby on suspend as well. - Adopt drivers to use the new PNP API. - Fix a critical bug in the generic cardbus layer that made D0->D3 break. - Fix ral(4) to set if_stop. - Convert cbb(4) to the new PNP API. - Apply the PCI Express SCI fix on resume again.
Revision 1.12.2.4 / (download) - annotate - [select for diffs], Sat Oct 27 11:32:53 2007 UTC (4 years, 6 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12.2.3: +4 -4
lines
Diff to previous 1.12.2.3 (colored)
sync with head.
Revision 1.32.14.3 / (download) - annotate - [select for diffs], Fri Oct 26 15:46:04 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.32.14.2: +4 -4
lines
Diff to previous 1.32.14.2 (colored) to branchpoint 1.32 (colored)
Sync with HEAD. Follow the merge of pmap.c on i386 and amd64 and move pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup code to restore CR4 before jumping back into kernel space as the large page option might cover that.
Revision 1.33.4.1 / (download) - annotate - [select for diffs], Thu Oct 25 22:39:00 2007 UTC (4 years, 7 months ago) by bouyer
Branch: bouyer-xenamd64
Changes since 1.33: +4 -4
lines
Diff to previous 1.33 (colored) next main 1.34 (colored)
Sync with HEAD.
Revision 1.32.2.2 / (download) - annotate - [select for diffs], Tue Oct 23 20:08:57 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.32.2.1: +4 -4
lines
Diff to previous 1.32.2.1 (colored) to branchpoint 1.32 (colored) next main 1.33 (colored)
Sync with head.
Revision 1.34 / (download) - annotate - [select for diffs], Fri Oct 19 12:00:45 2007 UTC (4 years, 7 months ago) by ad
Branch: MAIN
CVS Tags: yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
mjf-devfs,
jmcneill-pm-base,
jmcneill-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: yamt-kmem,
vmlocking2
Changes since 1.33: +4 -4
lines
Diff to previous 1.33 (colored)
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.32.2.1 / (download) - annotate - [select for diffs], Tue Oct 9 13:41:44 2007 UTC (4 years, 7 months ago) by ad
Branch: vmlocking
Changes since 1.32: +4 -6
lines
Diff to previous 1.32 (colored)
Sync with head.
Revision 1.32.14.2 / (download) - annotate - [select for diffs], Fri Oct 5 00:44:08 2007 UTC (4 years, 7 months ago) by joerg
Branch: jmcneill-pm
Changes since 1.32.14.1: +13 -80
lines
Diff to previous 1.32.14.1 (colored) to branchpoint 1.32 (colored)
Convert ipw(4) to PNP power management and use pci_disable_retry.
Revision 1.32.14.1 / (download) - annotate - [select for diffs], Mon Sep 3 16:48:16 2007 UTC (4 years, 8 months ago) by jmcneill
Branch: jmcneill-pm
Changes since 1.32: +4 -6
lines
Diff to previous 1.32 (colored)
Sync with HEAD.
Revision 1.12.2.3 / (download) - annotate - [select for diffs], Mon Sep 3 14:36:56 2007 UTC (4 years, 8 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12.2.2: +16 -18
lines
Diff to previous 1.12.2.2 (colored)
sync with head.
Revision 1.32.10.1 / (download) - annotate - [select for diffs], Mon Sep 3 10:21:00 2007 UTC (4 years, 8 months ago) by skrll
Branch: nick-csl-alignment
Changes since 1.32: +4 -6
lines
Diff to previous 1.32 (colored) next main 1.33 (colored)
Sync with HEAD.
Revision 1.33 / (download) - annotate - [select for diffs], Sat Sep 1 07:32:29 2007 UTC (4 years, 8 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
vmlocking-base,
nick-csl-alignment-base5
Branch point for: bouyer-xenamd64
Changes since 1.32: +4 -6
lines
Diff to previous 1.32 (colored)
Change a bazillion occurrences of code resembling this,
error = (cmd == SIOCADDMULTI) ?
ether_addmulti(ifr, &sc->sc_ec) :
ether_delmulti(ifr, &sc->sc_ec);
if (error == ENETRESET) {
to this,
if ((error = ether_ioctl(ifp, cmd, data)) == ENETRESET) {
which does the same thing.
(A bazillion is a very large number. This seems to make the i386
ALL kernel smaller by 3kB to 4kB.)
Use ifreq_getaddr() twice in es(4).
Whitespace nits.
Revision 1.31.4.1 / (download) - annotate - [select for diffs], Mon Mar 12 05:55:18 2007 UTC (5 years, 2 months ago) by rmind
Branch: yamt-idlelwp
Changes since 1.31: +14 -14
lines
Diff to previous 1.31 (colored) next main 1.32 (colored)
Sync with HEAD.
Revision 1.32 / (download) - annotate - [select for diffs], Sun Mar 4 06:02:20 2007 UTC (5 years, 2 months ago) by christos
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
nick-csl-alignment-base,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup
Branch point for: vmlocking,
nick-csl-alignment,
matt-armv6,
jmcneill-pm
Changes since 1.31: +14 -14
lines
Diff to previous 1.31 (colored)
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
Revision 1.12.2.2 / (download) - annotate - [select for diffs], Sat Dec 30 20:48:44 2006 UTC (5 years, 4 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12.2.1: +10 -8
lines
Diff to previous 1.12.2.1 (colored)
sync with head.
Revision 1.27.6.2 / (download) - annotate - [select for diffs], Sun Dec 10 07:17:43 2006 UTC (5 years, 5 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.27.6.1: +7 -7
lines
Diff to previous 1.27.6.1 (colored) to branchpoint 1.27 (colored) next main 1.28 (colored)
sync with head.
Revision 1.27.4.1 / (download) - annotate - [select for diffs], Sat Nov 18 21:34:30 2006 UTC (5 years, 6 months ago) by ad
Branch: newlock2
Changes since 1.27: +10 -5
lines
Diff to previous 1.27 (colored) next main 1.28 (colored)
Sync with head.
Revision 1.31 / (download) - annotate - [select for diffs], Thu Nov 16 01:33:08 2006 UTC (5 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
wrstuden-fixsa-base-1,
post-newlock2-merge,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
matt-nb4-arm-base,
matt-nb4-arm,
ad-audiomp-base,
ad-audiomp
Branch point for: yamt-idlelwp,
wrstuden-fixsa,
netbsd-4
Changes since 1.30: +7 -7
lines
Diff to previous 1.30 (colored)
__unused removal on arguments; approved by core.
Revision 1.27.6.1 / (download) - annotate - [select for diffs], Sun Oct 22 06:06:16 2006 UTC (5 years, 7 months ago) by yamt
Branch: yamt-splraiseipl
Changes since 1.27: +13 -8
lines
Diff to previous 1.27 (colored)
sync with head
Revision 1.30 / (download) - annotate - [select for diffs], Thu Oct 12 01:31:30 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-splraiseipl-base2
Changes since 1.29: +9 -7
lines
Diff to previous 1.29 (colored)
- sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
Revision 1.29 / (download) - annotate - [select for diffs], Fri Sep 29 14:38:04 2006 UTC (5 years, 7 months ago) by christos
Branch: MAIN
Changes since 1.28: +4 -2
lines
Diff to previous 1.28 (colored)
Coverity CID 4151: Don't forget to close the firmware file (from Arnaud Lacombe)
Revision 1.28 / (download) - annotate - [select for diffs], Sun Sep 24 03:53:09 2006 UTC (5 years, 8 months ago) by jmcneill
Branch: MAIN
Changes since 1.27: +4 -3
lines
Diff to previous 1.27 (colored)
Add "name" parameter to powerhook_establish, to aid debugging. No objections on tech-kern@
Revision 1.16.4.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:52:17 2006 UTC (5 years, 8 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.16: +63 -48
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
sync with head
Revision 1.16.8.3 / (download) - annotate - [select for diffs], Fri Aug 11 15:44:25 2006 UTC (5 years, 9 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.16.8.2: +2 -5
lines
Diff to previous 1.16.8.2 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
sync with head
Revision 1.27 / (download) - annotate - [select for diffs], Wed Aug 2 13:58:39 2006 UTC (5 years, 9 months ago) by rpaulo
Branch: MAIN
CVS Tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
rpaulo-netinet-merge-pcb-base,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Changes since 1.26: +2 -5
lines
Diff to previous 1.26 (colored)
Don't read the firmware twice. Noticed by Nick.
Revision 1.16.8.2 / (download) - annotate - [select for diffs], Mon Jun 26 12:51:21 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.16.8.1: +5 -5
lines
Diff to previous 1.16.8.1 (colored) to branchpoint 1.16 (colored)
sync with head.
Revision 1.12.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:05:04 2006 UTC (5 years, 11 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.12: +1400 -1000
lines
Diff to previous 1.12 (colored)
sync with head.
Revision 1.25.2.1 / (download) - annotate - [select for diffs], Mon Jun 19 04:01:35 2006 UTC (5 years, 11 months ago) by chap
Branch: chap-midi
Changes since 1.25: +5 -5
lines
Diff to previous 1.25 (colored) next main 1.26 (colored)
Sync with head.
Revision 1.16.6.2 / (download) - annotate - [select for diffs], Thu Jun 1 22:36:44 2006 UTC (5 years, 11 months ago) by kardel
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.16.6.1: +19 -12
lines
Diff to previous 1.16.6.1 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
Sync with head.
Revision 1.26 / (download) - annotate - [select for diffs], Sun May 28 13:09:48 2006 UTC (5 years, 11 months ago) by blymn
Branch: MAIN
CVS Tags: yamt-pdpolicy-base6,
simonb-timecounters-base,
gdamore-uart-base,
gdamore-uart,
chap-midi-nbase,
chap-midi-base
Changes since 1.25: +5 -5
lines
Diff to previous 1.25 (colored)
Clean up bogus whitespace
Revision 1.16.12.1 / (download) - annotate - [select for diffs], Wed May 24 15:50:27 2006 UTC (6 years ago) by tron
Branch: peter-altq
Changes since 1.16: +64 -46
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
Revision 1.16.8.1 / (download) - annotate - [select for diffs], Wed May 24 10:58:00 2006 UTC (6 years ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.16: +64 -46
lines
Diff to previous 1.16 (colored)
sync with head.
Revision 1.16.10.4 / (download) - annotate - [select for diffs], Thu May 11 23:28:47 2006 UTC (6 years ago) by elad
Branch: elad-kernelauth
Changes since 1.16.10.3: +16 -9
lines
Diff to previous 1.16.10.3 (colored) to branchpoint 1.16 (colored) next main 1.17 (colored)
sync with head
Revision 1.25 / (download) - annotate - [select for diffs], Mon May 1 20:43:46 2006 UTC (6 years ago) by rpaulo
Branch: MAIN
CVS Tags: yamt-pdpolicy-base5,
elad-kernelauth-base
Branch point for: chap-midi
Changes since 1.24: +3 -3
lines
Diff to previous 1.24 (colored)
aprint_debug -> aprint_error.
Revision 1.24 / (download) - annotate - [select for diffs], Sat Apr 29 16:46:11 2006 UTC (6 years ago) by rpaulo
Branch: MAIN
Changes since 1.23: +8 -4
lines
Diff to previous 1.23 (colored)
Describe the capabilities supported.
Revision 1.23 / (download) - annotate - [select for diffs], Sat Apr 29 16:43:40 2006 UTC (6 years ago) by rpaulo
Branch: MAIN
Changes since 1.22: +3 -3
lines
Diff to previous 1.22 (colored)
There's no power management support under ipw, so don't announce it to the net80211 stack.
Revision 1.22 / (download) - annotate - [select for diffs], Fri Apr 28 14:17:13 2006 UTC (6 years ago) by rpaulo
Branch: MAIN
Changes since 1.21: +6 -6
lines
Diff to previous 1.21 (colored)
bzero -> memset bcopy -> memcpy
Revision 1.21 / (download) - annotate - [select for diffs], Fri Apr 28 13:59:59 2006 UTC (6 years ago) by rpaulo
Branch: MAIN
Changes since 1.20: +5 -2
lines
Diff to previous 1.20 (colored)
Print the Ethernet address on attachement.
Revision 1.16.6.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:39:14 2006 UTC (6 years, 1 month ago) by simonb
Branch: simonb-timecounters
Changes since 1.16: +50 -39
lines
Diff to previous 1.16 (colored)
Sync with head.
Revision 1.16.10.3 / (download) - annotate - [select for diffs], Wed Apr 19 03:25:34 2006 UTC (6 years, 1 month ago) by elad
Branch: elad-kernelauth
Changes since 1.16.10.2: +50 -41
lines
Diff to previous 1.16.10.2 (colored) to branchpoint 1.16 (colored)
sync with head.
Revision 1.20 / (download) - annotate - [select for diffs], Tue Apr 18 12:49:02 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: MAIN
Changes since 1.19: +9 -6
lines
Diff to previous 1.19 (colored)
Use strlcpy instead of strncpy and sizeof. Requested by Luke.
Revision 1.19 / (download) - annotate - [select for diffs], Mon Apr 17 20:57:24 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: MAIN
Changes since 1.18: +2 -10
lines
Diff to previous 1.18 (colored)
Remove SIOCKILLFW.
Revision 1.18 / (download) - annotate - [select for diffs], Mon Apr 17 19:06:51 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: MAIN
Changes since 1.17: +6 -6
lines
Diff to previous 1.17 (colored)
Oops, 16 is not enough to store the firmware filenames, use 24.
Revision 1.17 / (download) - annotate - [select for diffs], Mon Apr 17 17:29:08 2006 UTC (6 years, 1 month ago) by rpaulo
Branch: MAIN
Changes since 1.16: +48 -32
lines
Diff to previous 1.16 (colored)
Use the firmload API to retrive the firmware from the filesystem.
Revision 1.16.10.2 / (download) - annotate - [select for diffs], Fri Mar 10 14:39:02 2006 UTC (6 years, 2 months ago) by elad
Branch: elad-kernelauth
Changes since 1.16.10.1: +4 -4
lines
Diff to previous 1.16.10.1 (colored) to branchpoint 1.16 (colored)
generic_authorize() -> kauth_authorize_generic().
Revision 1.16.10.1 / (download) - annotate - [select for diffs], Wed Mar 8 01:44:49 2006 UTC (6 years, 2 months ago) by elad
Branch: elad-kernelauth
Changes since 1.16: +6 -4
lines
Diff to previous 1.16 (colored)
Adapt to kernel authorization KPI.
Revision 1.16 / (download) - annotate - [select for diffs], Sat Dec 24 20:27:42 2005 UTC (6 years, 5 months ago) by perry
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
peter-altq,
elad-kernelauth
Changes since 1.15: +4 -4
lines
Diff to previous 1.15 (colored)
Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
Revision 1.15 / (download) - annotate - [select for diffs], Tue Dec 20 07:51:38 2005 UTC (6 years, 5 months ago) by skrll
Branch: MAIN
Changes since 1.14: +1356 -976
lines
Diff to previous 1.14 (colored)
Merge the FreeBSD code and adapt to NetBSD: - add power management. - update ioctl handling. Fix PR 27439 as the FreeBSD code has joerg's fix for when the RX intr routine can't allocate a new mbuf. Fix PR 30806. Thanks to cube@ for testing and some struct ipw_soft_hdr handling code. XXX The state machine doesn't sync with the net80211 layer, but that's XXX not a surprise.
Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Tue Dec 20 07:41:13 2005 UTC (6 years, 5 months ago) by skrll
Branch: FreeBSD,
BERGAMINI
CVS Tags: ipw-14-nov-2005
Changes since 1.1.1.1: +1553 -1234
lines
Diff to previous 1.1.1.1 (colored)
Import of the ipw(4) FreeBSD sources from 14-Nov-2005 (just after the last net80211 merge) as a step towards a working driver and to make future merging easier.
Revision 1.14 / (download) - annotate - [select for diffs], Sun Dec 11 12:22:49 2005 UTC (6 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: ipw-before-import
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
merge ktrace-lwp.
Revision 1.2.2.7 / (download) - annotate - [select for diffs], Thu Nov 10 14:06:01 2005 UTC (6 years, 6 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.6: +47 -38
lines
Diff to previous 1.2.2.6 (colored) next main 1.3 (colored)
Sync with HEAD. Here we go again...
Revision 1.13 / (download) - annotate - [select for diffs], Wed Jul 6 23:44:15 2005 UTC (6 years, 10 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
ktrace-lwp-base
Changes since 1.12: +5 -3
lines
Diff to previous 1.12 (colored)
Avoid an unnecessary API difference between NetBSD and FreeBSD: back out my change to ieee80211_crypto_encap that made it free its mbuf argument on error. I had thought it was a bug. It was not. It's the drivers that are broken. Make an(4), atw(4), ipw(4), iwi(4), ral(4), rtw(4), ural(4), and wi(4) free the mbuf when ieee80211_crypto_encap returns NULL. Also, return ath(4) to the way it was---i.e., free the mbuf. Thanks to Sam Leffler to pointing out my mistake.
Revision 1.12 / (download) - annotate - [select for diffs], Wed Jun 22 06:16:02 2005 UTC (6 years, 11 months ago) by dyoung
Branch: MAIN
Branch point for: yamt-lazymbuf
Changes since 1.11: +44 -37
lines
Diff to previous 1.11 (colored)
Resolve conflicts in importation of 18-May-2005 ath(4) / net80211(9) from FreeBSD. Introduce compatibility shims (sys/dev/ic/ath_netbsd.[ch], sys/net80211/ieee80211_netbsd.[ch]). Update drivers (an, atu, atw, awi, ipw, iwi, rtw, wi) for the new net80211(9) API.
Revision 1.11 / (download) - annotate - [select for diffs], Mon May 30 04:35:22 2005 UTC (6 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.10: +4 -4
lines
Diff to previous 1.10 (colored)
- const poisoning - avoid variable shadowing.
Revision 1.8.4.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:06 2005 UTC (7 years ago) by kent
Branch: kent-audio2
Changes since 1.8: +31 -3
lines
Diff to previous 1.8 (colored) next main 1.9 (colored)
sync with -current
Revision 1.2.2.6 / (download) - annotate - [select for diffs], Mon Jan 24 08:35:26 2005 UTC (7 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.5: +31 -4
lines
Diff to previous 1.2.2.5 (colored)
Sync with HEAD.
Revision 1.10 / (download) - annotate - [select for diffs], Wed Jan 19 06:00:22 2005 UTC (7 years, 4 months ago) by dyoung
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
yamt-km-base2,
yamt-km-base,
yamt-km,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
matt-timespec,
kent-audio2-base
Changes since 1.9: +30 -2
lines
Diff to previous 1.9 (colored)
Keep a count of free transmit/command descriptors, sc->txfree. Make the transmit section reserve one descriptor for issuing a command at all times. If either transmit descriptors run out, or header/buffer software descriptors run out, set IFF_OACTIVE and get out of ipw_start, rather than re-using a descriptor or trying to use a NULL descriptor that comes off the front of an empty descriptor tailqueue. This ought to fix port-i386/27439 and kern/28683.
Revision 1.9 / (download) - annotate - [select for diffs], Tue Jan 18 04:31:09 2005 UTC (7 years, 4 months ago) by dyoung
Branch: MAIN
Changes since 1.8: +3 -3
lines
Diff to previous 1.8 (colored)
Use IFQ_DEQUEUE instead of IF_DEQUEUE on if->if_snd to be consistent with IFQ_SET_READY(&if->if_snd) elsewhere, and also to enable ALTQ(9) on ipw(4).
Revision 1.2.2.5 / (download) - annotate - [select for diffs], Tue Sep 21 13:31:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.4: +3 -2
lines
Diff to previous 1.2.2.4 (colored)
Fix the sync with head I botched.
Revision 1.2.2.4 / (download) - annotate - [select for diffs], Sat Sep 18 14:49:03 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.3: +152 -106
lines
Diff to previous 1.2.2.3 (colored)
Sync with HEAD.
Revision 1.8 / (download) - annotate - [select for diffs], Tue Sep 14 00:38:37 2004 UTC (7 years, 8 months ago) by lukem
Branch: MAIN
CVS Tags: kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: kent-audio2
Changes since 1.7: +96 -97
lines
Diff to previous 1.7 (colored)
Whitespace tweaks. Remove vendor RCSID, since it's out of sync already (due to manual patches).
Revision 1.7 / (download) - annotate - [select for diffs], Tue Sep 14 00:35:10 2004 UTC (7 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.6: +3 -8
lines
Diff to previous 1.6 (colored)
Use ieee80211_find_rxnode() function instead of ieee80211_find_node() and ieee80211_ref_node(). From Damien Bergamini.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Sep 14 00:34:19 2004 UTC (7 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.5: +7 -2
lines
Diff to previous 1.5 (colored)
Correctly synchronize DMA mapping for transmission buffer descriptors. From Damien Bergamini.
Revision 1.5 / (download) - annotate - [select for diffs], Tue Sep 14 00:32:55 2004 UTC (7 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.4: +14 -9
lines
Diff to previous 1.4 (colored)
Improve monitor mode support. From Damien Bergamini
Revision 1.4 / (download) - annotate - [select for diffs], Tue Sep 14 00:31:20 2004 UTC (7 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.3: +44 -2
lines
Diff to previous 1.3 (colored)
Add IEEE802.11 radiotap support. From Damien Bergamini.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Fri Sep 3 12:45:28 2004 UTC (7 years, 8 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.2: +4 -14
lines
Diff to previous 1.2.2.2 (colored)
Sync with HEAD
Revision 1.3 / (download) - annotate - [select for diffs], Fri Aug 27 00:02:02 2004 UTC (7 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.2: +4 -14
lines
Diff to previous 1.2 (colored)
Minor cosmetic consistency tweaks, from Damien.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Wed Aug 25 06:58:05 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2.2.1: +1911 -0
lines
Diff to previous 1.2.2.1 (colored)
Sync with HEAD.
Revision 1.2.2.1, Mon Aug 23 11:57:35 2004 UTC (7 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.2: +0 -1911
lines
FILE REMOVED
file if_ipw.c was added on branch ktrace-lwp on 2004-08-25 06:58:05 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Mon Aug 23 11:57:35 2004 UTC (7 years, 9 months ago) by lukem
Branch: MAIN
Branch point for: ktrace-lwp
Changes since 1.1: +2 -1
lines
Diff to previous 1.1 (colored)
NetBSD RCSID
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Mon Aug 23 11:42:02 2004 UTC (7 years, 9 months ago) by lukem
Branch: FreeBSD,
BERGAMINI
CVS Tags: ipw-netbsd2-1-1
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
ipw(4) - Intel PRO/Wireless 2100 driver. Written by Damien Bergamini, from http://damien.bergamini.free.fr/ipw/
Revision 1.1 / (download) - annotate - [select for diffs], Mon Aug 23 11:42:02 2004 UTC (7 years, 9 months ago) by lukem
Branch: MAIN
Initial revision