CVS log for xfs-linux/linux-2.4/Attic/mrlock.c

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

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.24 / (download) - annotate - [select for diffs], Thu Sep 27 04:02:18 2007 UTC (10 years ago) by donaldd.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.23: +0 -264 lines
Diff to previous 1.23 (colored)

Remove fs/xfs/linux-2.4 as building for 2.4 kernels is no longer supported from this tree
Merge of xfs-linux-melb:xfs-kern:29785a by kenmcd.

Revision 1.23 / (download) - annotate - [select for diffs], Wed Dec 13 02:57:01 2006 UTC (10 years, 10 months ago) by lachlan.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

mraccessf & mrupdatef are supposed to be the "flags" versions of
the functions, but they

a) ignore the flags parameter completely, and
b) are never called directly, only via the flag-less defines anyway

So, drop the #define indirection, and rename mraccessf to mraccess,
etc.
Merge of xfs-linux-melb:xfs-kern:27711a by kenmcd.

  remove flag-less mraccessf/mrupdatef

Revision 1.22 / (download) - annotate - [select for diffs], Thu Nov 30 14:40:05 2006 UTC (10 years, 10 months ago) by dgc.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.21: +1 -1 lines
Diff to previous 1.21 (colored)

Keep stack usage down for 4k stacks by using noinline.

gcc-4.1 and more recent aggressively inline static functions which
increases XFS stack usage by ~15% in critical paths. Prevent
this from occurring by adding noinline to the STATIC definition.

Also uninline some functions that are too large to be inlined and
were causing problems with CONFIG_FORCED_INLINING=y.

Finally, clean up all the different users of inline, __inline and
__inline__ and put them under one STATIC_INLINE macro. For debug
kernels the STATIC_INLINE macro uninlines those functions.
Merge of xfs-linux-melb:xfs-kern:27585a by kenmcd.

  noinline static function declaration cleanup.

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

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

Revision 1.20 / (download) - annotate - [select for diffs], Fri Feb 20 22:16:37 2004 UTC (13 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.19: +6 -3 lines
Diff to previous 1.19 (colored)

Implement mrlocks on top  of rwsems, conditionally for 2.4 (need downgrade_write backport)

Revision 1.19 / (download) - annotate - [select for diffs], Fri Feb 6 04:20:02 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.18: +276 -0 lines
Diff to previous 1.18 (colored)

Second step in Russells ptools renaming recipe - rename old source over the top of the new ones.
support/mrlock.c 1.17 Renamed to linux-2.4/mrlock.c

Revision 1.18 / (download) - annotate - [select for diffs], Fri Feb 6 04:08:39 2004 UTC (13 years, 8 months ago) by nathans
Branch: MAIN
Changes since 1.17: +0 -276 lines
Diff to previous 1.17 (colored)

First step in Russells ptools renaming recipe - remove imported sources.

Revision 1.17 / (download) - annotate - [select for diffs], Tue Dec 30 01:31:52 2003 UTC (13 years, 9 months ago) by cattelan
Branch: MAIN
Changes since 1.16: +4 -2 lines
Diff to previous 1.16 (colored)

Final bit of code moving to unify the tree
rename page_buf.c/h to xfs_buf.c/h and merge in upper level xfs_buf.h
Fix to compile on both 2.4/2.6

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

The Big Move
linux/fs/xfs/support/mrlock.c 1.14 Renamed to support/mrlock.c

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

Nuke

Revision 1.14 / (download) - annotate - [select for diffs], Tue Apr 15 23:16:46 2003 UTC (14 years, 6 months ago) by cattelan
Branch: MAIN
CVS Tags: XFS-1_3_0pre1
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored)

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

Revision 1.13 / (download) - annotate - [select for diffs], Tue Mar 18 00:39:31 2003 UTC (14 years, 7 months ago) by nathans
Branch: MAIN
Changes since 1.12: +1 -13 lines
Diff to previous 1.12 (colored)

Cleanup/remove a bunch of macros, comments and code.
Turn a couple of routines into macros rather than routines.

Revision 1.12 / (download) - annotate - [select for diffs], Fri Nov 15 21:07:34 2002 UTC (14 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.11: +1 -1 lines
Diff to previous 1.11 (colored)

go back to using macros to set task state

Revision 1.11 / (download) - annotate - [select for diffs], Wed Nov 13 03:27:39 2002 UTC (14 years, 11 months ago) by lord
Branch: MAIN
Changes since 1.10: +1 -3 lines
Diff to previous 1.10 (colored)

No need to set task state back to TASK_RUNNING after returning
from schedule()
remove set_current_state(TASK_RUNNING);

Revision 1.10 / (download) - annotate - [select for diffs], Fri Jul 19 16:38:08 2002 UTC (15 years, 3 months ago) by sandeen
Branch: MAIN
Changes since 1.9: +0 -2 lines
Diff to previous 1.9 (colored)

move Atomic_spin from mrlock.c to xfs_globals.c

Revision 1.9 / (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.8: +15 -15 lines
Diff to previous 1.8 (colored)

whitespace cleanup

Revision 1.8 / (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.7: +1 -1 lines
Diff to previous 1.7 (colored)

Update copyright dates

Revision 1.7 / (download) - annotate - [select for diffs], Thu May 23 18:57:09 2002 UTC (15 years, 4 months ago) by lord
Branch: MAIN
Changes since 1.6: +18 -30 lines
Diff to previous 1.6 (colored)

remove irq handling

Revision 1.6 / (download) - annotate - [select for diffs], Tue May 21 04:27:18 2002 UTC (15 years, 5 months ago) by nathans
Branch: MAIN
Changes since 1.5: +302 -0 lines
Diff to previous 1.5 (colored)

linux/fs/xfs_support/mrlock.c 1.5 Renamed to linux/fs/xfs/support/mrlock.c
changes to fold xfs_support code back into XFS (the other sgi projects
using this will be / have been fixed).  reduces our footprint on the
base kernel.  NB: xfs_support.o as a distinct module no longer exists.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Mar 14 06:04:19 2001 UTC (16 years, 7 months ago) by kaos
Branch: MAIN
Changes since 1.4: +0 -323 lines
Diff to previous 1.4 (colored)

linux/fs/xfs/support/mrlock.c 1.4 Renamed to linux/fs/xfs_support/mrlock.c

Revision 1.4 / (download) - annotate - [select for diffs], Thu Feb 1 17:10:24 2001 UTC (16 years, 8 months ago) by lord
Branch: MAIN
Changes since 1.3: +6 -8 lines
Diff to previous 1.3 (colored)

Merge XFS tree upto 2.4.1

Revision 1.3 / (download) - annotate - [select for diffs], Sat Nov 25 08:05:45 2000 UTC (16 years, 10 months ago) by cattelan
Branch: MAIN
Changes since 1.2: +4 -0 lines
Diff to previous 1.2 (colored)

Moved to test11

Revision 1.2 / (download) - annotate - [select for diffs], Tue Nov 14 20:15:49 2000 UTC (16 years, 11 months ago) by dxm
Branch: MAIN
Changes since 1.1: +1 -0 lines
Diff to previous 1.1 (colored)

fix modular SMP build

Revision 1.1 / (download) - annotate - [select for diffs], Tue Nov 14 02:57:58 2000 UTC (16 years, 11 months ago) by dxm
Branch: MAIN

Split XFS support code into xfs_support module

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>