dimanche 11 mai 2014

GCC - compilation 'pvscsi' Driver pour Symantec Linux erreur Automation - Stack Overflow


I am trying to compile vmware pvscsi driver for use with our linux automation tool. I have compiled the required kernel: 2.6.27.7 and try to compile the driver, but I get the following error:


# make -C /usr/src/linux-2.6.27.7 SUBDIRS=$PWD modules
make: Entering directory `/usr/src/linux-2.6.27.7'
/bin/sh: line 0: test: too many arguments
Using standalone build system.
/var/tmp/pvscsi-only/Makefile:167: Makefile.normal: No such file or directory
make[1]: *** No rule to make target `Makefile.normal'. Stop.
make: *** [_module_/var/tmp/pvscsi-only] Error 2
make: Leaving directory `/usr/src/linux-2.6.27.7'

Here is the Makefile:


#!/usr/bin/make -f
##########################################################
# Copyright (C) 1998 VMware, Inc. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation version 2 and no later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
##########################################################

####
#### VMware kernel module Makefile to be distributed externally
####

####
#### SRCROOT _must_ be a relative path.
####
SRCROOT = .

#
# open-vm-tools doesn't replicate shared source files for different modules;
# instead, files are kept in shared locations. So define a few useful macros
# to be able to handle both cases cleanly.
#
INCLUDE :=
ifdef OVT_SOURCE_DIR
AUTOCONF_DIR := $(OVT_SOURCE_DIR)/modules/linux/shared/autoconf
VMLIB_PATH = $(OVT_SOURCE_DIR)/lib/$(1)
INCLUDE += -I$(OVT_SOURCE_DIR)/modules/linux/shared
INCLUDE += -I$(OVT_SOURCE_DIR)/lib/include
else
AUTOCONF_DIR := $(SRCROOT)/shared/autoconf
INCLUDE += -I$(SRCROOT)/shared
endif


VM_UNAME = $(shell uname -r)

# Header directory for the running kernel
ifdef LINUXINCLUDE
HEADER_DIR = $(LINUXINCLUDE)
else
HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include
endif

BUILD_DIR = $(HEADER_DIR)/..

DRIVER := pvscsi
PRODUCT := tools

# Grep program
GREP = /bin/grep

vm_check_gcc = $(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null \
> /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi)
vm_check_file = $(shell if test -f $(1); then echo "yes"; else echo "no"; fi)

ifndef VM_KBUILD
VM_KBUILD := no
ifeq ($(call vm_check_file,$(BUILD_DIR)/Makefile), yes)
ifneq ($(call vm_check_file,$(BUILD_DIR)/Rules.make), yes)
VM_KBUILD := 26
endif
endif
export VM_KBUILD
endif

ifndef VM_KBUILD_SHOWN
ifeq ($(VM_KBUILD), no)
VM_DUMMY := $(shell echo >&2 "Using standalone build system.")
else
ifeq ($(VM_KBUILD), 24)
VM_DUMMY := $(shell echo >&2 "Using 2.4.x kernel build system.")
else
VM_DUMMY := $(shell echo >&2 "Using 2.6.x kernel build system.")
endif
endif
VM_KBUILD_SHOWN := yes
export VM_KBUILD_SHOWN
endif

ifneq ($(VM_KBUILD), no)

VMCCVER := $(shell $(CC) -dumpversion)

# If there is no version defined, we are in toplevel pass, not yet in kernel makefiles...
ifeq ($(VERSION),)

ifeq ($(VM_KBUILD), 24)
DRIVER_KO := $(DRIVER).o
else
DRIVER_KO := $(DRIVER).ko
endif

.PHONY: $(DRIVER_KO)

auto-build: $(DRIVER_KO)
cp -f $< $(SRCROOT)/../$(DRIVER).o

# $(DRIVER_KO) is a phony target, so compare file times explicitly
$(DRIVER): $(DRIVER_KO)
if [ $< -nt $@ ] || [ ! -e $@ ] ; then cp -f $< $@; fi

# Pass gcc version down the chain, so we can detect if kernel attempts to use unapproved compiler
VM_CCVER := $(VMCCVER)
export VM_CCVER
VM_CC := $(CC)
export VM_CC

MAKEOVERRIDES := $(filter-out CC=%,$(MAKEOVERRIDES))

#
# Define a setup target that gets built before the actual driver.
# This target may not be used at all, but if it is then it will be defined
# in Makefile.kernel
#
prebuild:: ;
postbuild:: ;

$(DRIVER_KO): prebuild
$(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \
MODULEBUILDDIR=$(MODULEBUILDDIR) modules
$(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \
MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild
endif

vm_check_build = $(shell if $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \
$(CPPFLAGS) $(CFLAGS) $(CFLAGS_KERNEL) $(LINUXINCLUDE) \
$(EXTRA_CFLAGS) -Iinclude2/asm/mach-default \
-DKBUILD_BASENAME=\"$(DRIVER)\" \
-Werror -S -o /dev/null -xc $(1) \
> /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi)

CC_WARNINGS := -Wall -Wstrict-prototypes
CC_OPTS := $(GLOBAL_DEFS) $(CC_WARNINGS) -DVMW_USING_KBUILD
ifdef VMX86_DEVEL
CC_OPTS += -DVMX86_DEVEL
endif
ifdef VMX86_DEBUG
CC_OPTS += -DVMX86_DEBUG
endif

include $(SRCROOT)/Makefile.kernel

ifdef TOPDIR
ifeq ($(VM_KBUILD), 24)

O_TARGET := $(DRIVER).o

obj-y := $($(DRIVER)-y)

include $(TOPDIR)/Rules.make
endif
endif

else

include $(SRCROOT)/Makefile.normal

endif

#.SILENT:

I have tried forcing it by updating: VM_UNAME = 2.6.27.7 and HEADER_DIR = /usr/src/linux-2.6.27.7/include


It will then compile successfully:


# make
Using 2.6.x kernel build system.
make -C /usr/src/linux-2.6.27.7/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
MODULEBUILDDIR= modules
make[1]: Entering directory `/usr/src/linux-2.6.27.7'
CC [M] /var/tmp/pvscsi-only/pvscsi.o
Building modules, stage 2.
MODPOST 1 modules
CC /var/tmp/pvscsi-only/pvscsi.mod.o
LD [M] /var/tmp/pvscsi-only/pvscsi.ko
make[1]: Leaving directory `/usr/src/linux-2.6.27.7'
make -C $PWD SRCROOT=$PWD/. \
MODULEBUILDDIR= postbuild
make[1]: Entering directory `/var/tmp/pvscsi-only'
make[1]: `postbuild' is up to date.
make[1]: Leaving directory `/var/tmp/pvscsi-only'
cp -f pvscsi.ko ./../pvscsi.o

