Last active
August 29, 2015 13:59
-
-
Save hiroyuki-sato/10589939 to your computer and use it in GitHub Desktop.
pib and linux-3.3.8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make -k -C /path/to/build-iso/pkgs/linux-image/debian/linux-vyatta-kbuild/usr/src/linux-image/debian/build/build-amd64-none-amd64-vyos M=`pwd` modules | |
make: Entering directory `/path/to/build-iso/pkgs/linux-image/debian/linux-vyatta-kbuild/usr/src/linux-image/debian/build/build-amd64-none-amd64-vyos' | |
CC [M] /path/to/pib/driver/pib_main.o | |
/path/to/pib/driver/pib_main.c: In function ‘init_port’: | |
/path/to/pib/driver/pib_main.c:644: error: ‘IB_SPEED_QDR’ undeclared (first use in this function) | |
/path/to/pib/driver/pib_main.c:644: error: (Each undeclared identifier is reported only once | |
/path/to/pib/driver/pib_main.c:644: error: for each function it appears in.) | |
make[1]: *** [/path/to/pib/driver/pib_main.o] Error 1 | |
CC [M] /path/to/pib/driver/pib_mad.o | |
/path/to/pib/driver/pib_mad.c: In function ‘process_subn’: | |
/path/to/pib/driver/pib_mad.c:110: error: ‘IB_MGMT_MAD_STATUS_BAD_VERSION’ undeclared (first use in this function) | |
/path/to/pib/driver/pib_mad.c:110: error: (Each undeclared identifier is reported only once | |
/path/to/pib/driver/pib_mad.c:110: error: for each function it appears in.) | |
/path/to/pib/driver/pib_mad.c: In function ‘pib_subn_set_portinfo’: | |
/path/to/pib/driver/pib_mad.c:696: error: ‘IB_SPEED_SDR’ undeclared (first use in this function) | |
/path/to/pib/driver/pib_mad.c:699: error: ‘IB_SPEED_DDR’ undeclared (first use in this function) | |
/path/to/pib/driver/pib_mad.c:702: error: ‘IB_SPEED_QDR’ undeclared (first use in this function) | |
make[1]: *** [/path/to/pib/driver/pib_mad.o] Error 1 | |
CC [M] /path/to/pib/driver/pib_easy_sw.o | |
/path/to/pib/driver/pib_easy_sw.c: In function ‘pib_create_switch’: | |
/path/to/pib/driver/pib_easy_sw.c:112: error: ‘IB_SPEED_QDR’ undeclared (first use in this function) | |
/path/to/pib/driver/pib_easy_sw.c:112: error: (Each undeclared identifier is reported only once | |
/path/to/pib/driver/pib_easy_sw.c:112: error: for each function it appears in.) | |
make[1]: *** [/path/to/pib/driver/pib_easy_sw.o] Error 1 | |
make[1]: Target `__build' not remade because of errors. | |
make: *** [_module_/path/to/pib/driver] Error 2 | |
make: Target `modules' not remade because of errors. | |
make: Leaving directory `/path/to/build-iso/pkgs/linux-image/debian/linux-vyatta-kbuild/usr/src/linux-image/debian/build/build-amd64-none-amd64-vyos' | |
#define IB_MGMT_MAD_STATUS_BAD_VERSION 0x0004 | |
enum ib_port_speed { | |
IB_SPEED_SDR = 1, | |
IB_SPEED_DDR = 2, | |
IB_SPEED_QDR = 4, | |
IB_SPEED_FDR10 = 8, | |
IB_SPEED_FDR = 16, | |
IB_SPEED_EDR = 32 | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment