Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Official thread: "zen-sources" - Part IV
View unanswered posts
View posts from last 24 hours

Goto page 1, 2, 3 ... 15, 16, 17  Next  
Reply to topic    Gentoo Forums Forum Index Unsupported Software
View previous topic :: View next topic  
Author Message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Fri Jun 13, 2008 10:08 pm    Post subject: Official thread: "zen-sources" - Part IV Reply with quote

checking the sources out
Quote:
First Time
Code:
cd /usr/src
git clone git://zen-sources.org/zen/kernel.git zen-sources
cd zen-sources
make menuconfig


creating a patch
example:
Code:

git diff v2.6.24 v2.6.24-zen1 > 2.6.24-zen1.patch


update sources (inside the directory)
Code:
Update
Code:

cd /usr/src/zen-sources
git pull


you are in the middle of a conflicted merge:
Quote:
git pull
Auto-merged .gitignore
Auto-merged MAINTAINERS
Auto-merged Makefile
CONFLICT (content): Merge conflict in Makefile
Removed arch/mips/lasat/sysctl.h
Auto-merged drivers/ata/libata-scsi.c
Auto-merged drivers/char/Kconfig
Auto-merged drivers/char/drm/ati_pcigart.c
Auto-merged drivers/char/drm/drm.h
Auto-merged drivers/char/drm/drm_drv.c
CONFLICT (content): Merge conflict in drivers/char/drm/drm_drv.c
...
Automatic merge failed; fix conflicts and then commit the result.

rmh3093 wrote:
This usually happens when the branch you are trying to update has been rebased. The easiest way to get around this is to checkout a new copy of the branch. For example, if you are currently on the master branch you would do something like the following:


first try:
Code:
git checkout -f && git pull

if that doesn't help, then:

Code:
git reset --hard; git branch -M master master-old; git checkout -b master origin/master; git branch -D master-old; git checkout -f


you need to change to another branch ?
example:
Code:
# git checkout master-devel


if the branch doesn't exist in your directory (
Code:
git branch
)
e.g. master-light, then enter
Code:
git branch master-light origin/master-light && git checkout master-light



you want to check out a specific version?
Code:
git checkout v2.6.25-rc5-zen0


speeding up merge (download) of zen-sources (during first time)
1) checkout the linux-2.6 branch of linus (git.eu.kernel.org or git.kernel.org)
2) then merge both (e.g. it's in /usr/src/sources/linux-2.6)
3)
Code:
 git clone --reference /usr/src/sources/linux-2.6/ git://zen-sources.org/zen/kernel.git


what branches are there?
currently (june 2008), there is 1 branch ( heads ):

- master (git checkout master) (e.g. v2.6.24-zen3)

the other "head"s are branches which are added to the main tree

the project's site can be reached over at:
www.zen-sources.org

the repo is reachable via:
http://zen-sources.org/cgi-bin/gitweb.cgi?p=kernel.git;a=summary

edit (June 13th 2008) :

updated to newer zen-sources server + webpage-address
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D


Last edited by kernelOfTruth on Thu Jun 26, 2008 10:34 am; edited 5 times in total
Back to top
View user's profile Send private message
cheater1034
Veteran
Veteran


Joined: 09 Sep 2004
Posts: 1558

PostPosted: Fri Jun 13, 2008 11:49 pm    Post subject: Reply with quote

Zen-sources gets a thumbs up from me 8)

I'll be using it in my stage1 on 72 guide :D

I've made many patchsets, and on top of that i've made my own patches. If i made another patchset, i would want it to be exactly like zen defeating the purpose of making one ;)

Good work :wink:
_________________
IRC!: #zen-sources on irc.rizon.net
zen-kernel.org
--
Lost in android development land.
Back to top
View user's profile Send private message
r2dtu
Tux's lil' helper
Tux's lil' helper


Joined: 23 Aug 2002
Posts: 87

PostPosted: Sat Jun 14, 2008 9:32 am    Post subject: Reply with quote

Code:
make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/i915.o'.  Stop.

...or have I just broke my git repo?
Back to top
View user's profile Send private message
IvanMajhen
Guru
Guru


Joined: 10 Jun 2006
Posts: 392
Location: Croatia

PostPosted: Sat Jun 14, 2008 10:43 am    Post subject: Reply with quote

