CVS log for xfs-linux-nodel/xfs_error.c

[BACK] Up to [Development] / xfs-linux-nodel

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.64 / (download) - annotate - [select for diffs], Fri Jul 25 06:11:24 2008 UTC (9 years, 3 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.63: +1 -4 lines
Diff to previous 1.63 (colored)

kill INDUCE_IO_ERROR

All the error injection is already enabled through ifdef DEBUG, so kill
the never set second cpp symbol to activate it without the rest of the
debugging infrastructure.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of xfs-linux-melb:xfs-kern:31771a by kenmcd.

Revision 1.63 / (download) - annotate - [select for diffs], Wed Jun 25 04:16:47 2008 UTC (9 years, 4 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.62: +0 -8 lines
Diff to previous 1.62 (colored)

streamline init/exit path

Currently the xfs module init/exit code is a mess.  It's farmed out
over a lot of function with very little error checking.  This patch
makes sure we propagate all initialization failures properly and clean
up after them.  Various runtime initializations are replaced with
compile-time initializations where possible to make this easier.  The
exit path is similarly consolidated.

There's now split out function to create/destroy the kmem zones and
alloc/free the trace buffers.  I've also changed the ktrace
allocations to KM_MAYFAIL and handled errors resulting from that.

And yes, we really should replace the XFS_*_TRACE ifdefs with a single
XFS_TRACE..

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Merge of xfs-linux-melb:xfs-kern:31354a by kenmcd.

Revision 1.62 / (download) - annotate - [select for diffs], Wed Jun 25 04:15:46 2008 UTC (9 years, 4 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.61: +8 -0 lines
Diff to previous 1.61 (colored)

Undoes mod:     xfs-linux-melb:xfs-kern:31210a
streamline init/exit path

Currently the xfs module init/exit code is a mess.  It's farmed out
over a lot of function with very little error checking.  This patch
makes sure we propagate all initialization failures properly and clean
up after them.  Various runtime initializations are replaced with
compile-time initializations where possible to make this easier.  The
exit path is similarly consolidated.

There's now split out function to create/destroy the kmem zones and
alloc/free the trace buffers.  I've also changed the ktrace
allocations to KM_MAYFAIL and handled errors resulting from that.

And yes, we really should replace the XFS_*_TRACE ifdefs with a single
XFS_TRACE..

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Merge of xfs-linux-melb:xfs-kern:31353a by kenmcd.

Revision 1.61 / (download) - annotate - [select for diffs], Mon May 26 03:28:21 2008 UTC (9 years, 5 months ago) by xaiki.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.60: +0 -8 lines
Diff to previous 1.60 (colored)

xiaki pmod2git xfs-linux-melb:xfs-kern:31210a
Merge of xfs-linux-melb:xfs-kern:31210a by kenmcd.

Revision 1.60 / (download) - annotate - [select for diffs], Fri May 9 04:27:47 2008 UTC (9 years, 5 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.59: +2 -3 lines
Diff to previous 1.59 (colored)

Remove unused arg from kmem_free()

kmem_free() function takes (ptr, size) arguments but doesn't
actually use second one.

This patch removes size argument from all callsites.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Merge of xfs-linux-melb:xfs-kern:31050a by kenmcd.

  Remove unused arg from kmem_free()

Revision 1.59 / (download) - annotate - [select for diffs], Mon Oct 8 15:44:01 2007 UTC (10 years ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.58: +0 -31 lines
Diff to previous 1.58 (colored)

lose xfs_hex_dump in favor of print_hex_dump

No need for xfs to have its own hex dumping routine now that the
kernel has one.

Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Merge of xfs-linux-melb:xfs-kern:29847a by kenmcd.

  lose xfs_hex_dump in favor of print_hex_dump

Revision 1.58 / (download) - annotate - [select for diffs], Fri Aug 24 16:15:28 2007 UTC (10 years, 2 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.57: +7 -13 lines
Diff to previous 1.57 (colored)

kill the vfs_fsid and vfs_altfsid members in struct bhv_vfs

vfs_altfsid was just a pointer to mp->m_fixedfsid so we can trivially
replace it with the latter.  vfs_fsid also was identicaly to m_fixedfsid
through rather obsfucated ways so we can kill it aswell and simply it's
only user.


Signed-off-by: Christoph Hellwig <hch@lst.de>
Merge of xfs-linux-melb:xfs-kern:29506a by kenmcd.

  remove vfs_fsid and vfs_altfsid.

Revision 1.57 / (download) - annotate - [select for diffs], Thu Aug 23 16:00:34 2007 UTC (10 years, 2 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.56: +1 -0 lines
Diff to previous 1.56 (colored)

Radix tree based inode caching

One of the perpetual scaling problems XFS has is indexing
it's incore inodes. We currently uses hashes and the default
hash sizes chosen can only ever be a tradeoff between memory
consumption and the maximum realistic size of the cache.

As a result, anyone who has millions of inodes cached on a
filesystem needs to tunes the size of the cache via the ihashsize
mount option to allow decent scalability with inode cache
operations.

A further problem is the separate inode cluster hash, whose size is
based on the ihashsize but is smaller, and so under certain
conditions (sparse cluster cache population) this can become
a limitation long before the inode hash is causing issues.

The following patchset removes the inode hash and cluster hash
and replaces them with radix trees to avoid the scalability
limitations of the hashes. It also reduces the size of the
inodes by 3 pointers....
Merge of xfs-linux-melb:xfs-kern:29481a by kenmcd.

  Convert xfs inode caches from hashes to radix trees.

Revision 1.56 / (download) - annotate - [select for diffs], Tue Mar 6 02:58:28 2007 UTC (10 years, 7 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.55: +1 -1 lines
Diff to previous 1.55 (colored)

reducing the number of random number functions.

Patch provided by Joe Perches
Signed-off-by: Joe Perches <joe@perches.com>
Merge of xfs-linux-melb:xfs-kern:28209a by kenmcd.

  reducing the number of random number functions.
  Signed-off-by: Joe Perches <joe@perches.com>

Revision 1.55 / (download) - annotate - [select for diffs], Wed Feb 7 02:51:56 2007 UTC (10 years, 8 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.54: +0 -26 lines
Diff to previous 1.54 (colored)

Remove a bunch of unused functions from XFS.

Patch provided by Eric Sandeen (sandeen@sandeen.net).
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Merge of xfs-linux-melb:xfs-kern:28038a by kenmcd.

  Remove unused functions.
  Signed-off-by: Eric Sandeen <sandeen@sandeen.net>

Revision 1.54 / (download) - annotate - [select for diffs], Thu Jun 15 03:58:11 2006 UTC (11 years, 4 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.53: +0 -2 lines
Diff to previous 1.53 (colored)

Remove version 1 directory code.  Never functioned on Linux, just pure bloat.
Merge of xfs-linux-melb:xfs-kern:26251a by kenmcd.

Revision 1.53 / (download) - annotate - [select for diffs], Thu Jan 12 02:43:50 2006 UTC (11 years, 9 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.52: +0 -1 lines
Diff to previous 1.52 (colored)

Merge in trivial changes, sync up headers with userspace equivalents.
Merge of xfs-linux-melb:xfs-kern:24961a by kenmcd.

Revision 1.52 / (download) - annotate - [select for diffs], Fri Sep 23 03:51:28 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.51: +12 -26 lines
Diff to previous 1.51 (colored)

Update license/copyright notices to match the prefered SGI boilerplate.
Merge of xfs-linux-melb:xfs-kern:23903a by kenmcd.

Revision 1.51 / (download) - annotate - [select for diffs], Fri Sep 23 03:48:50 2005 UTC (12 years, 1 month ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.50: +4 -6 lines
Diff to previous 1.50 (colored)

Remove xfs_macros.c, xfs_macros.h, rework headers a whole lot.
Merge of xfs-linux-melb:xfs-kern:23901a by kenmcd.

Revision 1.50 / (download) - annotate - [select for diffs], Wed May 18 09:29:33 2005 UTC (12 years, 5 months ago) by hch
Branch: MAIN
Changes since 1.49: +1 -1 lines
Diff to previous 1.49 (colored)

mark various symbols static

Patch from Adrian Bunk

Revision 1.49 / (download) - annotate - [select for diffs], Wed Dec 31 20:11:12 2003 UTC (13 years, 9 months ago) by sandeen
Branch: MAIN
Changes since 1.48: +13 -15 lines
Diff to previous 1.48 (colored)

Make more xfs errors trappable with panic_mask
Route all errors from xfs_error_report through xfs_cmn error,
to make them trappable via the panic_mask setting.  Previously
calls to xfs_error_report without an xfs_mount_t passed in
were not trappable; just deal with the lack of mp later, it
was only used for informational messages.

Revision 1.48 / (download) - annotate - [select for diffs], Fri Sep 19 18:12:29 2003 UTC (14 years, 1 month ago) by sandeen
Branch: MAIN
Changes since 1.47: +1 -1 lines
Diff to previous 1.47 (colored)

Update sysctls - use ints, not ulongs, and show pagebuf
values in jiffies like everybody else

Revision 1.47 / (download) - annotate - [select for diffs], Tue Aug 12 20:59:27 2003 UTC (14 years, 2 months ago) by cattelan
Branch: MAIN
Changes since 1.46: +4 -4 lines
Diff to previous 1.46 (colored)

Fix some inconsistent types
Fix some inconsistent types 

Revision 1.46 / (download) - annotate - [select for diffs], Tue Jul 15 15:06:01 2003 UTC (14 years, 3 months ago) by lord
Branch: MAIN
Changes since 1.45: +2 -1 lines
Diff to previous 1.45 (colored)

Be consistent about when we dump error messages. Make sure the
hex component of an error message only comes out when the
message does.
pay attention to the error level properly.

Revision 1.45 / (download) - annotate - [select for diffs], Fri Jun 27 18:04:26 2003 UTC (14 years, 4 months ago) by cattelan
Branch: MAIN
Changes since 1.44: +328 -0 lines
Diff to previous 1.44 (colored)

The Big Move
linux/fs/xfs/xfs_error.c 1.43 Renamed to xfs_error.c

Revision 1.44 / (download) - annotate - [select for diffs], Fri Jun 27 17:57:21 2003 UTC (14 years, 4 months ago) by cattelan
Branch: MAIN
CVS Tags: DENUKE
Changes since 1.43: +0 -328 lines
Diff to previous 1.43 (colored)

Nuke

Revision 1.43 / (download) - annotate - [select for diffs], Thu May 1 16:22:06 2003 UTC (14 years, 5 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.42: +19 -1 lines
Diff to previous 1.42 (colored)

Rework the way xfs includes xfs_<blah>.h headers.
This reduces a lot of the compile dependenciesÂ,
and should reduce some of the "recompile all" situations.

Revision 1.42 / (download) - annotate - [select for diffs], Fri Apr 18 22:23:27 2003 UTC (14 years, 6 months ago) by sandeen
Branch: MAIN
Changes since 1.41: +0 -6 lines
Diff to previous 1.41 (colored)

Change xfs_stack_trace to compile with kernels < 2.4.20
Merge of 2.4.x-xfs-kern:slinx:146328a by sandeen.

Revision 1.41 / (download) - annotate - [select for diffs], Tue Apr 15 23:16:46 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
Changes since 1.40: +3 -3 lines
Diff to previous 1.40 (colored)

Whitespace cleanup
Clean up some whitespace... revert some whitespace changes from previous whitespace cleanup (incorrect tabs)

Revision 1.40 / (download) - annotate - [select for diffs], Thu Apr 10 15:43:00 2003 UTC (14 years, 6 months ago) by nstraz
Branch: MAIN
Changes since 1.39: +2 -2 lines
Diff to previous 1.39 (colored)

Use "%p" to print out addresses from xfs_error_report().  This is so addresses
don't get truncated on 64-bit archs.

Revision 1.39 / (download) - annotate - [select for diffs], Wed Mar 5 18:59:24 2003 UTC (14 years, 7 months ago) by sandeen
Branch: MAIN
Changes since 1.38: +1 -8 lines
Diff to previous 1.38 (colored)

Remove #if(n)def __KERNEL__ from xfs_error.c, not needed

Revision 1.38 / (download) - annotate - [select for diffs], Wed Mar 5 18:23:21 2003 UTC (14 years, 7 months ago) by overby
Branch: MAIN
Changes since 1.37: +13 -2 lines
Diff to previous 1.37 (colored)

Add stack trace print to xfs_error_report, warning cleanup
Merge of irix6.5f:irix:136543a by sandeen.

  Merge of grove2-6520stage:irix:136543a by roehrich.
  Merge of grove2:irix:136543a by roehrich.
  fix warnings about xfs_mount

Revision 1.37 / (download) - annotate - [select for diffs], Tue Mar 4 20:15:43 2003 UTC (14 years, 7 months ago) by overby
Branch: MAIN
Changes since 1.36: +72 -0 lines
Diff to previous 1.36 (colored)

Add error reporting calls in error paths that return EFSCORRUPTED
Merge of irix6.5f:irix:136445a by sandeen.

  Merge of grove2-6520stage:irix:136445a by roehrich.
  Merge of grove2:irix:136445a by roehrich.
  Add xfs_error_report and xfs_corruption_error functions.  These are
  called by the XFS_ERROR_REPORT and XFS_CORRUPTION_ERROR macros placed
  in places where there is an error that will result in a filesystem
  shutdown.

Revision 1.36 / (download) - annotate - [select for diffs], Thu Oct 24 20:18:15 2002 UTC (15 years ago) by sandeen
Branch: MAIN
Changes since 1.35: +5 -1 lines
Diff to previous 1.35 (colored)

Implement xfs_panic_mask

Revision 1.35 / (download) - annotate - [select for diffs], Fri Oct 11 19:22:58 2002 UTC (15 years ago) by sandeen
Branch: MAIN
Changes since 1.34: +1 -1 lines
Diff to previous 1.34 (colored)

Clean up xfs' log message printing
Remove extra newline from end of cmn_error messages

Revision 1.34 / (download) - annotate - [select for diffs], Wed Oct 9 03:06:48 2002 UTC (15 years ago) by nathans
Branch: MAIN
Changes since 1.33: +7 -7 lines
Diff to previous 1.33 (colored)

Global search and replace of the b* memory routines to their mem* equivalents.
(bcopy->memcopy, ovbcopy->memmove, bzero->memset, bcmp->memcmp).

Revision 1.33 / (download) - annotate - [select for diffs], Wed Jul 10 19:00:42 2002 UTC (15 years, 3 months ago) by sandeen
Branch: MAIN
Changes since 1.32: +12 -12 lines
Diff to previous 1.32 (colored)

whitespace cleanup

Revision 1.32 / (download) - annotate - [select for diffs], Tue Jun 4 16:30:46 2002 UTC (15 years, 4 months ago) by sandeen
Branch: MAIN
Changes since 1.31: +1 -1 lines
Diff to previous 1.31 (colored)

Update copyright dates

Revision 1.31 / (download) - annotate - [select for diffs], Wed Apr 11 01:44:54 2001 UTC (16 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: Linux-2_4_5-merge
Changes since 1.30: +0 -3 lines
Diff to previous 1.30 (colored)

Get rid of the last compiler warning OFF flags

Revision 1.30 / (download) - annotate - [select for diffs], Wed Feb 21 00:50:22 2001 UTC (16 years, 8 months ago) by mann
Branch: MAIN
CVS Tags: Release-1_0_0, PreRelease-0_10
Changes since 1.29: +0 -1 lines
Diff to previous 1.29 (colored)

This is not were XFS_MOUNT_FS_SHUTDOWN should be set

Revision 1.29 / (download) - annotate - [select for diffs], Thu Jan 4 00:23:09 2001 UTC (16 years, 9 months ago) by mann
Branch: MAIN
Changes since 1.28: +10 -15 lines
Diff to previous 1.28 (colored)

Moved error injection from SYSSGI to an ioctl().

Revision 1.28 / (download) - annotate - [select for diffs], Mon Sep 25 05:42:07 2000 UTC (17 years, 1 month ago) by nathans
Branch: MAIN
Changes since 1.27: +3 -54 lines
Diff to previous 1.27 (colored)

use xfs.h, remove all traces of SIM, push extern declarations into headers,
dead code removal.

Revision 1.27 / (download) - annotate - [select for diffs], Fri Jun 9 06:40:03 2000 UTC (17 years, 4 months ago) by ananth
Branch: MAIN
Changes since 1.26: +2 -1 lines
Diff to previous 1.26 (colored)

Merge of 2.3.99pre2-xfs:slinx:63295a originally by nathans on 06/03/00
  remove all references to stuff from ksa.h and psa.h.

Merge of 2.3.99pre2-xfs:slinx:63413a originally by jtk on 06/06/00
  Squash a handfull of compiler warnings.

Revision 1.26 / (download) - annotate - [select for diffs], Fri Jun 9 03:33:27 2000 UTC (17 years, 4 months ago) by mostek
Branch: MAIN
Changes since 1.25: +1 -1 lines
Diff to previous 1.25 (colored)

Merge of 2.3.99pre2-xfs:slinx:57492a by ananth.

  Change debug() to BUG() for Linux since debug() was recently removed.
  This now allows xfs.o to load as a module.

Revision 1.25 / (download) - annotate - [select for diffs], Fri Jun 9 02:50:02 2000 UTC (17 years, 4 months ago) by kenmcd
Branch: MAIN
CVS Tags: GPL-ENCUMBRANCE
Changes since 1.24: +25 -12 lines
Diff to previous 1.24 (colored)

Updated copyright and license notices, ready for open source release
Merge of 2.3.99pre2-xfs:slinx:55821a by ananth.

Revision 1.24 / (download) - annotate - [select for diffs], Fri Jun 9 02:10:00 2000 UTC (17 years, 4 months ago) by cattelan
Branch: MAIN
CVS Tags: DELETE
Changes since 1.23: +1 -4 lines
Diff to previous 1.23 (colored)

Merge of 2.3.99pre2-xfs:slinx:46541a by ananth.

  Merge of 2.3.42-xfs:slinx:46541a by ananth.
  Header file cleanup
  removed the last of the
  #if defined(__linux__)
  #include <xfs_linux>
  #endif
  All os specific include file switches should now done
  in xfs_os_defs.h

Revision 1.23 / (download) - annotate - [select for diffs], Fri Jun 9 01:50:04 2000 UTC (17 years, 4 months ago) by nathans
Branch: MAIN
Changes since 1.22: +1 -2 lines
Diff to previous 1.22 (colored)

Merge of 2.3.99pre2-xfs:slinx:46428a by ananth.

  Merge of 2.3.42-xfs:slinx:46428a by ananth.
  remove unused include files.

Revision 1.22 / (download) - annotate - [select for diffs], Sun Jan 30 09:59:06 2000 UTC (17 years, 8 months ago) by kenmcd
Branch: MAIN
Changes since 1.21: +19 -1 lines
Diff to previous 1.21 (colored)

Encumbrance review done.
Add copyright and license words consistent with GPL.
Refer to http://fsg.melbourne.sgi.com/reviews/ for details.

There is a slight change in the license terms and conditions words
to go with the copyrights, so most of the files are not getting
new GPL's, just updated versions ... but there are 20-30 more files
here as well.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Nov 17 19:22:23 1999 UTC (17 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.20: +2 -2 lines
Diff to previous 1.20 (colored)

replace struct buf and buf_t references with xfs_buf and xfs_buf_t

Revision 1.20 / (download) - annotate - [select for diffs], Thu Oct 28 10:38:38 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.19: +2 -1 lines
Diff to previous 1.19 (colored)

Description:     Integrate the 'grove' tree CXFS & XVM changes.

Revision 1.19 / (download) - annotate - [select for diffs], Wed Oct 20 22:05:26 1999 UTC (18 years ago) by lord
Branch: MAIN
Changes since 1.18: +2 -1 lines
Diff to previous 1.18 (colored)

Include sys/debug.h so that debug builds work

Revision 1.18 / (download) - annotate - [select for diffs], Wed Aug 18 17:43:46 1999 UTC (18 years, 2 months ago) by cattelan
Branch: MAIN
Changes since 1.17: +6 -1 lines
Diff to previous 1.17 (colored)

First compiling version of mkfs unsing XFS libsim.
Mostly just addtions of cut up irix header files.

Revision 1.17 / (download) - annotate - [select for diffs], Tue May 25 20:01:08 1999 UTC (18 years, 5 months ago) by clk
Branch: MAIN
Changes since 1.16: +2 -1 lines
Diff to previous 1.16 (colored)

xfs_mount.h now references vrwlock_t, so we need
to include <sys/vnode.h>.

Revision 1.16 / (download) - annotate - [select for diffs], Thu Feb 4 01:28:30 1999 UTC (18 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.15: +11 -2 lines
Diff to previous 1.15 (colored)

Change includes for v2 directory support.
Trap EFSCORRUPTED in simulation.

Revision 1.15 / (download) - annotate - [select for diffs], Sat Dec 20 00:57:34 1997 UTC (19 years, 10 months ago) by doucette
Branch: MAIN
Changes since 1.14: +5 -2 lines
Diff to previous 1.14 (colored)

Add randomness to error injections.
pv: 556405
rv: rcc@engr

Revision 1.14 / (download) - annotate - [select for diffs], Fri Dec 19 15:59:39 1997 UTC (19 years, 10 months ago) by doucette
Branch: MAIN
Changes since 1.13: +26 -19 lines
Diff to previous 1.13 (colored)

Clean up xfs_fs_cmn_err and xfs_cmn_err so the latter works
correctly.
pv: 276922 rv: lord@cray.com

Revision 1.13 / (download) - annotate - [select for diffs], Thu Dec 18 16:16:46 1997 UTC (19 years, 10 months ago) by lord
Branch: MAIN
Changes since 1.12: +29 -4 lines
Diff to previous 1.12 (colored)

pv: 515588,276922 rv: rcc@engr
Add mount point parameter to xfs error functions so they can always
print the filesystem name. Add new wrapper for cmn_err which prints
the filesystem name from the mount point.

Revision 1.12 / (download) - annotate - [select for diffs], Sun Oct 26 08:17:39 1997 UTC (20 years ago) by rcc
Branch: MAIN
Changes since 1.11: +177 -2 lines
Diff to previous 1.11 (colored)

515588 - add support for per-filesystem error injection
pv: 515588, rv: lord@cray

Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 25 02:55:05 1997 UTC (20 years, 9 months ago) by sup
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

First cut of XFS I/O error handling changes.

Revision 1.10 / (download) - annotate - [select for diffs], Mon Nov 4 01:04:58 1996 UTC (20 years, 11 months ago) by doucette
Branch: MAIN
Changes since 1.9: +3 -1 lines
Diff to previous 1.9 (colored)

DEBUG kernels will have some chance of knowing what happened.
Partial fix for 375341, needed to debug 440477.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Mar 5 17:28:50 1996 UTC (21 years, 7 months ago) by alexp
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8 (colored)

Add stoplist parameter to debug_stop_all_cpus().

Revision 1.8 / (download) - annotate - [select for diffs], Thu Feb 23 01:26:57 1995 UTC (22 years, 8 months ago) by doucette
Branch: MAIN
Changes since 1.7: +1 -5 lines
Diff to previous 1.7 (colored)

Remove some unused variables, to eliminate warnings.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jul 8 20:59:36 1994 UTC (23 years, 3 months ago) by doucette
Branch: MAIN
Changes since 1.6: +3 -2 lines
Diff to previous 1.6 (colored)

Can't include systm.h in SIM build, it won't compile that way.

Revision 1.6 / (download) - annotate - [select for diffs], Fri Jul 8 00:19:06 1994 UTC (23 years, 3 months ago) by curtis
Branch: MAIN
Changes since 1.5: +3 -1 lines
Diff to previous 1.5 (colored)

debug_stop_all_cpus() only works on an IP19, added a call to debug() for IP22.

Revision 1.5 / (download) - annotate - [select for diffs], Sun Jun 12 21:51:28 1994 UTC (23 years, 4 months ago) by doucette
Branch: MAIN
Changes since 1.4: +4 -24 lines
Diff to previous 1.4 (colored)

Take EINVAL out of the trap error list, too many things are getting it.
Replace the cpu-stopping code with a call to the same routine that
ASSERT uses now.

Revision 1.4 / (download) - annotate - [select for diffs], Fri Apr 29 21:56:14 1994 UTC (23 years, 6 months ago) by tap
Branch: MAIN
Changes since 1.3: +11 -1 lines
Diff to previous 1.3 (colored)

fix xfs_error_trap() so that the cpus on an EVEREST system are able to
continue.

Revision 1.3 / (download) - annotate - [select for diffs], Wed Apr 27 21:39:42 1994 UTC (23 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.2: +1 -1 lines
Diff to previous 1.2 (colored)

Add EINVAL to list of errors to trap on, by default.

Revision 1.2 / (download) - annotate - [select for diffs], Tue Apr 26 01:56:51 1994 UTC (23 years, 6 months ago) by doucette
Branch: MAIN
Changes since 1.1: +3 -1 lines
Diff to previous 1.1 (colored)

Change default trapping error list to "EIO" not "ENOSPC".  ENOSPC
is generated by the directory code internally.

Revision 1.1 / (download) - annotate - [select for diffs], Tue Apr 26 00:38:30 1994 UTC (23 years, 6 months ago) by doucette
Branch: MAIN

Initial revision

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.




FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>