Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Unsupported Software
  • Search

Official thread: "zen-sources" - Part III

This forum covers all Gentoo-related software not officially supported by Gentoo. Ebuilds/software posted here might harm the health and stability of your system(s), and are not supported by Gentoo developers. Bugs/errors caused by ebuilds from overlays.gentoo.org are covered by this forum, too.
Post Reply
Advanced search
462 posts
  • Page 9 of 19
    • Jump to page:
  • Previous
  • 1
  • …
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 19
  • Next
Author
Message
mmike
n00b
n00b
Posts: 19
Joined: Fri May 02, 2003 8:33 am

  • Quote

Post by mmike » Thu Apr 24, 2008 8:03 am

Code: Select all


        memory=malloc(count*1024*1024*sizeof(short));
        memset(memory,0,count*1024*1024*sizeof(short));
        free(memory);

[/code]
--
there is no save distance
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Fri Apr 25, 2008 10:13 am

Good news everyone, i'll push 2.6.25-zen1 to master as soon as i get home. PAtches from sourceforge will also be available. Everything builds with make allmodconfig, stuff is cleaned up, we also dropped some stuff which was redundant (like acer-acpi, which has been merged into mainline).


dodo
#zen-sources on irc.rizon.net
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Fri Apr 25, 2008 10:44 am

dodo1122 wrote:Good news everyone, i'll push 2.6.25-zen1 to master as soon as i get home. PAtches from sourceforge will also be available. Everything builds with make allmodconfig, stuff is cleaned up, we also dropped some stuff which was redundant (like acer-acpi, which has been merged into mainline).


dodo
nice 8)

looking forward to it :)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kriko
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Sat Mar 18, 2006 10:35 pm
Location: Slovenia

  • Quote

Post by kriko » Fri Apr 25, 2008 10:48 am

Excellent, going to try it as soon as possible - I'm especially interrested into BFQ.
Zen sources - fastest kernel in world
Top
deno
Guru
Guru
User avatar
Posts: 411
Joined: Wed Sep 13, 2006 4:23 pm

  • Quote

Post by deno » Fri Apr 25, 2008 5:48 pm

mmike wrote:

Code: Select all


        memory=malloc(count*1024*1024*sizeof(short));
        memset(memory,0,count*1024*1024*sizeof(short));
        free(memory);

Hi mike and thanks for the reply. If I understend it right that code is trying to reserve all available memory (+ which is cashed) and then to free it. 'count' is I suppose size of RAM in MB? And why do you need '*sizeof(short)'?
Top
mmike
n00b
n00b
Posts: 19
Joined: Fri May 02, 2003 8:33 am

  • Quote

Post by mmike » Fri Apr 25, 2008 5:52 pm

its just a ugly hack..
acutally it doesnt really matter how much you alloc, just enough so that that the system frees some caches or swaps.
--
there is no save distance
Top
math_roc
n00b
n00b
Posts: 65
Joined: Sat Jan 07, 2006 3:43 pm

  • Quote

Post by math_roc » Fri Apr 25, 2008 8:09 pm

to free memory the clean way:

Code: Select all

#!/bin/bash
sudo sh -c "echo 3 > /proc/sys/vm/drop_caches"
you may need to enable some stuff in the kernel to got "/proc/sys/vm/drop_caches" but I don't remember which :s
Top
Jupiter1TX
Guru
Guru
User avatar
Posts: 546
Joined: Fri Feb 24, 2006 6:47 pm
Location: 3rd Rock
Contact:
Contact Jupiter1TX
Website

  • Quote

Post by Jupiter1TX » Fri Apr 25, 2008 8:30 pm

Just tried 2.6.25-zen0 on x86 and i get build errors.

Code: Select all

make[1]: *** No rule to make target `block/bfq-iosched.o', needed by `block/built-in.o'.  Stop.
make: *** [block] Error 2
I disabled BFQ and get new error so i stopped.

Code: Select all

fs/built-in.o: In function `direct_splice_actor':
splice.c:(.text+0x189f1): undefined reference to `vfs_splice_from'
fs/built-in.o: In function `splice_direct_to_actor':
(.text+0x18bb9): undefined reference to `vfs_splice_to'
fs/built-in.o: In function `sys_splice':
(.text+0x19d54): undefined reference to `vfs_splice_from'
fs/built-in.o: In function `sys_splice':
(.text+0x19dd8): undefined reference to `vfs_splice_to'
make: *** [.tmp_vmlinux1] Error 1
Core i7 920 D0 | Asus P6T DLX | Patriot Viper 1600 6GB | Antec Quattro 850W
Geforce 8800GTX OC2 768MB | Dell 22" LCD | Koolance Exos2/Swiftech GTZ
GCC 4.6.1 | 3.7.x-geek | Xorg-7.4-x | KDE-4.7.x | Compiz
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Fri Apr 25, 2008 8:42 pm

Jupiter1TX wrote:Just tried 2.6.25-zen0 on x86 and i get build errors.

Code: Select all

make[1]: *** No rule to make target `block/bfq-iosched.o', needed by `block/built-in.o'.  Stop.
make: *** [block] Error 2
I disabled BFQ and get new error so i stopped.