Same for me. I had to download it manualy. Intelfb doesn't work.
Back to top
View user's profile Send private message
dodo1122
Guru
Guru


Joined: 02 Sep 2006
Posts: 347
Location: York, England

PostPosted: Sat Jun 14, 2008 10:52 am    Post subject: Reply with quote

which zen version? 2.6.26-rc6-zen1?

KernelOfTruth: we only have master in the new repo, no -rt, no -devel :P. We rebase branches to newest upstream version, so if another -rc comes out, we rebase every branch to that, remake master, pull all the branches in again, test-compile and run, fix stuff which breaks for us, tag and release. If other people find some shit not working, we make a hotfix.
_________________
#zen-sources on irc.rizon.net
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Jun 14, 2008 11:16 am    Post subject: Reply with quote

dodo1122 wrote:
which zen version? 2.6.26-rc6-zen1?

KernelOfTruth: we only have master in the new repo, no -rt, no -devel :P. We rebase branches to newest upstream version, so if another -rc comes out, we rebase every branch to that, remake master, pull all the branches in again, test-compile and run, fix stuff which breaks for us, tag and release. If other people find some shit not working, we make a hotfix.


fixed :P

will there be any new branches in the new repo in the near future such as -rt, -devel or -master-new ?

I see you've added lockless pagecache, just take your time & thanks :P
.26 final still isn't there - it seemingly still produces issues ? some of which Nick needs to know of ?

thanks :)
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
IvanMajhen
Guru
Guru


Joined: 10 Jun 2006
Posts: 392
Location: Croatia

PostPosted: Sat Jun 14, 2008 11:26 am    Post subject: Reply with quote

RC5-zen2. Will try rc6.

Edit:
Still the same.
Code:
make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'.  Stop.
Back to top
View user's profile Send private message
dodo1122
Guru
Guru


Joined: 02 Sep 2006
Posts: 347
Location: York, England

PostPosted: Sat Jun 14, 2008 12:05 pm    Post subject: Reply with quote

IvanMajhen wrote:
RC5-zen2. Will try rc6.

Edit:
Still the same.
Code:
make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'.  Stop.


I see, i forgot to git add a file :/ Hotfix coming soon :P

EDIT: hotfix1 out. You can patch it manually, or use zen-hotfix to patch your kernel tree, or just git pull if you use git :P

fixed a small bug in madwifi, and added missing i915_suspend.c

EDIT2: KernelOfTruth, lockless is not yet in master, as it caused a very early kernel panic, but we're working on it :P

dodo
_________________
#zen-sources on irc.rizon.net
Back to top
View user's profile Send private message
IvanMajhen
Guru
Guru


Joined: 10 Jun 2006
Posts: 392
Location: Croatia

PostPosted: Sat Jun 14, 2008 12:55 pm    Post subject: Reply with quote

I already did that. Intelfb doesn't work if i915 is compiled in kernel.
Back to top
View user's profile Send private message
r2dtu
Tux's lil' helper
Tux's lil' helper


Joined: 23 Aug 2002
Posts: 87

PostPosted: Sat Jun 14, 2008 2:48 pm    Post subject: Reply with quote

Is there any benefit from drm from mesa git?
All I get is trouble...my screen gets a strange 'shake' every couple of minutes. Eventually X goes dark and I have to reboot.
I don't mind reverting the drm branch. Just wonder what people get from it?
Back to top
View user's profile Send private message
IvanMajhen
Guru
Guru


Joined: 10 Jun 2006
Posts: 392
Location: Croatia

PostPosted: Sat Jun 14, 2008 3:25 pm    Post subject: Reply with quote

Mine too. Disable framebuffer compression. I don't see any benefits.
Speed is the same. We still dont have TTM compatible X/libdrm/....
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Sat Jun 14, 2008 3:54 pm    Post subject: Re: Official thread: "zen-sources" - Part IV Reply with quote

kernelOfTruth wrote:
git clone git://zen-sources.org/zen/kernel.git

this should be:
git clone git://zen-sources.org/zen/kernel.git zen-sources

the way you had it would create the dir kernel.git

kernelOfTruth wrote:
the SourceForge.net site at:
http://sourceforge.net/projects/zen-sources/ (thanks guys, for hosting :D )

