CTM_BEGIN 2.0 src-6 1437 20090323132343Z .
CTMFS .ctm_status 1004 1004 644 61c12cb0994ac8cbd1c3599354d243e6 439c67279e4457b8d539fa196a129428 11
src-6 1437
CTMFN etc/mail/aliases 1004 1004 644 f25b71f8c1637d347e5f52107fdfc561 3022e43b46177f7203b7283f813a08ff 133
d1 1
a1 1
# $FreeBSD: src/etc/mail/aliases,v 1.21.2.1 2009/03/23 04:56:33 gshapiro Exp $
a13 1
# http://tools.ietf.org/html/rfc2142
CTMFN share/zoneinfo/leapseconds 1004 1004 644 1bed80daf2cb3ced45855e2a472f3230 19af34c155ad547693f1a30203bf530e 355
d61 1
a61 1
# Paris, 15 January 2009
d63 1
a63 1
# Bulletin C 37
d69 14
a82 5
# NO positive leap second will be introduced at the end of June 2009.
# The difference between Coordinated Universal Time UTC and the
# International Atomic Time TAI is :
#
# from 2009 January 1, 0h UTC, until further notice : UTC-TAI = -34 s
CTMFN share/zoneinfo/northamerica 1004 1004 644 33a574c65182d3c3dd2e62415da39f31 8892a4944b91de21315b26d34b213e5c 941
d1 1
a1 1
# @(#)northamerica 8.27
a2260 19
# From Alexander Krivenyshev (2009-03-04)
# According to the Radio Reloj - Cuba will start Daylight Saving Time on
# midnight between Saturday, March 07, 2009 and Sunday, March 08, 2009-
# not on midnight March 14 / March 15 as previously thought.
#
#
# http://www.worldtimezone.com/dst_news/dst_news_cuba05.html
# (in Spanish)
#
# From Arthur David Olson (2009-03-09)
# I listened over the Internet to
#
# http://media.enet.cu/readioreloj
#
# this morning; when it was 10:05 a. m. here in Bethesda, Maryland the
# the time was announced as "diez cinco"--the same time as here, indicating
# that has indeed switched to DST. Assume second Sunday from 2009 forward.
d2293 1
a2293 2
Rule Cuba 2008 only - Mar Sun>=15 0:00s 1:00 D
Rule Cuba 2009 max - Mar Sun>=8 0:00s 1:00 D
CTMFN sys/boot/pc98/libpc98/bioscd.c 1004 1004 644 64645e509b076cd8f49cfda35bb822ff 8741c528367d7d0db7b084a1370397c1 1908
d29 1
a29 1
__FBSDID("$FreeBSD: src/sys/boot/pc98/libpc98/bioscd.c,v 1.1.2.3 2009/03/22 11:07:13 nyan Exp $");
d173 1
d175 1
a175 2
int i;
d235 1
a235 1
DEBUG("read %d from %lld to %p", blks, dblk, buf);
d244 1
a244 1
DEBUG("frag read %d from %lld+%d to %p",
d246 1
a246 1
if (fragsize && bc_read(unit, dblk + blks, 1, fragbuf)) {
a256 3
/* Max number of sectors to bounce-buffer at a time. */
#define CD_BOUNCEBUF 8
d260 2
a261 2
u_int maxfer, resid, result, retry, x;
caddr_t bbuf, p, xp;
a274 15
/* Decide whether we have to bounce */
if (VTOP(dest) >> 20 != 0) {
/*
* The destination buffer is above first 1MB of
* physical memory so we have to arrange a suitable
* bounce buffer.
*/
x = min(CD_BOUNCEBUF, (unsigned)blks);
bbuf = alloca(x * BIOSCD_SECSIZE);
maxfer = x;
} else {
bbuf = NULL;
maxfer = 0;
}
d276 7
a282 25
resid = blks;
p = dest;
while (resid > 0) {
if (bbuf)
xp = bbuf;
else
xp = p;
x = resid;
if (maxfer > 0)
x = min(x, maxfer);
/*
* Loop retrying the operation a couple of times. The BIOS
* may also retry.
*/
for (retry = 0; retry < 3; retry++) {
/* If retrying, reset the drive */
if (retry > 0) {
v86.ctl = V86_FLAGS;
v86.addr = 0x1b;
v86.eax = 0x0300 | biosdev;
v86int();
}
d285 1
a285 6
v86.eax = 0x0600 | (biosdev & 0x7f);
v86.ebx = x * BIOSCD_SECSIZE;
v86.ecx = dblk & 0xffff;
v86.edx = (dblk >> 16) & 0xffff;
v86.ebp = VTOPOFF(xp);
v86.es = VTOPSEG(xp);
a286 3
result = (v86.efl & PSL_C);
if (result == 0)
break;
d288 14
d304 1
a304 1
error = (v86.eax >> 8) & 0xff;
d306 3
a308 9
DEBUG("%d sectors from %lld to %p (0x%x) %s", x, dblk, p,
VTOP(p), result ? "failed" : "ok");
DEBUG("unit %d status 0x%x", unit, error);
if (bbuf != NULL)
bcopy(bbuf, p, x * BIOSCD_SECSIZE);
p += (x * BIOSCD_SECSIZE);
dblk += x;
resid -= x;
}
CTMFN sys/sys/kobj.h 1004 1004 644 76416c782dcc5b60006f7e9f46280920 a5a607eb1df22f9ebcd2ee9f4080f698 684
d26 1
a26 1
* $FreeBSD: src/sys/sys/kobj.h,v 1.9.10.3 2009/03/22 20:52:44 marius Exp $
a94 1
#if 1
a95 9
#else /* notyet */
#define KOBJMETHOD(NAME, FUNC) \
{ &NAME##_desc, (kobjop_t) (FUNC != (NAME##_t *)NULL ? FUNC : NULL) }
#endif
/*
*
*/
#define KOBJMETHOD_END { NULL, NULL }
d117 1
a117 1
#name, methods, size, NULL \
d123 1
a123 1
* DEFINE_CLASS_1(foo, foo_class, foo_methods, sizeof(foo_softc),
d130 1
a130 1
{ &base1, NULL }; \
d138 1
a138 1
* DEFINE_CLASS_2(foo, foo_class, foo_methods, sizeof(foo_softc),
d146 1
a146 1
&base2, NULL }; \
d154 1
a154 1
* DEFINE_CLASS_3(foo, foo_class, foo_methods, sizeof(foo_softc),
d163 1
a163 1
&base3, NULL }; \
CTMFN usr.sbin/eeprom/ofw_options.c 1004 1004 644 e0f905fa2fb97434782329e304144ce8 637c03ddcdaa88eaf03ef17380f2c070 1149
d27 1
a27 1
__FBSDID("$FreeBSD: src/usr.sbin/eeprom/ofw_options.c,v 1.3.8.1 2009/03/22 20:36:37 marius Exp $");
d55 2
a56 2
int (*ex_handler)(const struct ofwo_extabent *, int,
const void *, int, const char *);
d59 6
a64 6
static int ofwo_oemlogo(const struct ofwo_extabent *, int, const void *,
int, const char *);
static int ofwo_secmode(const struct ofwo_extabent *, int, const void *,
int, const char *);
static int ofwo_secpwd(const struct ofwo_extabent *, int, const void *,
int, const char *);
d66 1
a66 1
static const struct ofwo_extabent const ofwo_extab[] = {
d85 2
a86 2
ofwo_oemlogo(const struct ofwo_extabent *exent, int fd, const void *buf,
int buflen, const char *val)
d121 2
a122 2
ofwo_secmode(const struct ofwo_extabent *exent, int fd, const void *buf,
int buflen, const char *val)
d149 2
a150 2
ofwo_secpwd(const struct ofwo_extabent *exent, int fd, const void *buf,
int buflen, const char *val)
d250 1
a250 1
const struct ofwo_extabent *ex;
d257 1
a257 1
nlen = ofw_nextprop(fd, optnode, prop, prop, sizeof(prop))) {
d281 1
a281 1
const struct ofwo_extabent *ex;
d304 1
a304 1
else
CTM_END a87ce94c3f471f8c1006cd5e95d36364