Path for driver patches into pfSense
-
Following on from here.
Attempting to make the driver using the 8.1 /usr/src/sys as SYSDIR gives:
admin@.box/usr/msk# make Warning: Object directory not changed from original /usr/msk @ -> /usr/src/sys cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -I. -I@ -I@/contrib/altq -finline-limit=8000 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-common -mno-align-long-strings -mpreferred-stack-boundary=2 -mno-mmx -mno-3dnow -mno-sse -mno-sse2 -mno-sse3 -ffreestanding -fstack-protector -std=iso9899:1999 -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -c if_msk.c if_msk.c: In function 'msk_miibus_statchg': if_msk.c:537: error: 'IFM_ETH_RXPAUSE' undeclared (first use in this function) if_msk.c:537: error: (Each undeclared identifier is reported only once if_msk.c:537: error: for each function it appears in.) if_msk.c:540: error: 'IFM_ETH_TXPAUSE' undeclared (first use in this function) cc1: warnings being treated as errors if_msk.c: In function 'msk_attach': if_msk.c:1663: warning: implicit declaration of function 'mii_attach' if_msk.c:1663: warning: nested extern declaration of 'mii_attach' if_msk.c:1664: error: 'BMSR_DEFCAPMASK' undeclared (first use in this function) if_msk.c:1664: error: 'MII_OFFSET_ANY' undeclared (first use in this function) if_msk.c: In function 'mskc_attach': if_msk.c:1912: error: 'MIIF_FORCEPAUSE' undeclared (first use in this function) if_msk.c:1916: error: 'MIIF_MACPRIV0' undeclared (first use in this function) *** Error code 1 Stop in /usr/msk.
Clearly something isn't included which should be.
The Makefile for that is:# $FreeBSD: stable/8/sys/modules/msk/Makefile 165140 2006-12-13 02:37:48Z yongari $ .PATH: ${.CURDIR}/../../dev/msk KMOD= if_msk SRCS= if_msk.c device_if.h bus_if.h pci_if.h SRCS+= miibus_if.h miidevs.h rdcphy.c .include
I've added the extra files but as sources rather than objects to be built. :-\
Steve
Edit: I should read some of this stuff first! rdcphy.c is nothing to do with the msk driver. ::)
-
What were you most recently trying to compile: msk from 8.2? msk from head? What is the revision information in the file? Have you applied your own patches? How did you get your file(s)?
And what are you building on? Stock 8.1?
I don't immediately have access to a FreeBSD system (maybe tomorrow) to investigate the undefined symbols but from the look of them I would expect them to have been standard definitions for some time. Maybe the definition location moved in the 8.1 to 8.2 transition.
-
Thanks for reading. :)
That is the result of trying to compile msk from stable/8/
The file info is:__FBSDID("$FreeBSD: stable/8/sys/dev/msk/if_msk.c 223400 2011-06-22 01:54:49Z yongari $");
I haven't applied any patches. The source code was checked out from /stable/8/ using SVN two days ago.
I am using stock FreeBSD 8.1_rel to build on.
If the file locations had changed that might explain it.
I have attempted to replicate the process used in the linked post however I now realise that a number of those steps are specific to that driver.
I have created a new folder holding the msk code as well as some other files to build in. Mostly I assume that was done so as not to corrupt the source tree of either the 8.1 or stable/8/ code.Setting the environment variable SYSDIR to /usr/stable/8/src/sys (where I checked out the code) allows the module to build but results in a module for 8.2 (or whatever kernel stable is at).
Setting it back to /usr/src/sys results in the error above.If you would rather I delete everything and start again to avoid any confusion I'm more than happy to do that. ;)
Steve
Edit: As a test I attempted to replicate the procedure outlined in the link FreeNAS post exactly (creating a vte module) but resulted in a similar list of errors. I believe it's likely I'm modifying the Makefile incorrectly. Or things have changed dramatically since January.
-
IFM_ETH_RXPAUSE, IFM_ETH_TXPAUSE, BMSR_DEFCAPMASK, MII_OFFSET_ANY and MII_FORCEPAUSE are not defined in the FreeBSD 8.1 source tree. (I didn't check the other undefined symbols reported.) IFM_ETH_RXPAUSE and IFM_ETH_TX_PAUSE are now defined in sys/net/if_media.h
From the comments in the revision history it appear some driver specific code for handling PHYs was made more generic: kernel interfaces changed in the 8.1 to 8.2 transition.
I expect you will have to hand edit the change you want back to the 8.1 release code. In the CVS web interface revision 1.64.2.20.2.1 was the revision for 8.1 release, 1.64.2.27 is the current head of the 8.x branch and seems to have invisible changes (e.g. spaces to tabs) from 1.64.2.26. Revision 1.64.2.23 looks to have the changes for the generic PHY support. Its possible subsequent changes rely on new (to 8.2) kernel interfaces.
I don't have time now to investigate further.
-
Thankyou very much for looking at that. :)
Time to get stuck into the code then!
It's interesting then that I couldn't get the VTE driver to compile, replicating the steps on the FreeNAS forum, since that post was in Jan 2011 and the 8.2 release was in Dec 2010. :-
In that post it was also necessary to include the relevant PHY code. That would certainly tie in with a mii re-write.
I'm still unsure about the Makefile. I seem to be unable to find a good resource describing the function of the different lines. Clearly if more code has to be included/compiled/built then the Makefile needs to be modified in order to automate that process.
As an example given the Makefile:# $FreeBSD: stable/8/sys/modules/vte/Makefile 216829 2010-12-31 00:21:41Z yongari $ .PATH: ${.CURDIR}/../../dev/vte KMOD= if_vte SRCS= if_vte.c device_if.h bus_if.h pci_if.h miibus_if.h .include
And the instruction:
edit Makefile to add 'miidevs.h rdcphy.c' to the list of files to build
Where should those lines be added?
Thanks again.Steve
-
Not sure at all, but could it be in target?
-
And the instruction:
edit Makefile to add 'miidevs.h rdcphy.c' to the list of files to build
Where should those lines be added?
They shouldn't. You are extrapolating too much from the template you are using. The template is for building a module from sources of a completely new driver that didn't exist in the FreeBSD source tree. You are wanting to build an driver (msk) that already exists in the FreeBSD src tree.
rdcphy.c now exists in the FreeBSD source tree in src/sys/dev/mii. A quick examination shows it claims to be support code for the RDC R6040 10/100 phy. As best I know that phy has nothing to do with msk so don't complicate your challenge by adding stuff you don't need.
-
Yes, I realise that rdcphy.c is nothing to do with the msk driver (which appears to use e1000phy) I was just using that as an example.
I expected to be able to compile the if_vte.ko module as per those instructions since the code change between now and Jan doesn't seem so dramatic. Since I cannot compile that then either I doing it wrong (very likely) or the code has changed much more than I realise. Or it never worked in the first place and that poster was making the whole thing up! The only part of those instructions that confused me was modifying the Makefile.It seems likely that some other files will need building as well and adding them to the Makefile seems like the right way to do it.
I appreciate all your help and patience with this. Clearly this is beyond my usual level of tinkering!
Steve
Edit: Actually there is significant code change in if_vte since Jan.
-
I expected to be able to compile the if_vte.ko module as per those instructions since the code change between now and Jan doesn't seem so dramatic.
A "simple" code change can hide considerable complexity. For example, a change in the name of a function called at first seems a simple change. However the "new name" function may exist in the "new" kernel but not the "old". The "new" function may call quite a number of other "new" functions. What appears at first to be a simple backport problem has now become a much more challenging backport problem.
Your compile of vte driver might have proceeded rather further if you had checked out its sources as of the date of the post rather than "now".
-
Yes, in fact the changes were signoficant.
Reading through the threads for the various bug reports that went into the driver patch for msk it seems that in fact there are samples of code in many of them and a lot dating from around the time of 8.1 rel. I think, as you said, I need to find exactly which code change is relavent to my NIC and patch the 8.1 source manually.
There is also a possibility of updating the 'firmware' in the nic to remove the problem condition in the first place. I'm looking into it.
Thanks again.
Steve