cannot find map file


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users cannot find map file
# 1  
Old 11-14-2011
cannot find map file

Hi, all:

My writed network device driver works fine when the transmitted file is under several MegaBytes, but above this size, especially dozens of or hundreds of MegaBytes, the kernel panic ocurres! I check the kern.log and find this error :
Code:
 522 Nov 14 19:35:32 liklstar-server kerneNov 14 19:37:52 liklstar-server kernel: Cannot find map file.
 523 Nov 14 19:37:52 liklstar-server kernel: Loaded 64988 symbols from 45 modules.
 524 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] Initializing cgroup subsys cpuset
 525 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] Initializing cgroup subsys cpu
 526 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] Linux version 3.0.4 (root'at'liklstar-server) (gcc version 4.4.3 (Ubuntu 4.4.3-4ubuntu5) ) #1 SMP Su     n Nov 13 02:31:23 CST 2011
 527 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] BIOS-provided physical RAM map:
 528 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009f400 (usable)
 529 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 000000000009f400 - 00000000000a0000 (reserved)
 530 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 00000000000e2000 - 0000000000100000 (reserved)
 531 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cff90000 (usable)
 532 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 00000000cff90000 - 00000000cff9e000 (ACPI data)
 533 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 00000000cff9e000 - 00000000cffe0000 (ACPI NVS)
 534 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 00000000cffe0000 - 00000000d0000000 (reserved)
 535 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
 536 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]  BIOS-e820: 0000000100000000 - 0000000220000000 (usable)
 537 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
 538 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] DMI present.
 539 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] DMI: MSI MS-7623/880GM-E41 (MS-7623), BIOS V11.8 12/01/2010
 540 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
 541 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
 542 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] last_pfn = 0xcff90 max_arch_pfn = 0x100000
 543 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] MTRR default type: uncachable
 544 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] MTRR fixed ranges enabled:
 545 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   00000-9FFFF write-back
 546 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   A0000-EFFFF uncachable
 547 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   F0000-FFFFF write-protect
 548 Nov 14 19:37:52 liklstar-server kernel: [    0.000000] MTRR variable ranges enabled:
 549 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
 550 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
 551 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   2 base 0000C0000000 mask FFFFF0000000 write-back
 552 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   3 disabled
 553 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   4 disabled
 554 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   5 disabled
 555 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   6 disabled
 556 Nov 14 19:37:52 liklstar-server kernel: [    0.000000]   7 disabled
... ...

what do these messages mean? Is it a kernel bug? what should I do with my driver?


thanks!
li,kunlun

Last edited by vbe; 11-15-2011 at 05:54 AM.. Reason: use code tags next time for your code and data!
# 2  
Old 11-16-2011
I think 'cannot find map file' is harmless and nothing to do with your crash.

In systems with broken BIOSes which supply incorrect memory maps to the kernel, you may need to tell the kernel to ignore the BIOS map and use a map that you give to it. That's the "file" it's talking to.

I don't think it's a literal file, either, but something which gets built into the kernel at compile time.
# 3  
Old 11-17-2011
Dear Corona688:

Thanks for your help! You are crrect! The "map file" isn't the reason causing system crash!

I have already digged the bug!


thanks!
li,kunlun
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Map snps into a ref gene file

I have the following data set about the snps ID txt file POS ID 78599583 rs987435 33395779 rs345783 189807684 rs955894 33907909 rs6088791 75664046 rs11180435 218890658 rs17571465 127630276 rs17011450 90919465 rs6919430 and a gene... (7 Replies)
Discussion started by: marwah
7 Replies

2. Shell Programming and Scripting

Map new file to old file

Hellos, Some columns of a file have undergone name changes from old to new format, to run some of the scripts I need to revert back and rearrange these columns from the new to the old format. oldfile has the column headers as following, data is not important colA colB colC colD colE... (1 Reply)
Discussion started by: abh.kumar
1 Replies

3. AIX

Passing user/pass credentials to automountd map file.

How could I pass credentials to the automountd daemon through it's map files? Tried credentials=/some/file.txt - Didn't work. Tried SHARE.domain.com/user/pass/SHARE_NAME in map file - Didn't work Tried user=USER,pass=PASS - Didn't work. I can see the mounts created but when I access them... (4 Replies)
Discussion started by: Devyn
4 Replies

4. UNIX for Dummies Questions & Answers

Lookup field in map file

Hi, I have two questions which I would massively appreciate help with. 1. I am trying to insert a field into a file similar to the vlookup function in excel. In column 2 is a gene id for which i would like to insert the full name in the adjacent column. I have a map file (map.file) which... (1 Reply)
Discussion started by: genehersh
1 Replies

5. Shell Programming and Scripting

wanted to find both link file and ordinary file using single find command

find . -type fl o/p is only the ordinary file. where in it wont give the link files. (2 Replies)
Discussion started by: nikhil jain
2 Replies

6. Shell Programming and Scripting

mappin strings of two different file and finding the mapped string and then map other fields.

As i am new to unix so facing some problems in scripting: here is my question: i m having two files. 1st file say a.txt contain 3 column like SPECIALITY|UMP_CODE|SPECIALTY_CODE Addictive Diseases|25ADD|ADD Addictive Diseases/Family Practice|25ADD|ADD/FP Aerospace Medicine|1.041666667|AM... (4 Replies)
Discussion started by: dsh007
4 Replies

7. Shell Programming and Scripting

Making a hash map from a records file

Greets again. Let me first say that this forum and all of you participants are amazing. You give of your time and knowledge to those of us who aspire and have not reached your level (yet). My thanks. I have created a file of records and wish to make a hash map from it. Here is an example of what... (6 Replies)
Discussion started by: rdettwyler
6 Replies

8. Linux

Auto map network drive using SAMBA with batch file

Hi everyone. I have several shares (see smb.conf below). Each setup fairly similarly, and several groups. My end goals are: 1) to have the share automatically map as the P: drive to members of the employees group 2) to have the share automatically map as the t: drive to members of the tech... (0 Replies)
Discussion started by: unassassinable
0 Replies

9. Shell Programming and Scripting

Script to map to .csv file

Hello Guys, I want to write a script which will search for all the *.c,*.h,*.txt in the file. The result will be again search in a .csv file. If that .c file or .h or .txt is existing in the .csv,then put a * mark corresponding to the row in .csv file. ---------- Post updated at 05:19 AM... (2 Replies)
Discussion started by: suvenduperl
2 Replies

10. UNIX for Dummies Questions & Answers

samba user.map file

I am using Samba 3.0.33. The user.map file is not referred anywhere is Smb.conf. Infact, I couldn't see the user.map file any where in samba. But everything seems to be working. Is there an alternative way to refer to the users list. (2 Replies)
Discussion started by: sagar_evc
2 Replies
Login or Register to Ask a Question