Code: Select all

fs/built-in.o: In function `direct_splice_actor':
splice.c:(.text+0x189f1): undefined reference to `vfs_splice_from'
fs/built-in.o: In function `splice_direct_to_actor':
(.text+0x18bb9): undefined reference to `vfs_splice_to'
fs/built-in.o: In function `sys_splice':
(.text+0x19d54): undefined reference to `vfs_splice_from'
fs/built-in.o: In function `sys_splice':
(.text+0x19dd8): undefined reference to `vfs_splice_to'
make: *** [.tmp_vmlinux1] Error 1
bfq isn't "supported" / working in .25-zen0,

this splice-error should be fixed in latest master-devel - otherwise see one page behind

edit:
2 pages behind ;)

http://forums.gentoo.org/viewtopic-p-50 ... ml#5064220

any ETA when .25-zen1 will be out ? :)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
Kollin
Veteran
Veteran
User avatar
Posts: 1139
Joined: Sat Feb 25, 2006 12:42 am
Location: Sofia/Bulgaria

  • Quote

Post by Kollin » Fri Apr 25, 2008 9:27 pm

Could you update please custom-kernels overlay with 2.6.25-* kernels :roll:
"Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..."
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Fri Apr 25, 2008 11:49 pm

Yes, once we release -zen1. By the way, -zen1 is delayed till tomorrow, as we need to review ckpatches to ensure they are stable enough to be used. Also, we are trying to fix btrfs acl support. Everything else is ready(tm), including aufs ;-).


dodo
#zen-sources on irc.rizon.net
Top
Kollin
Veteran
Veteran
User avatar
Posts: 1139
Joined: Sat Feb 25, 2006 12:42 am
Location: Sofia/Bulgaria

  • Quote

Post by Kollin » Sat Apr 26, 2008 8:10 am

dodo1122 wrote:Yes, once we release -zen1. By the way, -zen1 is delayed till tomorrow, as we need to review ckpatches to ensure they are stable enough to be used. Also, we are trying to fix btrfs acl support. Everything else is ready(tm), including aufs ;-).


dodo
Impatient :mrgreen:
"Dear Enemy: may the Lord hate you and all your kind, may you be turned orange in hue, and may your head fall off at an awkward moment."
"Linux is like a wigwam - no windows, no gates, apache inside..."
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Apr 26, 2008 10:21 am

Kollin wrote:
dodo1122 wrote:Yes, once we release -zen1. By the way, -zen1 is delayed till tomorrow, as we need to review ckpatches to ensure they are stable enough to be used. Also, we are trying to fix btrfs acl support. Everything else is ready(tm), including aufs ;-).


dodo
Impatient :mrgreen:
++ :oops: :mrgreen:

just take your time, guys, it shall really become a stable & well-working release (incl. bfq) :)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Apr 26, 2008 11:17 am

could you please also include the following 3 reiser4-patches ?

http://thread.gmane.org/gmane.comp.file ... eral/21498
http://thread.gmane.org/gmane.comp.file ... eral/21499
http://thread.gmane.org/gmane.comp.file ... eral/21500

many thanks in advance :)

edit:

it seems as if those patches were already added to zen-sources - but how ? :oops:

- so please ignore above mentioned patches :o :?: :arrow:
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
deno
Guru
Guru
User avatar
Posts: 411
Joined: Wed Sep 13, 2006 4:23 pm

  • Quote

Post by deno » Sat Apr 26, 2008 1:09 pm

@math_roc

Thanks!
Top
darklegion
Guru
Guru
Posts: 468
Joined: Sun Nov 14, 2004 1:47 am

  • Quote

Post by darklegion » Sat Apr 26, 2008 2:17 pm

kernelOfTruth wrote: bfq isn't "supported" / working in .25-zen0,
Master-devel + bfq on amd64 is working for me, although I assume by "supported" you mean "tested".
Top
dodo1122
Guru
Guru
User avatar
Posts: 347
Joined: Sat Sep 02, 2006 7:33 pm
Location: York, England

  • Quote

Post by dodo1122 » Sat Apr 26, 2008 5:44 pm

kernelOfTruth wrote:could you please also include the following 3 reiser4-patches ?

http://thread.gmane.org/gmane.comp.file ... eral/21498
http://thread.gmane.org/gmane.comp.file ... eral/21499
http://thread.gmane.org/gmane.comp.file ... eral/21500

many thanks in advance :)

edit:

it seems as if those patches were already added to zen-sources - but how ? :oops:

- so please ignore above mentioned patches :o :?: :arrow:
I remade most of the branches, so now reiser4 branch contains only the reiser4-for.2.6.25 patch. Does it include those patches which you posted, or is it the reiser4-devel branch?

dodo
#zen-sources on irc.rizon.net
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sat Apr 26, 2008 6:01 pm

if the reiser4-2.6.25.patch equals the 2.6.25-mm1 reiser4-branch it doesn't / isn't included yet

(to be honest I dunno)

according to the patches the should be needed - unfortunately none of them apply cleanly ...
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Apr 27, 2008 3:30 pm

do you guys have a working bugzilla system right now ?

