Posts

Showing posts from October, 2013

Debugging suspend on Toshiba R830-10p: Some test results and logs

When testing suspend to RAM, all tests went well. But the real thing doesn't work... Ideas? # echo freezer > /sys/power/pm_test # echo mem > /sys/power/state [27354.755748] PM: Syncing filesystems ... done. [27354.780184] PM: Preparing system for mem sleep [27354.780687] Freezing user space processes ... (elapsed 0.007 seconds) done. [27354.787975] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done. [27354.789133] suspend debug: Waiting for 5 seconds. [27359.783027] PM: Finishing wakeup. [27359.783028] Restarting tasks ... done. [27359.784320] video LNXVIDEO:01: Restoring backlight state # echo devices > /sys/power/pm_test # echo mem > /sys/power/state  [27476.796841] PM: Syncing filesystems ... done. [27476.820641] PM: Preparing system for mem sleep [27476.820952] Freezing user space processes ... (elapsed 0.001 seconds) done. [27476.822083] Freezing remaining freezable tasks ... (elapsed 0.001 seconds) done. [27476.823290

Kernel Summit 2013

Image
I did a brief presentation of Coccinelle in a lightning talk on Friday. It was the first time I had Linus on the audience. :-) Slides  here . Photo on the Linux Kernel Summit 2013. I'm near Linus and Greg :-)* :-) *Photo by: Thorsten Leemhuis

Fedora: Compile a single module directory for current running Kernel

Sometimes one may want to just compile a single module and use it without rebooting the machine. In my case I wanted to play with 8139cp/8139too modules inside a KVM virtual machine running Fedora. There are two requirements: 1 - Kernel source code 2 - Kernel development package The source code is where to do the changes, while the development package contains the headers that allow to compile Kernel modules with the right version magic. There are some options for obtaining the Kernel source code, but here the Fedora way is listed. You could probably download the Kernel from http://kernel.org . Install packages, prepare RPM buil tree, and "install" the source code(Fedora way): [fedora] $ sudo yum install @"Development Tools" rpmdevtools yum-utils ncurses-devel [fedora] $ rpmdev-setuptree [fedora] $ yumdownloader --source kernel [fedora] $ sudo yum-builddep kernel-<version>.src.rpm [fedora] $ rpm -Uvh kernel-<version>.src.rpm Prepare the sou