ProLiant Servers - Netservers
1753383 Members
5836 Online
108792 Solutions
New Discussion

DL580 with AXL 600L SSL Accelerator under RedHat Linux

 
CA1084284
New Member

DL580 with AXL 600L SSL Accelerator under RedHat Linux

We are trying to setup the AXL600L SSL accelerator card on a DL580 running Red Hat Enterprise Linux 2.1 kernel 2.4.9. When we try to install the driver (rpm --rebuild axldrv2.x-x.src.rpm) we got an error with the attached error logs. However, the application (rpm --rebuild axlapp-3.x-x.src.rpm) can be installed fine without any errors. Any ideas?
1 REPLY 1
cemtan
New Member

Re: DL580 with AXL 600L SSL Accelerator under RedHat Linux

Just change the line 544 in axl.c from

return (remap_page_range(vma->vm_start, virt_to_phys(axl_shared),
size, vma->vm_page_prot));

to

return (remap_page_range(vma, vma->vm_start, virt_to_phys(axl_shared),
size, vma->vm_page_prot));

and recreate axldrv.tar file under SOURCES directory. Now you can use spec file to compile your kernel.

There is another issue if your OS is RHEL AS 3.0. You also should change the makefile for this OS.

You should comment second line starting with NAME and use first one.

NAME := $(shell uname -r | sed s/smp// | sed s/enterprise//)
#NAME := $(shell uname -r | sed s///g)