OpenBSD CVS

CVS log for src/sys/scsi/ses.c


[BACK] Up to [local] / src / sys / scsi

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.64 / (download) - annotate - [select for diffs], Sun Oct 24 16:57:30 2021 UTC (2 years, 7 months ago) by mpi
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, HEAD
Changes since 1.63: +2 -2 lines
Diff to previous 1.63 (colored)

Constify struct cfattach.

ok visa@ a long time ago, ok krw@

Revision 1.63 / (download) - annotate - [select for diffs], Tue Sep 22 19:32:53 2020 UTC (3 years, 8 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_7_0_BASE, OPENBSD_7_0, OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.62: +4 -4 lines
Diff to previous 1.62 (colored)

Since dlg@'s 2009 scsi midlayer refactoring the 'struct scsi_generic *cmd'
member of 'struct scsi_xfer' has always been pointed at the 'struct scsi_generic
cmdstore' member of the same instance. So nuke 'cmdstore' and remove the '*'
from cmd. Take the address of cmd as required by the various casts.

No intentional functional change.

luna88k test by aoyama@, sparc64 test by jmatthew@

Identification of 2009's last *cmd use and ok jmatthew@

Revision 1.62 / (download) - annotate - [select for diffs], Sat Sep 12 16:51:04 2020 UTC (3 years, 8 months ago) by krw
Branch: MAIN
Changes since 1.61: +1 -4 lines
Diff to previous 1.61 (colored)

No need to check inq for NULL when it always points at the inqdata inside a
scsi_link.

Revision 1.61 / (download) - annotate - [select for diffs], Tue Jun 30 18:43:37 2020 UTC (3 years, 11 months ago) by krw
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

Nuke unneeded 'sa_inqbuf' member of struct scsi_attach_args. It always
points to the inquiry data contained in the struct scsi_link pointed
to by the other member, sa_sc_link.

Revision 1.60 / (download) - annotate - [select for diffs], Sat Dec 7 13:03:57 2019 UTC (4 years, 6 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.59: +64 -64 lines
Diff to previous 1.59 (colored)

Various cleanup tweaks. 'return' is not a function. KNF. Whitespace,
Comment fixes.

Revision 1.59 / (download) - annotate - [select for diffs], Sat Nov 23 01:16:05 2019 UTC (4 years, 6 months ago) by krw
Branch: MAIN
Changes since 1.58: +8 -8 lines
Diff to previous 1.58 (colored)

Consistently use SET() to set bits.

Revision 1.58 / (download) - annotate - [select for diffs], Fri Sep 27 17:22:31 2019 UTC (4 years, 8 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6
Changes since 1.57: +19 -19 lines
Diff to previous 1.57 (colored)

Add/tweak #endif comments to make spelunking via grep more rewarding.

Revision 1.57 / (download) - annotate - [select for diffs], Sun Sep 1 15:03:32 2019 UTC (4 years, 9 months ago) by krw
Branch: MAIN
Changes since 1.56: +4 -3 lines
Diff to previous 1.56 (colored)

Adopt the SCSI versioning #define's from FreeBSD. Eliminate the
now unneeded version_to_spc() mapping array, a duplicate #define
and a couple of magic numbers. Toss in some comments for future
generations of spelunkers.

Makes it possible to check for specific SPC versions when new
features or eliminated features require such a check.

No intentional functional change.

Revision 1.56 / (download) - annotate - [select for diffs], Wed Aug 28 15:17:23 2019 UTC (4 years, 9 months ago) by krw
Branch: MAIN
Changes since 1.55: +2 -3 lines
Diff to previous 1.55 (colored)

Introduce SCSI0(), SCSI2() and SCSI3() defines to clarify (some) uses
of SCSISPC() when checking the values of the INQUIRY version field.

Revision 1.55 / (download) - annotate - [select for diffs], Sun Aug 23 01:55:39 2015 UTC (8 years, 9 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_6_5_BASE, OPENBSD_6_5, OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2, OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.54: +7 -7 lines
Diff to previous 1.54 (colored)

add some sizes to free. looked over by deraadt

Revision 1.54 / (download) - annotate - [select for diffs], Sun Sep 14 14:17:26 2014 UTC (9 years, 8 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8, OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.53: +1 -2 lines
Diff to previous 1.53 (colored)

remove uneeded proc.h includes
ok mpi@ kspillner@

Revision 1.53 / (download) - annotate - [select for diffs], Sat Sep 13 16:06:37 2014 UTC (9 years, 9 months ago) by doug
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52 (colored)

Replace all queue *_END macro calls except CIRCLEQ_END with NULL.

CIRCLEQ_* is deprecated and not called in the tree.  The other queue types
have *_END macros which were added for symmetry with CIRCLEQ_END.  They are
defined as NULL.  There's no reason to keep the other *_END macro calls.

ok millert@

Revision 1.52 / (download) - annotate - [select for diffs], Sat Jul 12 18:50:25 2014 UTC (9 years, 11 months ago) by tedu
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.51: +7 -7 lines
Diff to previous 1.51 (colored)

add a size argument to free. will be used soon, but for now default to 0.
after discussions with beck deraadt kettenis.

Revision 1.51 / (download) - annotate - [select for diffs], Thu Mar 17 21:30:24 2011 UTC (13 years, 2 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5, OPENBSD_5_4_BASE, OPENBSD_5_4, OPENBSD_5_3_BASE, OPENBSD_5_3, OPENBSD_5_2_BASE, OPENBSD_5_2, OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.50: +22 -19 lines
Diff to previous 1.50 (colored)

use dma_alloc/dma_free instead of malloc to allocate buffers which need
to be in the right address space.
help from matthew and krw

Revision 1.50 / (download) - annotate - [select for diffs], Mon Aug 30 02:47:56 2010 UTC (13 years, 9 months ago) by matthew
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.49: +4 -4 lines
Diff to previous 1.49 (colored)

Avoid possible aliasing-related compiler issues by always writing to
cmd->opcode through the type casted command pointer rather than
through xs->cmd->opcode.

Requested by deraadt@; ok krw@.

Revision 1.49 / (download) - annotate - [select for diffs], Mon Aug 2 23:00:54 2010 UTC (13 years, 10 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8
Changes since 1.48: +2 -2 lines
Diff to previous 1.48 (colored)

Don't refer to xs->cmd, even via a pointer to xs->cmd, after xs has
been put back in the pool. Fixes Daniel Dickman's ses device.

ok matthew@ deraadt@

Revision 1.48 / (download) - annotate - [select for diffs], Thu Jul 22 00:31:06 2010 UTC (13 years, 10 months ago) by krw
Branch: MAIN
Changes since 1.47: +74 -51 lines
Diff to previous 1.47 (colored)

Eliminate scsi_scsi_cmd() now that ss(4) is gone and with it the
last bastardized sync and buf call through scsi_scsi_cmd(). Flatten
code to call scsi_xs_sync() directly for all commands.

Airplane typos shaken out by various.

ok dlg@ matthew@ deraadt@

Revision 1.47 / (download) - annotate - [select for diffs], Sun Sep 16 01:30:24 2007 UTC (16 years, 8 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3
Changes since 1.46: +4 -4 lines
Diff to previous 1.46 (colored)

MALLOC/FREE -> malloc/free, M_ZERO, extraneous casts,
extraneous #include <malloc.h>

Revision 1.46 / (download) - annotate - [select for diffs], Fri Sep 7 16:15:49 2007 UTC (16 years, 9 months ago) by krw
Branch: MAIN
Changes since 1.45: +4 -7 lines
Diff to previous 1.45 (colored)

The obvious bzero/memset -> M_ZERO changes.

Revision 1.45 / (download) - annotate - [select for diffs], Sun Jun 24 05:34:35 2007 UTC (16 years, 11 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_4_2_BASE, OPENBSD_4_2
Changes since 1.44: +20 -13 lines
Diff to previous 1.44 (colored)

rework sensor tasks to use the kernels generic workq rather than a special
kernel thread of its own. the api has changed (which will be fixed in the
manpage shortly) so all the users of sensor tasks that i can find have
been fixed too.

noone tested, so its going in to force people to run with it.
"put it in" deraadt@

Revision 1.44 / (download) - annotate - [select for diffs], Fri May 4 23:44:37 2007 UTC (17 years, 1 month ago) by krw
Branch: MAIN
Changes since 1.43: +15 -16 lines
Diff to previous 1.43 (colored)

lockmgr -> rwlock.

"reads good" art@ ok marco@

Revision 1.43 / (download) - annotate - [select for diffs], Thu Mar 22 16:55:31 2007 UTC (17 years, 2 months ago) by deraadt
Branch: MAIN
Changes since 1.42: +3 -3 lines
Diff to previous 1.42 (colored)

split userland & kernel struct sensor/sensordev so that the addition
of new fields in the future is less disruptive.  This is done similar
to how struct proc is handled for ps(1).  ok jmc (man page changes)
tested fkr simon, and more suggestions from millert

Revision 1.42 / (download) - annotate - [select for diffs], Sat Dec 23 17:46:39 2006 UTC (17 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_4_1_BASE, OPENBSD_4_1
Changes since 1.41: +13 -18 lines
Diff to previous 1.41 (colored)

adapt to new two-level sensor api; Constantine A. Murenin

Revision 1.41 / (download) - annotate - [select for diffs], Tue Nov 28 16:56:50 2006 UTC (17 years, 6 months ago) by dlg
Branch: MAIN
Changes since 1.40: +3 -3 lines
Diff to previous 1.40 (colored)

rename scsibus_attach_args to scsi_attach_args. this can help avoid
confusing when trying to attach scsibus to a hba, since it is really meant
for attaching scsi devices to scsibus.

ok deraadt@ marco@

Revision 1.40 / (download) - annotate - [select for diffs], Sun Oct 1 10:42:18 2006 UTC (17 years, 8 months ago) by grange
Branch: MAIN
Changes since 1.39: +7 -7 lines
Diff to previous 1.39 (colored)

Free sensors on detach.

ok dlg@

Revision 1.39 / (download) - annotate - [select for diffs], Sat Jul 29 02:40:46 2006 UTC (17 years, 10 months ago) by krw
Branch: MAIN
CVS Tags: OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.38: +3 -3 lines
Diff to previous 1.38 (colored)

The version field of scsi_inquiry_data is not a simple numeric value
that specifies the version of SCSI being supported. Even the ANSI part
that we use is complex. 4 means 2, 5 means 3 and 6 means 4. Translate
and use the value correctly. Fixes SCSI5 and SCSI6 in dmesg. And
properly protects SCSI2 devices from getting SCSI3 commands.

"seems like an elegant solution to me" millert@ ok dlg@ marco@

Revision 1.38 / (download) - annotate - [select for diffs], Sun Jul 16 22:08:59 2006 UTC (17 years, 11 months ago) by dlg
Branch: MAIN
Changes since 1.37: +9 -3 lines
Diff to previous 1.37 (colored)

take a 1k array off the stack by using malloc to get it. found by miod.

Revision 1.37 / (download) - annotate - [select for diffs], Thu May 11 00:45:59 2006 UTC (18 years, 1 month ago) by krw
Branch: MAIN
Changes since 1.36: +5 -5 lines
Diff to previous 1.36 (colored)

Zap trailing whitespace.

Revision 1.36 / (download) - annotate - [select for diffs], Tue May 9 05:51:54 2006 UTC (18 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.35: +4 -4 lines
Diff to previous 1.35 (colored)

make sensor names look more normal; ok dlg

Revision 1.35 / (download) - annotate - [select for diffs], Thu Apr 20 20:31:13 2006 UTC (18 years, 1 month ago) by miod
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

Fix various printf() issues: too many arguments, not enough arguments, argument
order reversed, wrong modifiers. ok deraadt@ marco@ mickey@

Revision 1.34 / (download) - annotate - [select for diffs], Thu Jan 19 17:08:40 2006 UTC (18 years, 4 months ago) by grange
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

Replace SENSOR_ADD() macro with a pair of functions
sensor_add()/sensor_del() so that sensors can be attached
and detached dynamicaly.

ok kettenis@ deraadt@ dlg@

Revision 1.33 / (download) - annotate - [select for diffs], Wed Jan 11 08:21:21 2006 UTC (18 years, 5 months ago) by dlg
Branch: MAIN
Changes since 1.32: +1 -2 lines
Diff to previous 1.32 (colored)

dont print anything if we're unable to read the status page

requested by deraadt@

Revision 1.32 / (download) - annotate - [select for diffs], Sat Nov 19 02:18:01 2005 UTC (18 years, 6 months ago) by pedro
Branch: MAIN
Changes since 1.31: +13 -13 lines
Diff to previous 1.31 (colored)

Remove unnecessary lockmgr() archaism that was costing too much in terms
of panics and bugfixes. Access curproc directly, do not expect a process
pointer as an argument. Should fix many "process context required" bugs.
Incentive and okay millert@, okay marc@. Various testing, thanks.

Revision 1.31 / (download) - annotate - [select for diffs], Sun Nov 13 02:38:27 2005 UTC (18 years, 7 months ago) by dlg
Branch: MAIN
Changes since 1.30: +28 -3 lines
Diff to previous 1.30 (colored)

lock accesses to the buffer so that it wont get confused between the
multiple processes using it

Revision 1.30 / (download) - annotate - [select for diffs], Sun Nov 13 02:21:42 2005 UTC (18 years, 7 months ago) by dlg
Branch: MAIN
Changes since 1.29: +9 -1 lines
Diff to previous 1.29 (colored)

if the particular ses device has no slots or sensors to handle, then free
all the resources.

Revision 1.29 / (download) - annotate - [select for diffs], Sat Nov 12 08:09:47 2005 UTC (18 years, 7 months ago) by dlg
Branch: MAIN
Changes since 1.28: +2 -7 lines
Diff to previous 1.28 (colored)

clean up unused includes

Revision 1.28 / (download) - annotate - [select for diffs], Sat Nov 12 08:06:45 2005 UTC (18 years, 7 months ago) by dlg
Branch: MAIN
Changes since 1.27: +43 -84 lines
Diff to previous 1.27 (colored)

remove the ses kthread goop and use the sensor kthread for updates instead

tested by deraadt@

Revision 1.27 / (download) - annotate - [select for diffs], Thu Sep 29 07:19:35 2005 UTC (18 years, 8 months ago) by dlg
Branch: MAIN
Changes since 1.26: +5 -3 lines
Diff to previous 1.26 (colored)

fix the check for the type of enclosure

Revision 1.26 / (download) - annotate - [select for diffs], Tue Aug 23 23:44:28 2005 UTC (18 years, 9 months ago) by dlg
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.25: +13 -10 lines
Diff to previous 1.25 (colored)

setting the FAULT flag on a device so the alarm led blinks may have
unwanted side effects, eg, disabling both fc ports and powering the disk
down. so remove this knob for now.

ok deraadt@

Revision 1.25 / (download) - annotate - [select for diffs], Tue Aug 23 05:29:41 2005 UTC (18 years, 9 months ago) by marco
Branch: MAIN
Changes since 1.24: +13 -10 lines
Diff to previous 1.24 (colored)

Test for cold and apply relevant flags for all scsi commands.

ok dlg@ krw@ deraadt@

Revision 1.24 / (download) - annotate - [select for diffs], Mon Aug 22 19:24:45 2005 UTC (18 years, 9 months ago) by deraadt
Branch: MAIN
Changes since 1.23: +4 -1 lines
Diff to previous 1.23 (colored)

check for scsi_autoconf state, spotted by marco; ok krw

Revision 1.23 / (download) - annotate - [select for diffs], Thu Aug 18 21:04:47 2005 UTC (18 years, 9 months ago) by marco
Branch: MAIN
Changes since 1.22: +5 -10 lines
Diff to previous 1.22 (colored)

Silly dlg did not read my old code careful enough.  Missed 2 bits that are
necessary for the blinkenlight magic.
Also removed some XXX cruft that was misleading.

Revision 1.22 / (download) - annotate - [select for diffs], Thu Aug 18 12:26:39 2005 UTC (18 years, 9 months ago) by dlg
Branch: MAIN
Changes since 1.21: +169 -5 lines
Diff to previous 1.21 (colored)

infrastructure to support blinking controlled via /dev/bio ioctls. the
code to do the actual blink is ifdefed out till marco can figure out what
im doing wrong.

Revision 1.21 / (download) - annotate - [select for diffs], Sat Aug 13 01:38:19 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

let safte match on dell enclosures too. ses takes precedence though

ok marco@ deraadt@

Revision 1.20 / (download) - annotate - [select for diffs], Wed Aug 10 10:55:33 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.19: +7 -5 lines
Diff to previous 1.19 (colored)

use the appropriate flags to scsi_scsi_cmd during autoconf so we dont spin
forever on mp kernels

problem reported by matthieu baptiste

Revision 1.19 / (download) - annotate - [select for diffs], Tue Aug 9 11:37:02 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.18: +62 -33 lines
Diff to previous 1.18 (colored)

normalise the fan speed output

ok marco@

Revision 1.18 / (download) - annotate - [select for diffs], Mon Aug 8 18:42:08 2005 UTC (18 years, 10 months ago) by marco
Branch: MAIN
Changes since 1.17: +2 -1 lines
Diff to previous 1.17 (colored)

Fill in device structure, bad dlg@

Revision 1.17 / (download) - annotate - [select for diffs], Fri Aug 5 03:20:26 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.16: +28 -11 lines
Diff to previous 1.16 (colored)

report the fan speed as a percentage since it seems all the enclosures we
fill in the rpm fields.

your call deraadt@

Revision 1.16 / (download) - annotate - [select for diffs], Fri Aug 5 00:34:51 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.15: +11 -17 lines
Diff to previous 1.15 (colored)

reorder the allocation of bits in attach to make cleaning up on an error
shorter and less prone to mistakes

ok marco@

Revision 1.15 / (download) - annotate - [select for diffs], Thu Aug 4 14:31:53 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.14: +1 -2 lines
Diff to previous 1.14 (colored)

the generic scsi attach line already says we're an enclosure, so why did
i make it say the second line that says the same thing?

Revision 1.14 / (download) - annotate - [select for diffs], Thu Aug 4 14:28:51 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.13: +69 -35 lines
Diff to previous 1.13 (colored)

be nicer to the controller the ses device is attached to by doing the scsi
commands in a kernel thread, not out of softclock with a timeout.

help from pascoe@ ok marco@

Revision 1.13 / (download) - annotate - [select for diffs], Thu Aug 4 02:14:30 2005 UTC (18 years, 10 months ago) by marco
Branch: MAIN
Changes since 1.12: +6 -1 lines
Diff to previous 1.12 (colored)

Add support for dell enclosures that do both SES and SAF-TE.  ok dlg@

Revision 1.12 / (download) - annotate - [select for diffs], Wed Aug 3 15:34:13 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.11: +17 -1 lines
Diff to previous 1.11 (colored)

report the state of the power supplies. the value shows if the psu is on
or off, but sysctl doesnt know how to display it (yet).

requested by marco@

Revision 1.11 / (download) - annotate - [select for diffs], Wed Aug 3 15:00:26 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.10: +42 -31 lines
Diff to previous 1.10 (colored)

take advantage of the new ability of the sensors framework to report the
status

ok marco@ beck@ henning@ deraadt@

Revision 1.10 / (download) - annotate - [select for diffs], Tue Aug 2 03:35:14 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.9: +34 -5 lines
Diff to previous 1.9 (colored)

read the rpm of the fans

Revision 1.9 / (download) - annotate - [select for diffs], Mon Aug 1 23:14:31 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.8: +311 -2274 lines
Diff to previous 1.8 (colored)

a new scsi enclosure services driver. this and safte replace the old ses
driver. rather than relying on its own set of tools, ses reports the
enclosure status via the hw.sensors sysctl tree. so far only temperature
is reported

ok marco@ deraadt@ krw@

Revision 1.8, Sun Jul 31 06:22:56 2005 UTC (18 years, 10 months ago) by dlg
Branch: MAIN
Changes since 1.7: +1 -1 lines
FILE REMOVED

remove the ses driver. it has never been enabled in GENERIC on any arch
in openbsds lifetime so noone is going to miss it.

if you did enable it, it either didnt work or the data was hard to read
and usually wrong.

ok deraadt@ marco@

Revision 1.1.2.5 / (download) - annotate - [select for diffs], Sat Jun 5 23:13:08 2004 UTC (20 years ago) by niklas
Branch: SMP
Changes since 1.1.2.4: +2 -2 lines
Diff to previous 1.1.2.4 (colored) to branchpoint 1.1 (colored) next main 1.2 (colored)

Merge with the trunk

Revision 1.7 / (download) - annotate - [select for diffs], Sun May 9 04:01:59 2004 UTC (20 years, 1 month ago) by krw
Branch: MAIN
CVS Tags: SMP_SYNC_B, SMP_SYNC_A, OPENBSD_3_7_BASE, OPENBSD_3_7, OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.6: +3 -3 lines
Diff to previous 1.6 (colored)

Add missing <cr>'s to various SC_DEBUG() calls, along with a few other
SC_DEBUG() spacing tweaks.

ok deraadt@

Revision 1.1.2.4 / (download) - annotate - [select for diffs], Thu Feb 19 11:01:31 2004 UTC (20 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.1.2.3: +2 -2 lines
Diff to previous 1.1.2.3 (colored) to branchpoint 1.1 (colored)

Merge of current from two weeks agointo the SMP branch

Revision 1.6 / (download) - annotate - [select for diffs], Sat Jan 3 14:08:54 2004 UTC (20 years, 5 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros
to built-ins, so eventually we will have one version of these files.
Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h
and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes.
okay millert@, drahn@, miod@.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Aug 6 21:08:07 2003 UTC (20 years, 10 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now.  From Patrick Latifi.

Revision 1.2.4.1 / (download) - annotate - [select for diffs], Tue Jun 11 03:32:14 2002 UTC (22 years ago) by art
Branch: UBC
Changes since 1.2: +29 -45 lines
Diff to previous 1.2 (colored) next main 1.3 (colored)

Sync UBC branch to -current

Revision 1.1.2.3 / (download) - annotate - [select for diffs], Thu Mar 28 14:52:01 2002 UTC (22 years, 2 months ago) by niklas
Branch: SMP
Changes since 1.1.2.2: +29 -45 lines
Diff to previous 1.1.2.2 (colored) to branchpoint 1.1 (colored)

Merge in -current from roughly a week ago

Revision 1.4 / (download) - annotate - [select for diffs], Fri Mar 15 18:19:53 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
CVS Tags: UBC_SYNC_B, UBC_SYNC_A, OPENBSD_3_3_BASE, OPENBSD_3_3, OPENBSD_3_2_BASE, OPENBSD_3_2, OPENBSD_3_1_BASE, OPENBSD_3_1
Changes since 1.3: +1 -17 lines
Diff to previous 1.3 (colored)

Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things
the ANSI way.

Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 14 01:27:13 2002 UTC (22 years, 3 months ago) by millert
Branch: MAIN
Changes since 1.2: +29 -29 lines
Diff to previous 1.2 (colored)

First round of __P removal in sys

Revision 1.1.2.2 / (download) - annotate - [select for diffs], Wed Jul 4 11:00:08 2001 UTC (22 years, 11 months ago) by niklas
Branch: SMP
Changes since 1.1.2.1: +9 -9 lines
Diff to previous 1.1.2.1 (colored) to branchpoint 1.1 (colored)

Merge in -current from two days ago in the SMP branch.
As usual with merges, they do not indicate progress, so do not hold
your breath for working SMP, and do not mail me and ask about the
state of it.  It has not changed.  There is work ongoing, but very, very
slowly.  The commit is done in parts as to not lock up the tree in too
big chunks at a time.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Jun 22 14:35:43 2001 UTC (22 years, 11 months ago) by deraadt
Branch: MAIN
CVS Tags: UBC_BASE, OPENBSD_3_0_BASE, OPENBSD_3_0
Branch point for: UBC
Changes since 1.1: +9 -9 lines
Diff to previous 1.1 (colored)

KNF

Revision 1.1.2.1 / (download) - annotate - [select for diffs], Mon Feb 21 22:29:15 2000 UTC (24 years, 3 months ago) by niklas
Branch: SMP
Changes since 1.1: +1 -1 lines
Diff to previous 1.1 (colored)

sync with -current

Revision 1.1 / (download) - annotate - [select for diffs], Mon Feb 21 08:23:30 2000 UTC (24 years, 3 months ago) by mjacob
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9, OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Branch point for: SMP

add SES/SAF-TE SCSI device

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.