* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
2004-11-30 17:50 2.6.10-rc2-mm4 Andrew Morton
@ 2004-11-30 23:07 ` Eyal Lebedinsky
2004-11-30 23:53 ` Andrew Morton
2004-12-01 8:43 ` Eyal Lebedinsky
1 sibling, 1 reply; 6+ messages in thread
From: Eyal Lebedinsky @ 2004-11-30 23:07 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/fs/cifs/cifs.ko needs unknown symbol CIFSSMBSetPosixACL
Either it is really missing or a dependecy is not declared somewhere.
I also get the following from the nvidia binary module,I should try the latest though.
WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol pgd_offset_k_is_obsolete
WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol pgd_offset_is_obsolete
WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol remap_page_range
--
Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.org/eyal/>
If attaching .zip rename to .dat
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
2004-11-30 23:07 ` 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL Eyal Lebedinsky
@ 2004-11-30 23:53 ` Andrew Morton
0 siblings, 0 replies; 6+ messages in thread
From: Andrew Morton @ 2004-11-30 23:53 UTC (permalink / raw)
To: Eyal Lebedinsky; +Cc: linux-kernel, Steven French
Eyal Lebedinsky <eyal@eyal.emu.id.au> wrote:
>
> WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/fs/cifs/cifs.ko needs unknown symbol CIFSSMBSetPosixACL
>
> Either it is really missing or a dependecy is not declared somewhere.
It looks like there's a slipup in bk-cifs.patch. If you enable
CONFIG_CIFS_POSIX it'll probably link OK.
> I also get the following from the nvidia binary module,I should try the latest though.
>
> WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol pgd_offset_k_is_obsolete
> WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol pgd_offset_is_obsolete
Looks like the nvidia wrapper will need updating if/when we merge Andi's
4-level pagetable implementation.
> WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/drivers/video/nvidia.ko needs unknown symbol remap_page_range
remap_page_range() doesn't exist in -mm. It does (and shall continue to)
exist in Linus's tree. Reverting
for-mm-only-remove-remap_page_range-completely.patch will fix this one up.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
@ 2004-12-01 6:42 Steve French
2004-12-01 6:53 ` Andrew Morton
0 siblings, 1 reply; 6+ messages in thread
From: Steve French @ 2004-12-01 6:42 UTC (permalink / raw)
To: Eyal Lebedinsky, linux-kernel, Andrew Morton
Thanks I have just updated fs/Kconfig and fs/cifs/xattr.c in the patch
(actually in the cifs bk tree) to make the cifs POSIX ACL enablement
dependent on cifs xattrs and to properly ifdef that function as it was
in the CIFSSMBGetPosixACL
Today I had also made some minor error mapping changes on errors when
various types of servers don't support POSIX ACLs (the servers did not
return consistent error messages).
The CIFS code has had major recent update (most importantly the
cifs_readdir rewrite which can be enabled in mm by "echo 1 >
/proc/fs/cifs/NewReaddirEnabled", but also the POSIX ACL support which
will work to Samba 3.10pre server, and also various misc fixes).
If the testing of the readdir change goes ok, and the misc. Windows and
Samba testing continues ok over the next few days I would like to push
this up (although I will remove the /proc/fs/cifs/NewReaddirEnabled and
the corresponding old cifs_readdir, and the old CIFSSMBFindFirst and
CIFSSMBFindNext routines when I get additional feedback from the mm tree
and users running the equivalent cifs only patch).
Let me know if you find any additional problems.
Thanks,
Steve
Steve French
Senior Software Engineer
Linux Technology Center - IBM Austin
phone: 512-838-2294
email: sfrench at-sign us dot ibm dot com
Andrew Morton <akpm@osdl.org> wrote on 11/30/2004 05:53:21 PM:
> Eyal Lebedinsky <eyal@eyal.emu.id.au> wrote:
> >
> > WARNING: /lib/modules/2.6.10-rc2-mm4/kernel/fs/cifs/cifs.ko needs
> unknown symbol CIFSSMBSetPosixACL
> >
> > Either it is really missing or a dependecy is not declared somewhere.
>
> It looks like there's a slipup in bk-cifs.patch. If you enable
> CONFIG_CIFS_POSIX it'll probably link OK.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
2004-12-01 6:42 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL Steve French
@ 2004-12-01 6:53 ` Andrew Morton
2004-12-01 7:33 ` Steve French
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2004-12-01 6:53 UTC (permalink / raw)
To: Steve French; +Cc: eyal, linux-kernel
Steve French <smfltc@us.ibm.com> wrote:
>
> The CIFS code has had major recent update (most importantly the
> cifs_readdir rewrite which can be enabled in mm by "echo 1 >
> /proc/fs/cifs/NewReaddirEnabled",
Nobody will do that, so the new code won't get tested.
In keeping with my evil plan to drive -mm users insane, could I ask that
you send me a diff which will make the new readdir code default to "on"?
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
2004-12-01 6:53 ` Andrew Morton
@ 2004-12-01 7:33 ` Steve French
0 siblings, 0 replies; 6+ messages in thread
From: Steve French @ 2004-12-01 7:33 UTC (permalink / raw)
To: Andrew Morton; +Cc: eyal, linux-kernel, linux-cifs-client
Andrew Morton wrote:
>Steve French <smfltc@us.ibm.com> wrote:
>
>
>> The CIFS code has had major recent update (most importantly the
>> cifs_readdir rewrite which can be enabled in mm by "echo 1 >
>> /proc/fs/cifs/NewReaddirEnabled",
>>
>>
>
>Nobody will do that, so the new code won't get tested.
>
>In keeping with my evil plan to drive -mm users insane, could I ask that
>you send me a diff which will make the new readdir code default to "on"?
>
>
>
OK - done. Default is now to use cifs_readdir2 (new code) and to go
back to the old code -
"echo 1 > /proc/fs/cifs/ReenableOldCifsReaddirCode"
The update is in the cifs bk tree (bk://cifs.bkbits.net/linux-2.5cifs)
and this particular minor patch in diff -Nau form is:
http://cifs.bkbits.net:8080/linux-2.5cifs/gnupatch@41ad739b4xCWzpJKDse0JW4Ep5y3LQ
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL
2004-11-30 17:50 2.6.10-rc2-mm4 Andrew Morton
2004-11-30 23:07 ` 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL Eyal Lebedinsky
@ 2004-12-01 8:43 ` Eyal Lebedinsky
1 sibling, 0 replies; 6+ messages in thread
From: Eyal Lebedinsky @ 2004-12-01 8:43 UTC (permalink / raw)
To: Andrew Morton; +Cc: linux-kernel
Forgot to say that I have:
CONFIG_CIFS=m
# CONFIG_CIFS_STATS is not set
CONFIG_CIFS_XATTR=y
# CONFIG_CIFS_POSIX is not set
--
Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.org/eyal/>
If attaching .zip rename to .dat
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2004-12-01 8:43 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-01 6:42 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL Steve French
2004-12-01 6:53 ` Andrew Morton
2004-12-01 7:33 ` Steve French
-- strict thread matches above, loose matches on Subject: below --
2004-11-30 17:50 2.6.10-rc2-mm4 Andrew Morton
2004-11-30 23:07 ` 2.6.10-rc2-mm4 - cifs.ko needs unknown symbol CIFSSMBSetPosixACL Eyal Lebedinsky
2004-11-30 23:53 ` Andrew Morton
2004-12-01 8:43 ` Eyal Lebedinsky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).