Up to [cvs.netbsd.org] / src / sys / fs / tmpfs
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.2.8.1 / (download) - annotate - [select for diffs], Mon Jun 6 09:09:24 2011 UTC (11 months, 2 weeks ago) by jruoho
Branch: jruoho-x86intr
Changes since 1.2: +18 -17
lines
Diff to previous 1.2 (colored) next main 1.3 (colored)
Sync with HEAD.
Revision 1.2.2.3 / (download) - annotate - [select for diffs], Tue May 31 03:04:59 2011 UTC (11 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2.2.2: +16 -15
lines
Diff to previous 1.2.2.2 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head
Revision 1.4 / (download) - annotate - [select for diffs], Tue May 24 01:09:47 2011 UTC (12 months ago) by rmind
Branch: MAIN
CVS Tags: yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-pagecache,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
netbsd-6-base,
netbsd-6,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
HEAD
Changes since 1.3: +11 -3
lines
Diff to previous 1.3 (colored)
- tmpfs_alloc_node/tmpfs_free_node: move inode limiting into tmpfs_node_get() and tmpfs_node_put(), update outdated/wrong comments and move/add asserts. - tmpfs_mount: check for the version of arguments a bit earlier.
Revision 1.3 / (download) - annotate - [select for diffs], Thu May 19 03:21:23 2011 UTC (12 months, 1 week ago) by rmind
Branch: MAIN
Changes since 1.2: +9 -16
lines
Diff to previous 1.2 (colored)
- tmpfs: do not create dirent/node pools per-mount, there is no need to. - tmpfs_mount: fix a leak of mount structures in error path.
Revision 1.2.6.2 / (download) - annotate - [select for diffs], Tue Aug 17 06:47:22 2010 UTC (21 months, 1 week ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.2.6.1: +220 -0
lines
Diff to previous 1.2.6.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
Sync with HEAD.
Revision 1.2.4.2 / (download) - annotate - [select for diffs], Wed Aug 11 22:54:36 2010 UTC (21 months, 2 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.2.4.1: +220 -0
lines
Diff to previous 1.2.4.1 (colored) to branchpoint 1.2 (colored) next main 1.3 (colored)
sync with head.
Revision 1.2.2.2 / (download) - annotate - [select for diffs], Sat Jul 3 01:19:51 2010 UTC (22 months, 3 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2.2.1: +220 -0
lines
Diff to previous 1.2.2.1 (colored) to branchpoint 1.2 (colored)
sync with head
Revision 1.2.6.1, Mon Jun 28 19:32:43 2010 UTC (22 months, 4 weeks ago) by uebayasi
Branch: uebayasi-xip
Changes since 1.2: +0 -220
lines
FILE REMOVED
file tmpfs_mem.c was added on branch uebayasi-xip on 2010-08-17 06:47:21 +0000
Revision 1.2.4.1, Mon Jun 28 19:32:43 2010 UTC (22 months, 4 weeks ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.2: +0 -220
lines
FILE REMOVED
file tmpfs_mem.c was added on branch yamt-nfs-mp on 2010-08-11 22:54:36 +0000
Revision 1.2.2.1, Mon Jun 28 19:32:43 2010 UTC (22 months, 4 weeks ago) by rmind
Branch: rmind-uvmplock
Changes since 1.2: +0 -220
lines
FILE REMOVED
file tmpfs_mem.c was added on branch rmind-uvmplock on 2010-07-03 01:19:51 +0000
Revision 1.2 / (download) - annotate - [select for diffs], Mon Jun 28 19:32:43 2010 UTC (22 months, 4 weeks ago) by rmind
Branch: MAIN
CVS Tags: yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
matt-mips64-premerge-20101231,
jruoho-x86intr-base,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2
Branch point for: yamt-nfs-mp,
uebayasi-xip,
rmind-uvmplock,
jruoho-x86intr
Changes since 1.1: +5 -4
lines
Diff to previous 1.1 (colored)
tmpfs_bytes_max: use MIN() rather than min(), which returns int. Spotted by Wolfgang Solfrank.
Revision 1.1 / (download) - annotate - [select for diffs], Tue Jun 22 18:32:07 2010 UTC (23 months ago) by rmind
Branch: MAIN
Replace tmpfs_pool custom allocator code with a simpler layer for memory accounting. Use wired memory (which can be limited) for meta-data, and kmem(9) for string allocations. Close PR/31944. Fix PR/38361 while here. OK ad@.