Current Kernel Development

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Current Kernel Development
# 1  
Old 02-18-2002
Current Kernel Development

Information on current kernel development status & Compatibality Status.

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. What is on Your Mind?

TRACKER for current tasks, backlogs and new thoughts for forum's development work.

Hello All, I am opening this thread for keeping track of on going things/tasks in forums, forum's backlog tasks and for posting new thoughts related to forum's betterment, all are invited to post their ideas, thoughts, views here. Completed tasks: 1- HTML and php code's upgrades to new... (8 Replies)
Discussion started by: RavinderSingh13
8 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. Slackware

/boot: how do I change the current kernel?

Slackware 14.0 Hi: I once changed the smp kernel running in my system by another one in /boot. What I did was to relink /boot/System.map, /boot/vmlinuz and /boot/config. But I don't remember if I did something else. Would that alone be OK. (4 Replies)
Discussion started by: stf92
4 Replies

4. UNIX for Dummies Questions & Answers

Where to find Kernel development Information

Hi, I would like to do some research on the Linux kernel. Where can I find information about the current kernel development, who is working on the kernel. I looked up the change log on the kernels main page, but that doesn't help either. My goal is to find out where the focus of the current... (3 Replies)
Discussion started by: Learn4Life
3 Replies

5. Programming

Linux Kernel code "current" macro

I was going through the Linux code, i stuck with few inline assembly language code, I have tried online but in vain. Any help is much appreciated. Thanks. /* how to get the thread information struct from C */ static inline struct thread_info *current_thread_info(void) { struct... (3 Replies)
Discussion started by: kumaran_5555
3 Replies

6. UNIX for Advanced & Expert Users

how to display pid and other parameters of current process through kernel module ?

how to display pid and other parameters of current process in linux platform ? i know it can be done through a linux commmand ps -F but i want it done through kernel program thanks in advance (1 Reply)
Discussion started by: vaibhavkorde
1 Replies

7. UNIX for Advanced & Expert Users

How to check what are the current kernel parameter settings

Hi all, I have four (4) different UNIX flavours and I want to know whether the following commands are correct with respect to wanting to check on what are my current kernel parameter settings. I just want to clear the doubts hanging over my head whether the commands below are the right ones... (2 Replies)
Discussion started by: newbie_01
2 Replies

8. 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

9. Programming

How to stop other processes and kernel from printing output on current virtual term

Hello All, Background ======== I am creating a virtual appliance console for a software stack on VMware ESXi. I am using Centos 5.x as the Linux distro (Guest OS). I have created a ncurses based application that does the user authentication and present him with some basic controls to do basic... (2 Replies)
Discussion started by: ku@ntum
2 Replies

10. 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
Login or Register to Ask a Question
KEXTSTAT(8)						    BSD System Manager's Manual 					       KEXTSTAT(8)

NAME
kextstat -- display status of dynamically loaded kernel extensions SYNOPSIS
kextstat [-b kext_bundle_id] [-k] [-l] DESCRIPTION
The kextstat utility displays the status of any kernel extensions currently loaded in the kernel. The following information is shown for each loaded kernel extension: Index The load index of the kernel extension (used to track references). Gaps in the list indicate kernel extensions that have been unloaded. Refs The number of references to this extension by others. If nonzero, the extension cannot be unloaded. Address The address in kernel space where the extension has been loaded. Size The number of bytes of kernel memory that the extension occupies. If this is zero, the extension is actually a built-in part of the kernel that has a record as an extension for resolving dependencies among extensions. Wired The number of wired bytes of kernel memory that the extension occupies. Name The CFBundleIdentifier of the kernel extension. (Version) The CFBundleVersion of the kernel extension. <Linked Against> The index numbers of all other kernel extensions that this extension has a reference to. The following options are available: -b kext_bundle_id Display the status of only the kernel extension with the given bundle identifier. This option trumps the -k option; if both are given and a kernel component is specified, its information is shown. -k Don't show information for built-in components of the kernel. -l Print the list of loaded kexts only and omit the header (useful for running output through text-analysis tools). DIAGNOSTICS
The kextstat utility exits with a status of 0 on success and with a nonzero status if an error occurs. SEE ALSO
kextcache(8), kextd(8), kextload(8), kextunload(8) HISTORY
The kextstat command is based on the command kldstat written by Doug Rabson <dfr@FreeBSD.org> Darwin April 17, 2002 Darwin