However when I run an # insmod pvscsi.ko I get the following:


VMware PVSCSI rev 2 on bus:3 slot:0 func:0 host #0
scsi scan: INQUIRY result too short (5), using 36
scsi 0:0:0:0: Direct-Access PQ: 0 ANSI: 0
BUG: unable to handle kernel NULL pointer dereference at 0000000000000000
IP: [<ffffffffa012397a>] 0xffffffffa012397a
PGD 7d363067 PUD 75c56067 PMD 0
Oops: 0000 [1] SMP
last sysfs file: /sys/class/vc/vcsa2/dev
CPU 0
Modules linked in: pvscsi(X+) vmxnet3(X) hpilo(N) nls_iso8859_1(N) cifs(N) isofs(N) nls_base(N) autofs4(N) dm_mod(N) 8250(N) serial_core(N) thermal(N) processor(N) fan(N) thermal_sys(N) usbhid(N) usbcore(N) loop(N) edd(N) sr_mod(N) sd_mod(N) ide_cd_mod(N) cdrom(N) ide_disk(N) e1000(X) ata_piix(N) ata_generic(N) libata(N) dock(N) ide_pci_generic(N) piix(N) ide_core(N) [last unloaded: nand_ids]
Supported: No
Pid: 2103, comm: insmod Tainted: G 2.6.27.7 #1
RIP: 0010:[<ffffffffa012397a>] [<ffffffffa012397a>] 0xffffffffa012397a
RSP: 0018:ffff88007f9555d8 EFLAGS: 00010096
RAX: 0000000000000000 RBX: ffff88007c590080 RCX: 0000000000000000
RDX: ffffffff80357350 RSI: 0000000000000096 RDI: ffff88007c57de20
RBP: ffff88007f9c2d80 R08: 0000000000000000 R09: ffff88007f9c37c0
R10: 0000000000000000 R11: 0000000000000000 R12: ffff88007c57d800
R13: 0000000000000000 R14: ffff88007f9c2d80 R15: ffff88007c57de10
FS: 00007f6ec79a36d0(0000) GS:ffffffff80496980(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 0000000000000000 CR3: 000000007d3ea000 CR4: 00000000000006a0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process insmod (pid: 2103, threadinfo ffff88007f954000, task ffff88007f937360)
Stack: ffff88007ea16240 ffff880079c0e000 ffff88007c5877c8 0000000000000096
ffffffff80357350 0000000000000287 ffff88007f9c2d80 ffff88007c57d800
ffff88007ea16240 ffff88007f9c2d80 ffff88007ea16470 ffffffff8035744f
Call Trace:
[<ffffffff80357350>] ? 0xffffffff80357350
[<ffffffff8035744f>] ? 0xffffffff8035744f
[<ffffffff8035df35>] ? 0xffffffff8035df35
[<ffffffff802ec985>] ? 0xffffffff802ec985
[<ffffffff802eca66>] ? 0xffffffff802eca66
[<ffffffff802e9c31>] ? 0xffffffff802e9c31
[<ffffffff8035d605>] ? 0xffffffff8035d605
[<ffffffff8035d6f1>] ? 0xffffffff8035d6f1
[<ffffffffa0078402>] ? 0xffffffffa0078402
[<ffffffff8034f67c>] ? 0xffffffff8034f67c
[<ffffffff802f4212>] ? 0xffffffff802f4212
[<ffffffffa0079beb>] ? 0xffffffffa0079beb
[<ffffffff80351e10>] ? 0xffffffff80351e10
[<ffffffff80351c76>] ? 0xffffffff80351c76
[<ffffffff80351e10>] ? 0xffffffff80351e10
[<ffffffff80350f78>] ? 0xffffffff80350f78
[<ffffffff80351ee8>] ? 0xffffffff80351ee8
[<ffffffff80350d59>] ? 0xffffffff80350d59
[<ffffffff8034faf2>] ? 0xffffffff8034faf2
[<ffffffff8030ea10>] ? 0xffffffff8030ea10
[<ffffffff80361d45>] ? 0xffffffff80361d45
[<ffffffff8035fbfc>] ? 0xffffffff8035fbfc
[<ffffffff8035fefb>] ? 0xffffffff8035fefb
[<ffffffff802f508a>] ? 0xffffffff802f508a
[<ffffffff8023389e>] ? 0xffffffff8023389e
[<ffffffff80360467>] ? 0xffffffff80360467
[<ffffffff80360527>] ? 0xffffffff80360527
[<ffffffffa0124c0b>] ? 0xffffffffa0124c0b
[<ffffffff802cf904>] ? 0xffffffff802cf904
[<ffffffff80305ac6>] ? 0xffffffff80305ac6
[<ffffffff80351c76>] ? 0xffffffff80351c76
[<ffffffff80351e09>] ? 0xffffffff80351e09
[<ffffffff80351d80>] ? 0xffffffff80351d80
[<ffffffff803512ad>] ? 0xffffffff803512ad
[<ffffffff802822bd>] ? 0xffffffff802822bd
[<ffffffff803517c6>] ? 0xffffffff803517c6
[<ffffffff80352095>] ? 0xffffffff80352095
[<ffffffffa0128000>] ? 0xffffffffa0128000
[<ffffffff80305d58>] ? 0xffffffff80305d58
[<ffffffffa0128000>] ? 0xffffffffa0128000
[<ffffffff8020903b>] ? 0xffffffff8020903b
[<ffffffff80256824>] ? 0xffffffff80256824
[<ffffffff8020b73b>] ? 0xffffffff8020b73b


Code: 48 8b 54 24 20 48 89 95 c8 00 00 00 83 3d 46 2a 00 00 03 0f 8f 2b 01 00 00 48 8b 74 24 18 49 8d 7f 10 e8 7a a7 2c e0 48 8b 45 58 <0f> b6 08 80 f9 08 0f 94 c2 80 f9 0a 0f 94 c0 09 d0 a8 01 75 3a
RIP [<ffffffffa012397a>] 0xffffffffa012397a
RSP <ffff88007f9555d8>
CR2: 0000000000000000
---[ end trace 439208d3d88aa3be ]---

If anyone can shed any light on what I need to do to get this working I will be forever grateful!



I am trying to compile vmware pvscsi driver for use with our linux automation tool. I have compiled the required kernel: 2.6.27.7 and try to compile the driver, but I get the following error:


# make -C /usr/src/linux-2.6.27.7 SUBDIRS=$PWD modules
make: Entering directory `/usr/src/linux-2.6.27.7'
/bin/sh: line 0: test: too many arguments
Using standalone build system.
/var/tmp/pvscsi-only/Makefile:167: Makefile.normal: No such file or directory
make[1]: *** No rule to make target `Makefile.normal'. Stop.
make: *** [_module_/var/tmp/pvscsi-only] Error 2
make: Leaving directory `/usr/src/linux-2.6.27.7'

Here is the Makefile:


#!/usr/bin/make -f
##########################################################
# Copyright (C) 1998 VMware, Inc. All rights reserved.
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation version 2 and no later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
##########################################################

####
#### VMware kernel module Makefile to be distributed externally
####

####
#### SRCROOT _must_ be a relative path.
####
SRCROOT = .

#
# open-vm-tools doesn't replicate shared source files for different modules;
# instead, files are kept in shared locations. So define a few useful macros
# to be able to handle both cases cleanly.
#
INCLUDE :=
ifdef OVT_SOURCE_DIR
AUTOCONF_DIR := $(OVT_SOURCE_DIR)/modules/linux/shared/autoconf
VMLIB_PATH = $(OVT_SOURCE_DIR)/lib/$(1)
INCLUDE += -I$(OVT_SOURCE_DIR)/modules/linux/shared
INCLUDE += -I$(OVT_SOURCE_DIR)/lib/include
else
AUTOCONF_DIR := $(SRCROOT)/shared/autoconf
INCLUDE += -I$(SRCROOT)/shared
endif


VM_UNAME = $(shell uname -r)

# Header directory for the running kernel
ifdef LINUXINCLUDE
HEADER_DIR = $(LINUXINCLUDE)
else
HEADER_DIR = /lib/modules/$(VM_UNAME)/build/include
endif

BUILD_DIR = $(HEADER_DIR)/..

DRIVER := pvscsi
PRODUCT := tools

# Grep program
GREP = /bin/grep

vm_check_gcc = $(shell if $(CC) $(1) -S -o /dev/null -xc /dev/null \
> /dev/null 2>&1; then echo "$(1)"; else echo "$(2)"; fi)
vm_check_file = $(shell if test -f $(1); then echo "yes"; else echo "no"; fi)

ifndef VM_KBUILD
VM_KBUILD := no
ifeq ($(call vm_check_file,$(BUILD_DIR)/Makefile), yes)
ifneq ($(call vm_check_file,$(BUILD_DIR)/Rules.make), yes)
VM_KBUILD := 26
endif
endif
export VM_KBUILD
endif

ifndef VM_KBUILD_SHOWN
ifeq ($(VM_KBUILD), no)
VM_DUMMY := $(shell echo >&2 "Using standalone build system.")
else
ifeq ($(VM_KBUILD), 24)
VM_DUMMY := $(shell echo >&2 "Using 2.4.x kernel build system.")
else
VM_DUMMY := $(shell echo >&2 "Using 2.6.x kernel build system.")
endif
endif
VM_KBUILD_SHOWN := yes
export VM_KBUILD_SHOWN
endif

ifneq ($(VM_KBUILD), no)

VMCCVER := $(shell $(CC) -dumpversion)

# If there is no version defined, we are in toplevel pass, not yet in kernel makefiles...
ifeq ($(VERSION),)

ifeq ($(VM_KBUILD), 24)
DRIVER_KO := $(DRIVER).o
else
DRIVER_KO := $(DRIVER).ko
endif

.PHONY: $(DRIVER_KO)

auto-build: $(DRIVER_KO)
cp -f $< $(SRCROOT)/../$(DRIVER).o

# $(DRIVER_KO) is a phony target, so compare file times explicitly
$(DRIVER): $(DRIVER_KO)
if [ $< -nt $@ ] || [ ! -e $@ ] ; then cp -f $< $@; fi

# Pass gcc version down the chain, so we can detect if kernel attempts to use unapproved compiler
VM_CCVER := $(VMCCVER)
export VM_CCVER
VM_CC := $(CC)
export VM_CC

MAKEOVERRIDES := $(filter-out CC=%,$(MAKEOVERRIDES))

#
# Define a setup target that gets built before the actual driver.
# This target may not be used at all, but if it is then it will be defined
# in Makefile.kernel
#
prebuild:: ;
postbuild:: ;

$(DRIVER_KO): prebuild
$(MAKE) -C $(BUILD_DIR) SUBDIRS=$$PWD SRCROOT=$$PWD/$(SRCROOT) \
MODULEBUILDDIR=$(MODULEBUILDDIR) modules
$(MAKE) -C $$PWD SRCROOT=$$PWD/$(SRCROOT) \
MODULEBUILDDIR=$(MODULEBUILDDIR) postbuild
endif

vm_check_build = $(shell if $(CC) $(KBUILD_CPPFLAGS) $(KBUILD_CFLAGS) \
$(CPPFLAGS) $(CFLAGS) $(CFLAGS_KERNEL) $(LINUXINCLUDE) \
$(EXTRA_CFLAGS) -Iinclude2/asm/mach-default \
-DKBUILD_BASENAME=\"$(DRIVER)\" \
-Werror -S -o /dev/null -xc $(1) \
> /dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi)

CC_WARNINGS := -Wall -Wstrict-prototypes
CC_OPTS := $(GLOBAL_DEFS) $(CC_WARNINGS) -DVMW_USING_KBUILD
ifdef VMX86_DEVEL
CC_OPTS += -DVMX86_DEVEL
endif
ifdef VMX86_DEBUG
CC_OPTS += -DVMX86_DEBUG
endif

include $(SRCROOT)/Makefile.kernel

ifdef TOPDIR
ifeq ($(VM_KBUILD), 24)

O_TARGET := $(DRIVER).o

obj-y := $($(DRIVER)-y)

include $(TOPDIR)/Rules.make
endif
endif

else

include $(SRCROOT)/Makefile.normal

endif

#.SILENT:

I have tried forcing it by updating: VM_UNAME = 2.6.27.7 and HEADER_DIR = /usr/src/linux-2.6.27.7/include


It will then compile successfully:


# make
Using 2.6.x kernel build system.
make -C /usr/src/linux-2.6.27.7/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
MODULEBUILDDIR= modules
make[1]: Entering directory `/usr/src/linux-2.6.27.7'
CC [M] /var/tmp/pvscsi-only/pvscsi.o
Building modules, stage 2.
MODPOST 1 modules
CC /var/tmp/pvscsi-only/pvscsi.mod.o
LD [M] /var/tmp/pvscsi-only/pvscsi.ko
make[1]: Leaving directory `/usr/src/linux-2.6.27.7'
make -C $PWD SRCROOT=$PWD/. \
MODULEBUILDDIR= postbuild
make[1]: Entering directory `/var/tmp/pvscsi-only'
make[1]: `postbuild' is up to date.
make[1]: Leaving directory `/var/tmp/pvscsi-only'
cp -f pvscsi.ko ./../pvscsi.o

However when I run an # insmod pvscsi.ko I get the following:


VMware PVSCSI rev 2 on bus:3 slot:0 func:0 host #0
scsi scan: INQUIRY result too short (5), using 36
scsi 0:0:0:0: Direct-Access PQ: 0 ANSI: 0
BUG: unable to handle kernel NULL pointer dereference at 0000000000000000
IP: [<ffffffffa012397a>] 0xffffffffa012397a
PGD 7d363067 PUD 75c56067 PMD 0
Oops: 0000 [1] SMP
last sysfs file: /sys/class/vc/vcsa2/dev
CPU 0
Modules linked in: pvscsi(X+) vmxnet3(X) hpilo(N) nls_iso8859_1(N) cifs(N) isofs(N) nls_base(N) autofs4(N) dm_mod(N) 8250(N) serial_core(N) thermal(N) processor(N) fan(N) thermal_sys(N) usbhid(N) usbcore(N) loop(N) edd(N) sr_mod(N) sd_mod(N) ide_cd_mod(N) cdrom(N) ide_disk(N) e1000(X) ata_piix(N) ata_generic(N) libata(N) dock(N) ide_pci_generic(N) piix(N) ide_core(N) [last unloaded: nand_ids]
Supported: No
Pid: 2103, comm: insmod Tainted: G 2.6.27.7 #1
RIP: 0010:[<ffffffffa012397a>] [<ffffffffa012397a>] 0xffffffffa012397a
RSP: 0018:ffff88007f9555d8 EFLAGS: 00010096
RAX: 0000000000000000 RBX: ffff88007c590080 RCX: 0000000000000000
RDX: ffffffff80357350 RSI: 0000000000000096 RDI: ffff88007c57de20
RBP: ffff88007f9c2d80 R08: 0000000000000000 R09: ffff88007f9c37c0
R10: 0000000000000000 R11: 0000000000000000 R12: ffff88007c57d800
R13: 0000000000000000 R14: ffff88007f9c2d80 R15: ffff88007c57de10
FS: 00007f6ec79a36d0(0000) GS:ffffffff80496980(0000) knlGS:0000000000000000
CS: 0010 DS: 0000 ES: 0000 CR0: 000000008005003b
CR2: 0000000000000000 CR3: 000000007d3ea000 CR4: 00000000000006a0
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400
Process insmod (pid: 2103, threadinfo ffff88007f954000, task ffff88007f937360)
Stack: ffff88007ea16240 ffff880079c0e000 ffff88007c5877c8 0000000000000096
ffffffff80357350 0000000000000287 ffff88007f9c2d80 ffff88007c57d800
ffff88007ea16240 ffff88007f9c2d80 ffff88007ea16470 ffffffff8035744f
Call Trace:
[<ffffffff80357350>] ? 0xffffffff80357350
[<ffffffff8035744f>] ? 0xffffffff8035744f
[<ffffffff8035df35>] ? 0xffffffff8035df35
[<ffffffff802ec985>] ? 0xffffffff802ec985
[<ffffffff802eca66>] ? 0xffffffff802eca66
[<ffffffff802e9c31>] ? 0xffffffff802e9c31
[<ffffffff8035d605>] ? 0xffffffff8035d605
[<ffffffff8035d6f1>] ? 0xffffffff8035d6f1
[<ffffffffa0078402>] ? 0xffffffffa0078402
[<ffffffff8034f67c>] ? 0xffffffff8034f67c
[<ffffffff802f4212>] ? 0xffffffff802f4212
[<ffffffffa0079beb>] ? 0xffffffffa0079beb
[<ffffffff80351e10>] ? 0xffffffff80351e10
[<ffffffff80351c76>] ? 0xffffffff80351c76
[<ffffffff80351e10>] ? 0xffffffff80351e10
[<ffffffff80350f78>] ? 0xffffffff80350f78
[<ffffffff80351ee8>] ? 0xffffffff80351ee8
[<ffffffff80350d59>] ? 0xffffffff80350d59
[<ffffffff8034faf2>] ? 0xffffffff8034faf2
[<ffffffff8030ea10>] ? 0xffffffff8030ea10
[<ffffffff80361d45>] ? 0xffffffff80361d45
[<ffffffff8035fbfc>] ? 0xffffffff8035fbfc
[<ffffffff8035fefb>] ? 0xffffffff8035fefb
[<ffffffff802f508a>] ? 0xffffffff802f508a
[<ffffffff8023389e>] ? 0xffffffff8023389e
[<ffffffff80360467>] ? 0xffffffff80360467
[<ffffffff80360527>] ? 0xffffffff80360527
[<ffffffffa0124c0b>] ? 0xffffffffa0124c0b
[<ffffffff802cf904>] ? 0xffffffff802cf904
[<ffffffff80305ac6>] ? 0xffffffff80305ac6
[<ffffffff80351c76>] ? 0xffffffff80351c76
[<ffffffff80351e09>] ? 0xffffffff80351e09
[<ffffffff80351d80>] ? 0xffffffff80351d80
[<ffffffff803512ad>] ? 0xffffffff803512ad
[<ffffffff802822bd>] ? 0xffffffff802822bd
[<ffffffff803517c6>] ? 0xffffffff803517c6
[<ffffffff80352095>] ? 0xffffffff80352095
[<ffffffffa0128000>] ? 0xffffffffa0128000
[<ffffffff80305d58>] ? 0xffffffff80305d58
[<ffffffffa0128000>] ? 0xffffffffa0128000
[<ffffffff8020903b>] ? 0xffffffff8020903b
[<ffffffff80256824>] ? 0xffffffff80256824
[<ffffffff8020b73b>] ? 0xffffffff8020b73b


Code: 48 8b 54 24 20 48 89 95 c8 00 00 00 83 3d 46 2a 00 00 03 0f 8f 2b 01 00 00 48 8b 74 24 18 49 8d 7f 10 e8 7a a7 2c e0 48 8b 45 58 <0f> b6 08 80 f9 08 0f 94 c2 80 f9 0a 0f 94 c0 09 d0 a8 01 75 3a
RIP [<ffffffffa012397a>] 0xffffffffa012397a
RSP <ffff88007f9555d8>
CR2: 0000000000000000
---[ end trace 439208d3d88aa3be ]---

If anyone can shed any light on what I need to do to get this working I will be forever grateful!


0 commentaires:

Enregistrer un commentaire