if yes - what is the address ? this should make communication for you a lot easier ...

thanks for adding the missing files, btw:
[zen-menu] add missing files zen-menu
this should make master-new ready for (test-)consumption, I guess :)
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Apr 27, 2008 4:32 pm

latest master-new is failing (ck-patchset ?): :idea:
mm/filemap.c: In function ‘generic_file_aio_read’:
mm/filemap.c:951: warning: ‘end_index’ may be used uninitialized in this function
mm/filemap.c:951: note: ‘end_index’ was declared here
CC mm/mempool.o
CC mm/oom_kill.o
CC mm/fadvise.o
CC mm/page_alloc.o
CC mm/page-writeback.o
CC mm/pdflush.o
CC mm/readahead.o
CC mm/swap.o
CC mm/truncate.o
CC mm/vmscan.o
mm/vmscan.c: In function ‘shrink_one_zone’:
mm/vmscan.c:1955: error: unknown field ‘swappiness’ specified in initializer
mm/vmscan.c:1955: error: ‘vm_swappiness’ undeclared (first use in this function)
mm/vmscan.c:1955: error: (Each undeclared identifier is reported only once
mm/vmscan.c:1955: error: for each function it appears in.)
make[1]: *** [mm/vmscan.o] Error 1
make: *** [mm] Error 2
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
kriko
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Sat Mar 18, 2006 10:35 pm
Location: Slovenia

  • Quote

Post by kriko » Sun Apr 27, 2008 5:59 pm

I checked out master-devel but there is no bfq. At least I did this:

Code: Select all

git branch master-devel origin/master-devel
git checkout master-devel
Did I do something wrong?
Zen sources - fastest kernel in world
Top
Uzytkownik
Guru
Guru
Posts: 399
Joined: Sun Oct 31, 2004 8:08 pm
Location: Bay Area, US
Contact:
Contact Uzytkownik
Website

  • Quote

Post by Uzytkownik » Sun Apr 27, 2008 6:17 pm

I'm not sure but it seems like it has been renamed to master-new.
I've probably left my head... somwhere. Please wait untill I find it.
Top
kernelOfTruth
Watchman
Watchman
User avatar
Posts: 6111
Joined: Tue Dec 20, 2005 10:34 pm
Location: Vienna, Austria; Germany; hello world :)
Contact:
Contact kernelOfTruth
Website

  • Quote

Post by kernelOfTruth » Sun Apr 27, 2008 6:33 pm

kernelOfTruth wrote:latest master-new is failing (ck-patchset ?): :idea:
mm/filemap.c: In function ‘generic_file_aio_read’:
mm/filemap.c:951: warning: ‘end_index’ may be used uninitialized in this function
mm/filemap.c:951: note: ‘end_index’ was declared here
CC mm/mempool.o
CC mm/oom_kill.o
CC mm/fadvise.o
CC mm/page_alloc.o
CC mm/page-writeback.o
CC mm/pdflush.o
CC mm/readahead.o
CC mm/swap.o
CC mm/truncate.o
CC mm/vmscan.o
mm/vmscan.c: In function ‘shrink_one_zone’:
mm/vmscan.c:1955: error: unknown field ‘swappiness’ specified in initializer
mm/vmscan.c:1955: error: ‘vm_swappiness’ undeclared (first use in this function)
mm/vmscan.c:1955: error: (Each undeclared identifier is reported only once
mm/vmscan.c:1955: error: for each function it appears in.)
make[1]: *** [mm/vmscan.o] Error 1
make: *** [mm] Error 2
ok, screw that

it rather seems to be TOI's fault :idea: (or both)
Uzytkownik wrote:I'm not sure but it seems like it has been renamed to master-new.
++

it didn't get renamed it's a new branch :idea:
https://github.com/kernelOfTruth/ZFS-fo ... scCD-4.9.0
https://github.com/kernelOfTruth/pulsea ... zer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Top
Uzytkownik
Guru
Guru
Posts: 399
Joined: Sun Oct 31, 2004 8:08 pm
Location: Bay Area, US
Contact:
Contact Uzytkownik
Website

  • Quote

Post by Uzytkownik » Sun Apr 27, 2008 6:36 pm

Could you give some guide of branches?
I've probably left my head... somwhere. Please wait untill I find it.
Top
ejs76
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 148
Joined: Sat Feb 07, 2004 8:20 pm

  • Quote

Post by ejs76 » Sun Apr 27, 2008 8:29 pm

kernelOfTruth wrote:do you guys have a working bugzilla system right now ?

if yes - what is the address ? this should make communication for you a lot easier ...
Have you tried bugzilla on the new SF.net zen-pages? (Don't know if it works out of the box...)

http://sourceforge.net/tracker/?func=ad ... id=1065365
~amd64
PhenomII x4 955 | MSI 790GX-G65 | ATI Radeon 5770 | 8GB DDR3 1333
Top
Post Reply

462 posts
  • Page 9 of 19
    • Jump to page:
  • Previous
  • 1
  • …
  • 7
  • 8
  • 9
  • 10
  • 11
  • …
  • 19
  • Next

Return to “Unsupported Software”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic