Difference between kernel ELsmp and EL

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Difference between kernel ELsmp and EL
# 1  
Old 06-22-2009
Difference between kernel ELsmp and EL

Hi,

Could anyone let me know what is the fundamental difference between the below two kernels? Or point me to some docs which explain this.

2.6.9-55.ELsmp
2.6.18-92.el5

Does it will have an impact as software built for one wont necessarily run on the other? I'm having a similar problem. Any help would be much appreciated.

Also, does the version change from RHEL 4.x to 5.x will have a siginificant impact to a software built to run on 4.x? Isn't it backward supported?

Thanks and Regards,
Tobby.
# 2  
Old 06-22-2009
the SMP stands for Symmetric Multi Processing. If you have more than 1 CPU or a CPU with multiple cores, in order to fully use their potential, you should use an SMP kernel. However, I believe this is an out of date methodology now, as the base kernel should have support for multiple CPUs to a certain extent now.

If you are writing code, be aware that there is not a linear scaling with multiple CPUs and that having multiple CPUs can cause issues with threading; both good and bad.

---------- Post updated at 01:20 PM ---------- Previous update was at 01:19 PM ----------

Also

Most software SHOULD run from RHEL 4.x to 5.x, however it may not always work. If the software was using specific calls to dynamically linked libraries that are superseded or do not exist you may have issues. This would be on a case by case basis.
# 3  
Old 06-23-2009
thanks a lot mark54g.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk to calculate difference of split and sum the difference

In the awk I am trying to subtract the difference $3-$2 of each matching $4 before the first _ (underscore) and print that value in $13. I think the awk will do that, but added comments. What I am not sure off is how to add a line or lines that will add sum each matching $13 value and put it in... (2 Replies)
Discussion started by: cmccabe
2 Replies

2. Linux

Unload kernel module at boot time (Debian Wheezy 7.2, 3.2.0-4-686-pae kernel)

Hi everyone, I am trying to prevent the ehci_hcd kernel module to load at boot time. Here's what I've tried so far: 1) Add the following line to /etc/modprobe.d/blacklist.conf (as suggested here): 2) Blacklisted the module by adding the following string to 3) Tried to blacklist the module... (0 Replies)
Discussion started by: gacanepa
0 Replies

3. Programming

what is the main difference between difference between using nonatomic lseek and O_APPEND

I think both write at the end of the file ...... but is there a sharp difference between those 2 instruction ..... thank you this is my 3rd question today forgive me :D (1 Reply)
Discussion started by: fwrlfo
1 Replies

4. Solaris

Which file is read by kernel to set its default system kernel parameters values?

Hi gurus Could anybody tell me which file is read by kernel to set its default system kernal parameters values in solaris. Here I am not taking about /etc/system file which is used to load kernal modules or to change any default system kernal parameter value Is it /dev/kmem file or something... (1 Reply)
Discussion started by: girish.batra
1 Replies

5. Linux

Supermicro(dual core) server getting rebooted after "decompressing the kernel;booting the kernel" me

supermicro(dual core) server getting rebooted after "decompressing the kernel;booting the kernel" message comes. I tried giving acpi=off to the kernel command line but same problem.It shows everything ok and no problem with memory and processors and power supplies.Wt could be the reason? It has... (1 Reply)
Discussion started by: pankajd
1 Replies

6. Linux

Linux webserver02 2.6.9-67.0.20.ELsmp

Hi, Anybody who have encountered errror on the file descriptor because of this kernel upgrade? I got all userid limit by 32k, if it will reached 20k, then server will start freezing, knocks out every body on the login when 32k. The OS fd.max-file is 65k. Any comments will be highly... (2 Replies)
Discussion started by: itik
2 Replies

7. SuSE

max number of slabs per kernel module (kernel 2.6.17, suse)

Hi All, Is there a max number of slabs that can be used per kernel module? I'm having a tough time finding out that kind of information, but the array 'node_zonelists' (mmzone.h) has a size of 5. I just want to avoid buffer overruns and other bad stuff. Cheers, Brendan (4 Replies)
Discussion started by: Brendan Kennedy
4 Replies

8. Linux

where to download Linux 2.6.9-48.ELsmp

Hi, I have a system that I need to update from Linux 2.6.9-5.ELsmp to Linux 2.6.9-48.ELsmp . can someone please point me to a link to be able to do this? thanks in advance, ~jv (2 Replies)
Discussion started by: jvmagic
2 Replies

9. Programming

kernel-kernel call communication

hi all! i have developed a mechanism in system.c to count how many times each kernel call is called. The results are held in an array in system.c . What i want to do is to create a new kernel call which will print this array. I need help in passing the array from system.c to the new kernel call. ... (5 Replies)
Discussion started by: aureliano
5 Replies
Login or Register to Ask a Question