we dont use them any more
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
dodo1122
Guru
Guru


Joined: 02 Sep 2006
Posts: 347
Location: York, England

PostPosted: Sat Jun 14, 2008 9:24 pm    Post subject: Reply with quote

Ask rmh about the drm branch :P Apparently the point is that it allows people to get 3d acceleration with r5xx ati cards.


dodo
_________________
#zen-sources on irc.rizon.net
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sat Jun 14, 2008 10:18 pm    Post subject: Re: Official thread: "zen-sources" - Part IV Reply with quote

rmh3093 wrote:
kernelOfTruth wrote:
git clone git://zen-sources.org/zen/kernel.git

this should be:
git clone git://zen-sources.org/zen/kernel.git zen-sources

the way you had it would create the dir kernel.git

kernelOfTruth wrote:
the SourceForge.net site at:
http://sourceforge.net/projects/zen-sources/ (thanks guys, for hosting :D )

we dont use them any more


fixed :P
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
soundcheck
n00b
n00b


Joined: 25 Oct 2007
Posts: 54
Location: D-Dorf

PostPosted: Sun Jun 15, 2008 10:25 am    Post subject: Reply with quote

Hi folks.

Havn't been around for a while. I just downloaded the latest 2.6.26-rc6-zen1 kernel-sources to realize that
the special zen-kernel scheduler tuning-section i s gone!?

Any reason for that?

KLS
Back to top
View user's profile Send private message
tranquilcool
Veteran
Veteran


Joined: 25 Mar 2005
Posts: 1245

PostPosted: Sun Jun 15, 2008 10:38 am    Post subject: Reply with quote

i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.
_________________
this is a strange strange world.
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sun Jun 15, 2008 11:06 am    Post subject: Reply with quote

tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y

_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
tranquilcool
Veteran
Veteran


Joined: 25 Mar 2005
Posts: 1245

PostPosted: Sun Jun 15, 2008 11:19 am    Post subject: Reply with quote

kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y
_________________
this is a strange strange world.
Back to top
View user's profile Send private message
kernelOfTruth
Watchman
Watchman


Joined: 20 Dec 2005
Posts: 6111
Location: Vienna, Austria; Germany; hello world :)

PostPosted: Sun Jun 15, 2008 11:26 am    Post subject: Reply with quote

tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y


then try to disable swap prefetch (most likely) & TOI (tux on ice)
_________________
https://github.com/kernelOfTruth/ZFS-for-SystemRescueCD/tree/ZFS-for-SysRescCD-4.9.0
https://github.com/kernelOfTruth/pulseaudio-equalizer-ladspa

Hardcore Gentoo Linux user since 2004 :D
Back to top
View user's profile Send private message
tranquilcool
Veteran
Veteran


Joined: 25 Mar 2005
Posts: 1245

PostPosted: Sun Jun 15, 2008 11:31 am    Post subject: Reply with quote

kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y


then try to disable swap prefetch (most likely) & TOI (tux on ice)


ok as soon as i finish openoffice compilation will try that. thanks.
_________________
this is a strange strange world.
Back to top
View user's profile Send private message
dodo1122
Guru
Guru


Joined: 02 Sep 2006
Posts: 347
Location: York, England

PostPosted: Sun Jun 15, 2008 1:09 pm    Post subject: Reply with quote

For all you thinkpad users out there (including me :P), HDAPS works now, thanks to Mathias Kaufmann for the patch.
It is included in hotfix2, along with a small compilation fix for TOI.


dodo
_________________
#zen-sources on irc.rizon.net
Back to top
View user's profile Send private message
tranquilcool
Veteran
Veteran


Joined: 25 Mar 2005
Posts: 1245

PostPosted: Sun Jun 15, 2008 11:42 pm    Post subject: Reply with quote

kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y


then try to disable swap prefetch (most likely) & TOI (tux on ice)


same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.
_________________
this is a strange strange world.
Back to top
View user's profile Send private message
rmh3093
Advocate
Advocate


Joined: 06 Aug 2003
Posts: 2138
Location: Albany, NY

PostPosted: Mon Jun 16, 2008 1:57 pm    Post subject: Reply with quote

tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y


then try to disable swap prefetch (most likely) & TOI (tux on ice)


