summaryrefslogtreecommitdiff
path: root/sys/modules/if_vmx/Makefile
blob: 0655f2e9844cdd323255f089c8221009a1e5aec2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#	$NetBSD: Makefile,v 1.1 2020/10/14 10:26:59 ryo Exp $

.include "../Makefile.inc"

.PATH:	${S}/dev/pci

KMOD=	if_vmx
IOCONF=	if_vmx.ioconf

SRCS=	if_vmx.c

.include <bsd.kmodule.mk>
>mbalmer 2009-02-20Remove the paragraph saying interfaces will change without warning.pooka Note that a stable version of puffs first appeared in NetBSD 5.0. 2008-09-06Drop trailing whitespace.wiz 2008-09-06Add AsiaBSDCon 2008 paper to SEE ALSO.pooka 2008-01-29whoops, bump date - pretty significant changepooka 2008-01-29Fix a weirdosity in the framebuf gotfb interface: hand bufferpooka ownership to the called routine instead of keeping it. This means that callees must now destroy the buffer once they are done with it. 2007-12-08Fix typo, remove superfluous minus and describe "fd" as file descriptorwiz in two places. 2007-12-04tyop: reserver -> reservepooka 2007-12-02Add comma in enumeration. Punctuation nits. Fix a typo.wiz 2007-12-01Fix another persistent spello.wiz 2007-12-01Fix a typo that has migrated across files.wiz 2007-12-01fix gotframe signature to match codepooka 2007-10-05SEE ALSO paperpooka 2007-10-02minor updates/clarificationspooka 2007-09-06document puffs_framev_framebuf_ccpromote()pooka 2007-09-06Give cmpframe() the ability to shortcircuit the comparison loop bypooka signalling back that the buffer under examination is not a response at all. 2007-09-01Add gotframe callback, which is called if an incoming frame matchespooka no outstanding request. 2007-07-21document puffs_framev_enqueue_waiteventpooka 2007-07-08bring up-to-datepooka 2007-07-06make few function types match realitypooka 2007-05-20Change the signature of puffs_respcmp to return -1,0,1 for smaller,pooka equal, larger, respectively instead of 0/1 for non/equal. This will allow sorting the buffers for faster matching in libpuffs. While here, change the name from respcmp to framecmp, as that better reflects the purpose. NOTE! there is no obvious way to make compilation fail for file systems which may already be using this feature (although I don't think there are any outside our tree, as the feature is two weeks old). Nevertheless, non-updated file systems will fail very quickly. 2007-05-16remember to document puffs_framev_cb error parameter additionpooka 2007-05-16switch the arbitrary default errno value for network i/o frompooka ECONNABORTED to ECONNRESET, which is at least a little bit better 2007-05-16update .Nd to reflect current reality betterpooka 2007-05-15Step 3 and currently final step of a more general purpose event loop:pooka support removal and addition of i/o file descriptors on the fly. * detect closed file descriptors * automatically free waiters of a dead file descriptor * give the file server the possibility to specify a callback which notifies of a dead file descriptor * move loop function to be a property of the mainloop instead of framebuf (doesn't change effective behaviour) * add the possibility to configure a timespec parameter which attempts to call the loop function periodically * move the event loop functions from the puffs_framebuf namespace to puffs_framev to differential between pure memory management functions 2007-05-06document puffs_framebufpooka 2007-05-05add stubby version of puffs_framebuf manual page. proper onepooka forthcoming to an internet near you Real Soon Now(tm)