* Building Reiser4 - Symbol problem
@ 2005-10-07 23:48 Steve Jacobson
2005-10-08 0:36 ` michael chang
0 siblings, 1 reply; 5+ messages in thread
From: Steve Jacobson @ 2005-10-07 23:48 UTC (permalink / raw)
To: reiserfs-list
[-- Attachment #1: Type: text/plain, Size: 1287 bytes --]
I'm having a problem loading Reiser4 on my centOS4 box. The following
message shows up in the system logs when I run "modprobe reiser4":
reiser4: Unknown symbol find_get_pages_tag
My build, etc... process is:
1) Start with clean install of centOS 4.1 x86_64 version
2) Install kernel sources from centOS distro
3) Patch sources:
a) in /usr/src/linux-2.6.9-11.EL
b) run: patch -p0 < reiser4-for-2.6.9-4
NOTE - is this my complete problem right here? Are the differences
between 2.6.9-11 and 2.6.9-4 significant enough to account for this?
4) make menuconfig - enabling reiser4 as a module
5) make
6) make binrpm-pkg
7) Install the resultant RPM
8) run mkinitrd /boot/initrd-2.6.9-11.ELcustom.img 2.6.9011.ELcustom
9) Update grub.conf:
title CentOS-4 x86_64 Resier (2.6.9-11.ELcustom)
root (hd0,0)
kernel /vmlinuz-2.6.9-11.ELcustom ro root=LABEL=/1
initrd /initrd-2.6.9-11.ELcustom.img
10) reboot, and select the custom kernel
11) Run mkfs.reiser4
12) run modprobe reiser4, or just try to mount the new file system
Any thoughts? Has anyone had any success using Resier4 on centOS 4.1?
If so, did you follow this process, or another?
thanks!
-Steve J
--
Steve Jacobson
Support Manager
SourceLabs, Inc.
steve@sourcelabs.com
(206) 322-0099 x110
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: Building Reiser4 - Symbol problem 2005-10-07 23:48 Building Reiser4 - Symbol problem Steve Jacobson @ 2005-10-08 0:36 ` michael chang [not found] ` <434AB282.3010408@sourcelabs.com> 0 siblings, 1 reply; 5+ messages in thread From: michael chang @ 2005-10-08 0:36 UTC (permalink / raw) To: Steve Jacobson; +Cc: reiserfs-list On 10/7/05, Steve Jacobson <steve@sourcelabs.com> wrote: > 1) Start with clean install of centOS 4.1 x86_64 version > 2) Install kernel sources from centOS distro > 3) Patch sources: > a) in /usr/src/linux-2.6.9-11.EL > b) run: patch -p0 < reiser4-for-2.6.9-4 > NOTE - is this my complete problem right here? Are the differences > between 2.6.9-11 and 2.6.9-4 significant enough to account for this? In theory, they shouldn't be... but are all the hunks applying correctly? If any fail, they must be applied by hand, or something breaks. > 4) make menuconfig - enabling reiser4 as a module What happens when done builtin? Also, do you have something like 4k stacks built in that weren't supported in the 2.6.9 patch? > 5) make > 6) make binrpm-pkg > 7) Install the resultant RPM > 8) run mkinitrd /boot/initrd-2.6.9-11.ELcustom.img 2.6.9011.ELcustom > 9) Update grub.conf: > title CentOS-4 x86_64 Resier (2.6.9-11.ELcustom) > root (hd0,0) > kernel /vmlinuz-2.6.9-11.ELcustom ro root=LABEL=/1 > initrd /initrd-2.6.9-11.ELcustom.img > 10) reboot, and select the custom kernel > 11) Run mkfs.reiser4 Where the heck does this come from? I didn't see you install any resier4 tools. What version of resier4 tools are you using? > 12) run modprobe reiser4, or just try to mount the new file system -- ~Mike - Just my two cents - No man is an island, and no man is unable. ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <434AB282.3010408@sourcelabs.com>]
* Re: Building Reiser4 - Symbol problem [not found] ` <434AB282.3010408@sourcelabs.com> @ 2005-10-10 18:32 ` Steve Jacobson 2005-10-10 19:14 ` Steve Jacobson 2005-10-10 19:02 ` michael chang 1 sibling, 1 reply; 5+ messages in thread From: Steve Jacobson @ 2005-10-10 18:32 UTC (permalink / raw) Cc: michael chang, reiserfs-list [-- Attachment #1.1: Type: text/plain, Size: 2749 bytes --] Re-sending with output file renamed to patch.out.txt - the mailing list processor didn't like having a .out file attached... -steve j Steve Jacobson Support Manager SourceLabs, Inc. steve@sourcelabs.com (206) 322-0099 x110 Steve Jacobson wrote: > > Thanks Mike, > > I hadn't captured the patch output originally, so I cleaned up, and > re-installed the source and re-patched. The output is attached here > as patch.out, but a cursory read-through says every patch applied OK. > > Other answers to your questions are in-line. > > Thanks! > > -steve j > >Steve Jacobson >Support Manager >SourceLabs, Inc. >steve@sourcelabs.com >(206) 322-0099 x110 > > > > > michael chang wrote: > >>On 10/7/05, Steve Jacobson <steve@sourcelabs.com> wrote: >> >> >>>1) Start with clean install of centOS 4.1 x86_64 version >>>2) Install kernel sources from centOS distro >>>3) Patch sources: >>> a) in /usr/src/linux-2.6.9-11.EL >>> b) run: patch -p0 < reiser4-for-2.6.9-4 >>>NOTE - is this my complete problem right here? Are the differences >>>between 2.6.9-11 and 2.6.9-4 significant enough to account for this? >>> >>> >> >>In theory, they shouldn't be... but are all the hunks applying >>correctly? If any fail, they must be applied by hand, or something >>breaks. >> >> > None of the patches appeared to fail. See the attached patch.out file. > >> >> >>>4) make menuconfig - enabling reiser4 as a module >>> >>> >> >>What happens when done builtin? Also, do you have something like 4k >>stacks built in that weren't supported in the 2.6.9 patch? >> >> > > I'm not sure. The only option I touched in the config that wasn't a > default was to make sure that the reiser4 module was being built, and > that it was a module. > >> >> >>>5) make >>>6) make binrpm-pkg >>>7) Install the resultant RPM >>>8) run mkinitrd /boot/initrd-2.6.9-11.ELcustom.img 2.6.9011.ELcustom >>>9) Update grub.conf: >>> title CentOS-4 x86_64 Resier (2.6.9-11.ELcustom) >>> root (hd0,0) >>> kernel /vmlinuz-2.6.9-11.ELcustom ro root=LABEL=/1 >>> initrd /initrd-2.6.9-11.ELcustom.img >>>10) reboot, and select the custom kernel >>>11) Run mkfs.reiser4 >>> >>> >> >>Where the heck does this come from? I didn't see you install any resier4 tools. >> >>What version of resier4 tools are you using? >> >> >> > You're right - I skipped a couple of steps that I went through here. > I'm running reiser4progs-1.0.5, and libaal-1.0.5. I configured and > built and installed each of these with no errors. The mkfs.reiser4 > also ran with no errors. > >>>12) run modprobe reiser4, or just try to mount the new file system >>> >>> >> >>-- >>~Mike >> - Just my two cents >> - No man is an island, and no man is unable. >> >> [-- Attachment #1.2: Type: text/html, Size: 4305 bytes --] [-- Attachment #2: patch.out.txt --] [-- Type: text/plain, Size: 9047 bytes --] patching file fs/fs-writeback.c Hunk #2 succeeded at 379 (offset 1 line). patching file include/linux/fs.h Hunk #2 succeeded at 976 (offset 1 line). Hunk #3 succeeded at 1378 (offset -1 lines). patching file fs/inode.c patching file include/linux/mm.h Hunk #1 succeeded at 716 (offset 10 lines). patching file mm/truncate.c Hunk #2 succeeded at 100 (offset 6 lines). Hunk #4 succeeded at 136 (offset 6 lines). Hunk #6 succeeded at 207 (offset 6 lines). patching file mm/filemap.c Hunk #3 succeeded at 349 (offset -1 lines). patching file mm/readahead.c patching file mm/vmscan.c Hunk #1 succeeded at 477 (offset 10 lines). Hunk #2 succeeded at 1153 (offset 24 lines). patching file include/linux/rcupdate.h patching file kernel/rcupdate.c patching file mm/swap.c patching file lib/radix-tree.c patching file include/linux/radix-tree.h patching file include/linux/gfp.h patching file include/linux/init_task.h patching file include/linux/sched.h Hunk #1 succeeded at 600 (offset 16 lines). patching file kernel/fork.c patching file mm/page_alloc.c Hunk #1 succeeded at 533 (offset 1 line). patching file fs/Kconfig patching file fs/Kconfig.reiser4 patching file fs/Makefile patching file Documentation/Changes patching file Documentation/filesystems/reiser4.txt patching file fs/reiser4/Makefile patching file fs/reiser4/README patching file fs/reiser4/as_ops.c patching file fs/reiser4/block_alloc.c patching file fs/reiser4/block_alloc.h patching file fs/reiser4/blocknrset.c patching file fs/reiser4/carry.c patching file fs/reiser4/carry.h patching file fs/reiser4/carry_ops.c patching file fs/reiser4/carry_ops.h patching file fs/reiser4/cluster.c patching file fs/reiser4/cluster.h patching file fs/reiser4/context.c patching file fs/reiser4/context.h patching file fs/reiser4/coord.c patching file fs/reiser4/coord.h patching file fs/reiser4/crypt.c patching file fs/reiser4/debug.c patching file fs/reiser4/debug.h patching file fs/reiser4/dformat.h patching file fs/reiser4/diskmap.c patching file fs/reiser4/diskmap.h patching file fs/reiser4/doc/directory-service patching file fs/reiser4/doc/lock-ordering patching file fs/reiser4/doc/lock-ordering.dot patching file fs/reiser4/doc/metadata-in-pagecache patching file fs/reiser4/doc/oid-locid patching file fs/reiser4/doc/page-cache-for-formatted-nodes patching file fs/reiser4/doc/plugin.inheritance patching file fs/reiser4/doc/readdir-problems-and-implementations patching file fs/reiser4/doc/reiser4.writeback.overview patching file fs/reiser4/doc/set-theoretic-stuff.tex patching file fs/reiser4/doc/sys-reiser4-implemenation-overview patching file fs/reiser4/dscale.c patching file fs/reiser4/dscale.h patching file fs/reiser4/emergency_flush.c patching file fs/reiser4/emergency_flush.h patching file fs/reiser4/entd.c patching file fs/reiser4/entd.h patching file fs/reiser4/eottl.c patching file fs/reiser4/estimate.c patching file fs/reiser4/file_ops.c patching file fs/reiser4/flush.c patching file fs/reiser4/flush.h patching file fs/reiser4/flush_queue.c patching file fs/reiser4/forward.h patching file fs/reiser4/init_super.c patching file fs/reiser4/init_super.h patching file fs/reiser4/inode.c patching file fs/reiser4/inode.h patching file fs/reiser4/inode_ops.c patching file fs/reiser4/ioctl.h patching file fs/reiser4/jnode.c patching file fs/reiser4/jnode.h patching file fs/reiser4/kassign.c patching file fs/reiser4/kassign.h patching file fs/reiser4/kattr.c patching file fs/reiser4/kattr.h patching file fs/reiser4/kcond.c patching file fs/reiser4/kcond.h patching file fs/reiser4/key.c patching file fs/reiser4/key.h patching file fs/reiser4/ktxnmgrd.c patching file fs/reiser4/ktxnmgrd.h patching file fs/reiser4/lib.h patching file fs/reiser4/lnode.c patching file fs/reiser4/lnode.h patching file fs/reiser4/lock.c patching file fs/reiser4/lock.h patching file fs/reiser4/log.c patching file fs/reiser4/log.h patching file fs/reiser4/oid.c patching file fs/reiser4/page_cache.c patching file fs/reiser4/page_cache.h patching file fs/reiser4/plugin/compress/compress.c patching file fs/reiser4/plugin/compress/compress.h patching file fs/reiser4/plugin/compress/lzoconf.h patching file fs/reiser4/plugin/compress/minilzo.c patching file fs/reiser4/plugin/compress/minilzo.h patching file fs/reiser4/plugin/cryptcompress.c patching file fs/reiser4/plugin/cryptcompress.h patching file fs/reiser4/plugin/digest.c patching file fs/reiser4/plugin/dir/dir.c patching file fs/reiser4/plugin/dir/dir.h patching file fs/reiser4/plugin/dir/hashed_dir.c patching file fs/reiser4/plugin/dir/hashed_dir.h patching file fs/reiser4/plugin/dir/pseudo_dir.c patching file fs/reiser4/plugin/dir/pseudo_dir.h patching file fs/reiser4/plugin/disk_format/disk_format.c patching file fs/reiser4/plugin/disk_format/disk_format.h patching file fs/reiser4/plugin/disk_format/disk_format40.c patching file fs/reiser4/plugin/disk_format/disk_format40.h patching file fs/reiser4/plugin/fibration.c patching file fs/reiser4/plugin/fibration.h patching file fs/reiser4/plugin/file/file.c patching file fs/reiser4/plugin/file/file.h patching file fs/reiser4/plugin/file/funcs.h patching file fs/reiser4/plugin/file/invert.c patching file fs/reiser4/plugin/file/pseudo.c patching file fs/reiser4/plugin/file/pseudo.h patching file fs/reiser4/plugin/file/symfile.c patching file fs/reiser4/plugin/file/tail_conversion.c patching file fs/reiser4/plugin/flush/flush.alg patching file fs/reiser4/plugin/hash.c patching file fs/reiser4/plugin/item/acl.h patching file fs/reiser4/plugin/item/blackbox.c patching file fs/reiser4/plugin/item/blackbox.h patching file fs/reiser4/plugin/item/cde.c patching file fs/reiser4/plugin/item/cde.h patching file fs/reiser4/plugin/item/ctail.c patching file fs/reiser4/plugin/item/ctail.h patching file fs/reiser4/plugin/item/extent.c patching file fs/reiser4/plugin/item/extent.h patching file fs/reiser4/plugin/item/extent_file_ops.c patching file fs/reiser4/plugin/item/extent_flush_ops.c patching file fs/reiser4/plugin/item/extent_item_ops.c patching file fs/reiser4/plugin/item/extent_repack_ops.c patching file fs/reiser4/plugin/item/internal.c patching file fs/reiser4/plugin/item/internal.h patching file fs/reiser4/plugin/item/item.c patching file fs/reiser4/plugin/item/item.h patching file fs/reiser4/plugin/item/sde.c patching file fs/reiser4/plugin/item/sde.h patching file fs/reiser4/plugin/item/static_stat.c patching file fs/reiser4/plugin/item/static_stat.h patching file fs/reiser4/plugin/item/tail.c patching file fs/reiser4/plugin/item/tail.h patching file fs/reiser4/plugin/node/node.c patching file fs/reiser4/plugin/node/node.h patching file fs/reiser4/plugin/node/node40.c patching file fs/reiser4/plugin/node/node40.h patching file fs/reiser4/plugin/object.c patching file fs/reiser4/plugin/object.h patching file fs/reiser4/plugin/plugin.c patching file fs/reiser4/plugin/plugin.h patching file fs/reiser4/plugin/plugin_header.h patching file fs/reiser4/plugin/plugin_set.c patching file fs/reiser4/plugin/plugin_set.h patching file fs/reiser4/plugin/pseudo/pseudo.c patching file fs/reiser4/plugin/pseudo/pseudo.h patching file fs/reiser4/plugin/security/perm.c patching file fs/reiser4/plugin/security/perm.h patching file fs/reiser4/plugin/space/bitmap.c patching file fs/reiser4/plugin/space/bitmap.h patching file fs/reiser4/plugin/space/space_allocator.h patching file fs/reiser4/plugin/symlink.c patching file fs/reiser4/plugin/symlink.h patching file fs/reiser4/plugin/tail_policy.c patching file fs/reiser4/pool.c patching file fs/reiser4/pool.h patching file fs/reiser4/prof.c patching file fs/reiser4/prof.h patching file fs/reiser4/readahead.c patching file fs/reiser4/readahead.h patching file fs/reiser4/reiser4.h patching file fs/reiser4/repacker.c patching file fs/reiser4/repacker.h patching file fs/reiser4/safe_link.c patching file fs/reiser4/safe_link.h patching file fs/reiser4/seal.c patching file fs/reiser4/seal.h patching file fs/reiser4/search.c patching file fs/reiser4/spin_macros.h patching file fs/reiser4/spinprof.c patching file fs/reiser4/spinprof.h patching file fs/reiser4/statcnt.h patching file fs/reiser4/stats.c patching file fs/reiser4/stats.h patching file fs/reiser4/status_flags.c patching file fs/reiser4/status_flags.h patching file fs/reiser4/super.c patching file fs/reiser4/super.h patching file fs/reiser4/tap.c patching file fs/reiser4/tap.h patching file fs/reiser4/tree.c patching file fs/reiser4/tree.h patching file fs/reiser4/tree_mod.c patching file fs/reiser4/tree_mod.h patching file fs/reiser4/tree_walk.c patching file fs/reiser4/tree_walk.h patching file fs/reiser4/txnmgr.c patching file fs/reiser4/txnmgr.h patching file fs/reiser4/type_safe_hash.h patching file fs/reiser4/type_safe_list.h patching file fs/reiser4/vfs_ops.c patching file fs/reiser4/vfs_ops.h patching file fs/reiser4/wander.c patching file fs/reiser4/wander.h patching file fs/reiser4/writeout.h patching file fs/reiser4/znode.c patching file fs/reiser4/znode.h patching file fs/reiserfs/inode.c ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Building Reiser4 - Symbol problem 2005-10-10 18:32 ` Steve Jacobson @ 2005-10-10 19:14 ` Steve Jacobson 0 siblings, 0 replies; 5+ messages in thread From: Steve Jacobson @ 2005-10-10 19:14 UTC (permalink / raw) To: Steve Jacobson; +Cc: michael chang, reiserfs-list [-- Attachment #1.1: Type: text/plain, Size: 12699 bytes --] Thanks all, I got this part resolved thanks to: http://www.michael-prokop.at/blog/?p=284 . Apparently there's a missing EXPORT_SYMBOL in mm/filemap.c. Is there an open bug for this? Should there be? I'll poke around. Meanwhile, I'm having some trouble mounting the filesystem, but that's for another message, if I can't figure it out myself. -steve j Steve Jacobson Support Manager SourceLabs, Inc. steve@sourcelabs.com (206) 322-0099 x110 Steve Jacobson wrote: > Re-sending with output file renamed to patch.out.txt - the mailing > list processor didn't like having a .out file attached... > > -steve j > >Steve Jacobson >Support Manager >SourceLabs, Inc. >steve@sourcelabs.com >(206) 322-0099 x110 > > > > > Steve Jacobson wrote: > >> >> Thanks Mike, >> >> I hadn't captured the patch output originally, so I cleaned up, and >> re-installed the source and re-patched. The output is attached here >> as patch.out, but a cursory read-through says every patch applied OK. >> >> Other answers to your questions are in-line. >> >> Thanks! >> >> -steve j >> >>Steve Jacobson >>Support Manager >>SourceLabs, Inc. >>steve@sourcelabs.com >>(206) 322-0099 x110 >> >> >> >> >> michael chang wrote: >> >>>On 10/7/05, Steve Jacobson <steve@sourcelabs.com> wrote: >>> >>> >>>>1) Start with clean install of centOS 4.1 x86_64 version >>>>2) Install kernel sources from centOS distro >>>>3) Patch sources: >>>> a) in /usr/src/linux-2.6.9-11.EL >>>> b) run: patch -p0 < reiser4-for-2.6.9-4 >>>>NOTE - is this my complete problem right here? Are the differences >>>>between 2.6.9-11 and 2.6.9-4 significant enough to account for this? >>>> >>>> >>> >>>In theory, they shouldn't be... but are all the hunks applying >>>correctly? If any fail, they must be applied by hand, or something >>>breaks. >>> >>> >> None of the patches appeared to fail. See the attached patch.out file. >> >>> >>> >>>>4) make menuconfig - enabling reiser4 as a module >>>> >>>> >>> >>>What happens when done builtin? Also, do you have something like 4k >>>stacks built in that weren't supported in the 2.6.9 patch? >>> >>> >> >> I'm not sure. The only option I touched in the config that wasn't a >> default was to make sure that the reiser4 module was being built, and >> that it was a module. >> >>> >>> >>>>5) make >>>>6) make binrpm-pkg >>>>7) Install the resultant RPM >>>>8) run mkinitrd /boot/initrd-2.6.9-11.ELcustom.img 2.6.9011.ELcustom >>>>9) Update grub.conf: >>>> title CentOS-4 x86_64 Resier (2.6.9-11.ELcustom) >>>> root (hd0,0) >>>> kernel /vmlinuz-2.6.9-11.ELcustom ro root=LABEL=/1 >>>> initrd /initrd-2.6.9-11.ELcustom.img >>>>10) reboot, and select the custom kernel >>>>11) Run mkfs.reiser4 >>>> >>>> >>> >>>Where the heck does this come from? I didn't see you install any resier4 tools. >>> >>>What version of resier4 tools are you using? >>> >>> >>> >> You're right - I skipped a couple of steps that I went through here. >> I'm running reiser4progs-1.0.5, and libaal-1.0.5. I configured and >> built and installed each of these with no errors. The mkfs.reiser4 >> also ran with no errors. >> >>>>12) run modprobe reiser4, or just try to mount the new file system >>>> >>>> >>> >>>-- >>>~Mike >>> - Just my two cents >>> - No man is an island, and no man is unable. >>> >>> >------------------------------------------------------------------------ > >patching file fs/fs-writeback.c >Hunk #2 succeeded at 379 (offset 1 line). >patching file include/linux/fs.h >Hunk #2 succeeded at 976 (offset 1 line). >Hunk #3 succeeded at 1378 (offset -1 lines). >patching file fs/inode.c >patching file include/linux/mm.h >Hunk #1 succeeded at 716 (offset 10 lines). >patching file mm/truncate.c >Hunk #2 succeeded at 100 (offset 6 lines). >Hunk #4 succeeded at 136 (offset 6 lines). >Hunk #6 succeeded at 207 (offset 6 lines). >patching file mm/filemap.c >Hunk #3 succeeded at 349 (offset -1 lines). >patching file mm/readahead.c >patching file mm/vmscan.c >Hunk #1 succeeded at 477 (offset 10 lines). >Hunk #2 succeeded at 1153 (offset 24 lines). >patching file include/linux/rcupdate.h >patching file kernel/rcupdate.c >patching file mm/swap.c >patching file lib/radix-tree.c >patching file include/linux/radix-tree.h >patching file include/linux/gfp.h >patching file include/linux/init_task.h >patching file include/linux/sched.h >Hunk #1 succeeded at 600 (offset 16 lines). >patching file kernel/fork.c >patching file mm/page_alloc.c >Hunk #1 succeeded at 533 (offset 1 line). >patching file fs/Kconfig >patching file fs/Kconfig.reiser4 >patching file fs/Makefile >patching file Documentation/Changes >patching file Documentation/filesystems/reiser4.txt >patching file fs/reiser4/Makefile >patching file fs/reiser4/README >patching file fs/reiser4/as_ops.c >patching file fs/reiser4/block_alloc.c >patching file fs/reiser4/block_alloc.h >patching file fs/reiser4/blocknrset.c >patching file fs/reiser4/carry.c >patching file fs/reiser4/carry.h >patching file fs/reiser4/carry_ops.c >patching file fs/reiser4/carry_ops.h >patching file fs/reiser4/cluster.c >patching file fs/reiser4/cluster.h >patching file fs/reiser4/context.c >patching file fs/reiser4/context.h >patching file fs/reiser4/coord.c >patching file fs/reiser4/coord.h >patching file fs/reiser4/crypt.c >patching file fs/reiser4/debug.c >patching file fs/reiser4/debug.h >patching file fs/reiser4/dformat.h >patching file fs/reiser4/diskmap.c >patching file fs/reiser4/diskmap.h >patching file fs/reiser4/doc/directory-service >patching file fs/reiser4/doc/lock-ordering >patching file fs/reiser4/doc/lock-ordering.dot >patching file fs/reiser4/doc/metadata-in-pagecache >patching file fs/reiser4/doc/oid-locid >patching file fs/reiser4/doc/page-cache-for-formatted-nodes >patching file fs/reiser4/doc/plugin.inheritance >patching file fs/reiser4/doc/readdir-problems-and-implementations >patching file fs/reiser4/doc/reiser4.writeback.overview >patching file fs/reiser4/doc/set-theoretic-stuff.tex >patching file fs/reiser4/doc/sys-reiser4-implemenation-overview >patching file fs/reiser4/dscale.c >patching file fs/reiser4/dscale.h >patching file fs/reiser4/emergency_flush.c >patching file fs/reiser4/emergency_flush.h >patching file fs/reiser4/entd.c >patching file fs/reiser4/entd.h >patching file fs/reiser4/eottl.c >patching file fs/reiser4/estimate.c >patching file fs/reiser4/file_ops.c >patching file fs/reiser4/flush.c >patching file fs/reiser4/flush.h >patching file fs/reiser4/flush_queue.c >patching file fs/reiser4/forward.h >patching file fs/reiser4/init_super.c >patching file fs/reiser4/init_super.h >patching file fs/reiser4/inode.c >patching file fs/reiser4/inode.h >patching file fs/reiser4/inode_ops.c >patching file fs/reiser4/ioctl.h >patching file fs/reiser4/jnode.c >patching file fs/reiser4/jnode.h >patching file fs/reiser4/kassign.c >patching file fs/reiser4/kassign.h >patching file fs/reiser4/kattr.c >patching file fs/reiser4/kattr.h >patching file fs/reiser4/kcond.c >patching file fs/reiser4/kcond.h >patching file fs/reiser4/key.c >patching file fs/reiser4/key.h >patching file fs/reiser4/ktxnmgrd.c >patching file fs/reiser4/ktxnmgrd.h >patching file fs/reiser4/lib.h >patching file fs/reiser4/lnode.c >patching file fs/reiser4/lnode.h >patching file fs/reiser4/lock.c >patching file fs/reiser4/lock.h >patching file fs/reiser4/log.c >patching file fs/reiser4/log.h >patching file fs/reiser4/oid.c >patching file fs/reiser4/page_cache.c >patching file fs/reiser4/page_cache.h >patching file fs/reiser4/plugin/compress/compress.c >patching file fs/reiser4/plugin/compress/compress.h >patching file fs/reiser4/plugin/compress/lzoconf.h >patching file fs/reiser4/plugin/compress/minilzo.c >patching file fs/reiser4/plugin/compress/minilzo.h >patching file fs/reiser4/plugin/cryptcompress.c >patching file fs/reiser4/plugin/cryptcompress.h >patching file fs/reiser4/plugin/digest.c >patching file fs/reiser4/plugin/dir/dir.c >patching file fs/reiser4/plugin/dir/dir.h >patching file fs/reiser4/plugin/dir/hashed_dir.c >patching file fs/reiser4/plugin/dir/hashed_dir.h >patching file fs/reiser4/plugin/dir/pseudo_dir.c >patching file fs/reiser4/plugin/dir/pseudo_dir.h >patching file fs/reiser4/plugin/disk_format/disk_format.c >patching file fs/reiser4/plugin/disk_format/disk_format.h >patching file fs/reiser4/plugin/disk_format/disk_format40.c >patching file fs/reiser4/plugin/disk_format/disk_format40.h >patching file fs/reiser4/plugin/fibration.c >patching file fs/reiser4/plugin/fibration.h >patching file fs/reiser4/plugin/file/file.c >patching file fs/reiser4/plugin/file/file.h >patching file fs/reiser4/plugin/file/funcs.h >patching file fs/reiser4/plugin/file/invert.c >patching file fs/reiser4/plugin/file/pseudo.c >patching file fs/reiser4/plugin/file/pseudo.h >patching file fs/reiser4/plugin/file/symfile.c >patching file fs/reiser4/plugin/file/tail_conversion.c >patching file fs/reiser4/plugin/flush/flush.alg >patching file fs/reiser4/plugin/hash.c >patching file fs/reiser4/plugin/item/acl.h >patching file fs/reiser4/plugin/item/blackbox.c >patching file fs/reiser4/plugin/item/blackbox.h >patching file fs/reiser4/plugin/item/cde.c >patching file fs/reiser4/plugin/item/cde.h >patching file fs/reiser4/plugin/item/ctail.c >patching file fs/reiser4/plugin/item/ctail.h >patching file fs/reiser4/plugin/item/extent.c >patching file fs/reiser4/plugin/item/extent.h >patching file fs/reiser4/plugin/item/extent_file_ops.c >patching file fs/reiser4/plugin/item/extent_flush_ops.c >patching file fs/reiser4/plugin/item/extent_item_ops.c >patching file fs/reiser4/plugin/item/extent_repack_ops.c >patching file fs/reiser4/plugin/item/internal.c >patching file fs/reiser4/plugin/item/internal.h >patching file fs/reiser4/plugin/item/item.c >patching file fs/reiser4/plugin/item/item.h >patching file fs/reiser4/plugin/item/sde.c >patching file fs/reiser4/plugin/item/sde.h >patching file fs/reiser4/plugin/item/static_stat.c >patching file fs/reiser4/plugin/item/static_stat.h >patching file fs/reiser4/plugin/item/tail.c >patching file fs/reiser4/plugin/item/tail.h >patching file fs/reiser4/plugin/node/node.c >patching file fs/reiser4/plugin/node/node.h >patching file fs/reiser4/plugin/node/node40.c >patching file fs/reiser4/plugin/node/node40.h >patching file fs/reiser4/plugin/object.c >patching file fs/reiser4/plugin/object.h >patching file fs/reiser4/plugin/plugin.c >patching file fs/reiser4/plugin/plugin.h >patching file fs/reiser4/plugin/plugin_header.h >patching file fs/reiser4/plugin/plugin_set.c >patching file fs/reiser4/plugin/plugin_set.h >patching file fs/reiser4/plugin/pseudo/pseudo.c >patching file fs/reiser4/plugin/pseudo/pseudo.h >patching file fs/reiser4/plugin/security/perm.c >patching file fs/reiser4/plugin/security/perm.h >patching file fs/reiser4/plugin/space/bitmap.c >patching file fs/reiser4/plugin/space/bitmap.h >patching file fs/reiser4/plugin/space/space_allocator.h >patching file fs/reiser4/plugin/symlink.c >patching file fs/reiser4/plugin/symlink.h >patching file fs/reiser4/plugin/tail_policy.c >patching file fs/reiser4/pool.c >patching file fs/reiser4/pool.h >patching file fs/reiser4/prof.c >patching file fs/reiser4/prof.h >patching file fs/reiser4/readahead.c >patching file fs/reiser4/readahead.h >patching file fs/reiser4/reiser4.h >patching file fs/reiser4/repacker.c >patching file fs/reiser4/repacker.h >patching file fs/reiser4/safe_link.c >patching file fs/reiser4/safe_link.h >patching file fs/reiser4/seal.c >patching file fs/reiser4/seal.h >patching file fs/reiser4/search.c >patching file fs/reiser4/spin_macros.h >patching file fs/reiser4/spinprof.c >patching file fs/reiser4/spinprof.h >patching file fs/reiser4/statcnt.h >patching file fs/reiser4/stats.c >patching file fs/reiser4/stats.h >patching file fs/reiser4/status_flags.c >patching file fs/reiser4/status_flags.h >patching file fs/reiser4/super.c >patching file fs/reiser4/super.h >patching file fs/reiser4/tap.c >patching file fs/reiser4/tap.h >patching file fs/reiser4/tree.c >patching file fs/reiser4/tree.h >patching file fs/reiser4/tree_mod.c >patching file fs/reiser4/tree_mod.h >patching file fs/reiser4/tree_walk.c >patching file fs/reiser4/tree_walk.h >patching file fs/reiser4/txnmgr.c >patching file fs/reiser4/txnmgr.h >patching file fs/reiser4/type_safe_hash.h >patching file fs/reiser4/type_safe_list.h >patching file fs/reiser4/vfs_ops.c >patching file fs/reiser4/vfs_ops.h >patching file fs/reiser4/wander.c >patching file fs/reiser4/wander.h >patching file fs/reiser4/writeout.h >patching file fs/reiser4/znode.c >patching file fs/reiser4/znode.h >patching file fs/reiserfs/inode.c > > [-- Attachment #1.2: Type: text/html, Size: 14401 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: Building Reiser4 - Symbol problem [not found] ` <434AB282.3010408@sourcelabs.com> 2005-10-10 18:32 ` Steve Jacobson @ 2005-10-10 19:02 ` michael chang 1 sibling, 0 replies; 5+ messages in thread From: michael chang @ 2005-10-10 19:02 UTC (permalink / raw) To: Steve Jacobson; +Cc: reiserfs-list On 10/10/05, Steve Jacobson <steve@sourcelabs.com> wrote: > > Thanks Mike, > > I hadn't captured the patch output originally, so I cleaned up, and > re-installed the source and re-patched. The output is attached here as > patch.out, but a cursory read-through says every patch applied OK. > > Other answers to your questions are in-line. Since I'm not a professional, I have no other clues... maybe an offical Reiser guy can answer you -- the best guess I have now is to try official 2.6.9-4 sources. Personally, I've never even heard of CentOS. -- ~Mike - Just my two cents - No man is an island, and no man is unable. ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-10-10 19:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-10-07 23:48 Building Reiser4 - Symbol problem Steve Jacobson
2005-10-08 0:36 ` michael chang
[not found] ` <434AB282.3010408@sourcelabs.com>
2005-10-10 18:32 ` Steve Jacobson
2005-10-10 19:14 ` Steve Jacobson
2005-10-10 19:02 ` michael chang
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.