same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.


try and disable that mousepoll menuconfig option
_________________
Do not meddle in the affairs of wizards, for they are subtle and quick to anger.
Back to top
View user's profile Send private message
tranquilcool
Veteran
Veteran


Joined: 25 Mar 2005
Posts: 1245

PostPosted: Mon Jun 16, 2008 2:02 pm    Post subject: Reply with quote

rmh3093 wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
kernelOfTruth wrote:
tranquilcool wrote:
i have these in dmesg (26-rc6-zen1) and i can't figure it out.


mousepoll_interval .5.77 Unknown sysctl binary path
Pid: 1, comm: swapper Not tainted 2.6.26-rc6-zen1 #20
[<80139007>] set_fail+0x45/0x47
[<80139363>] sysctl_check_table+0x35a/0x697
[<801291f2>] sysctl_head_finish+0x11/0x37
[<8013937f>] sysctl_check_table+0x376/0x697
[<8059f170>] sysctl_init+0x22/0x25
[<8058e27a>] kernel_init+0x184/0x291
[<8017c4cc>] do_coredump+0x78c/0x89d
[<8059f14e>] sysctl_init+0x0/0x25
[<8011e942>] finish_task_switch+0x1f/0x7a
[<8011fc64>] schedule_tail+0x17/0x45
[<80102f56>] ret_from_fork+0x6/0x1c
[<8058e0f6>] kernel_init+0x0/0x291
[<8058e0f6>] kernel_init+0x0/0x291
[<80103c73>] kernel_thread_helper+0x7/0x14

also one PCI:Bridge disabled

PCI: Bridge: 0000:00:01.0
IO window: disabled.
MEM window: 0xfc900000-0xfe9fffff
PREFETCH window: 0x00000000d7e00000-0x00000000f7dfffff
PCI: Bridge: 0000:00:1e.0
IO window: b000-bfff
MEM window: 0xfea00000-0xfeafffff
PREFETCH window: 0x00000000f7e00000-0x00000000f7efffff


help.


ensure that you have the following selected:

Quote:
cat /usr/src/linux/.config | grep CTL
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
...
...
...
CONFIG_PROC_SYSCTL=y



yes they are selected;

CONFIG_SYSVIPC_SYSCTL=y
CONFIG_SYSCTL=y
CONFIG_SYSCTL_SYSCALL=y
CONFIG_SYSCTL_SYSCALL_CHECK=y
CONFIG_X86_DEBUGCTLMSR=y
CONFIG_QUOTACTL=y
CONFIG_PROC_SYSCTL=y


then try to disable swap prefetch (most likely) & TOI (tux on ice)


same erros and i just don't have any clue.
with kernel-2.6.25 this doesn't happen.


try and disable that mousepoll menuconfig option


CONFIG_USB_HID_MOUSE_POLLING is not set
but problem remains same.
_________________
this is a strange strange world.
Back to top
View user's profile Send private message
deno
Guru
Guru


Joined: 13 Sep 2006
Posts: 411

PostPosted: Mon Jun 16, 2008 3:18 pm    Post subject: Reply with quote

Hi!

Cannot compile 2.6.26-rc6-zen1.0.
Quote:
CC drivers/char/drm/drm_vm_nopage_compat.o
CC drivers/char/drm/i915_drv.o
drivers/char/drm/i915_drv.c: In function ‘i915_resume’:
drivers/char/drm/i915_drv.c:90: warning: unused variable ‘dev_priv’
CC drivers/char/drm/i915_dma.o
CC drivers/char/drm/i915_irq.o
CC drivers/char/drm/i915_mem.o
CC drivers/char/drm/i915_fence.o
CC drivers/char/drm/i915_buffer.o
CC drivers/char/drm/i915_compat.o
CC drivers/char/drm/i915_execbuf.o
make[3]: *** No rule to make target `drivers/char/drm/i915_suspend.o', needed by `drivers/char/drm/drm.o'. Stop.
make[2]: *** [drivers/char/drm] Error 2
make[1]: *** [drivers/char] Error 2
make: *** [drivers] Error 2
Compiler is gcc-4.3.1.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Unsupported Software All times are GMT
Goto page 1, 2, 3 ... 15, 16, 17  Next
Page 1 of 17

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum