WARNING: at net/ipv4/af_inet.c:154 inet_sock_destruct
Hello, I got this kernel warning when stopping nfsd: [260104.553720] WARNING: at net/ipv4/af_inet.c:154 inet_sock_destruct+0x164/0x182() [260104.553722] Hardware name: P5K-VM [260104.553724] Modules linked in: jfs loop nfsd lockd nfs_acl auth_rpcgss exportfs sunrpc [last unloaded: microcode] [260104.553736] ... 6 Nov 2009 04:51
net: VMware virtual Ethernet NIC driver: vmxnet3
From: Shreyas Bhatewara <sbhatewara(a)vmware.com> Date: Mon, 28 Sep 2009 16:56:45 -0700 + uint32_t rxdIdx:12; /* Index of the RxDesc */ Don't use uint32_t et al. sized types, use "u32" and friends throughout. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a... 9 Oct 2009 20:27
hard lockup, followed by ext4_lookup: deleted inode referenced: 524788
On Mon, Sep 28, 2009 at 12:16:44PM -0700, Andy Isaacson wrote: After a hard lockup and reboot, my test box (running recent Linus git 851b147) came up with: [ 5.016854] EXT4-fs (sda1): mounted filesystem with ordered data mode [ 8.809125] EXT4-fs (sda1): internal journal on sda1:8 [ 10.165239]... 28 Sep 2009 23:46
[PATCH] drm/radeon/kms: Convert RV515 to new init path and associated cleanup
Convert the rv515 asic support to new init path also add an explanation in radeon.h about the new init path. There is also few cleanups associated with this change (others asic calling rv515 helper functions). Signed-off-by: Jerome Glisse <jglisse(a)redhat.com> --- drivers/gpu/drm/radeon/avivod.h | 9 - ... 28 Sep 2009 13:39
fs: scale files_lock
On Fri, 2009-09-04 at 16:51 +1000, npiggin(a)suse.de wrote: +static void file_list_lock_all(void) +{ + int i; + int nr = 0; + + for_each_possible_cpu(i) { + spinlock_t *lock; + + lock = &per_cpu(files_cpulock, i); + spin_lock_nested... 30 Sep 2009 22:30
Linux 2.6.32-rc1
It's been two weeks (and then some - but with last week being LinuxCon and Plumbers conf I extended it by a few days), and as usual that means that the merge window is all over and done with. 2.6.32-rc1 is out, so give it a whirl. What can I say? 67% drivers (the bulk of which is from 'staging', but there'... 5 Oct 2009 11:16
[PATCH] const: constify remaining file_operations
Signed-off-by: Alexey Dobriyan <adobriyan(a)gmail.com> --- arch/arm/mach-ns9xxx/clock.c | 2 - arch/blackfin/mach-bf561/coreb.c | 2 - arch/cris/arch-v10/drivers/sync_serial.c | 2 - arch/cris/arch-v32/drivers/mach-fs/gpio.c | 2 - arch/powerpc/kvm/timing.c ... 27 Sep 2009 19:00
Solving section mismatches
Sam, Any idea how to solve this: WARNING: arch/arm/kernel/built-in.o(.text+0x1ebc): Section mismatch in reference from the function cpu_idle() to the function .cpuexit.text:cpu_die() The function cpu_idle() references a function in an exit section. Often the function cpu_die() has valid usage outside the exit s... 27 Sep 2009 16:46
[GIT pull] timer updates for 2.6.32
Linus, Please pull the latest timers-for-linus git tree from: git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip.git timers-for-linus Thanks, tglx ------------------> Ashwin Chaugule (1): hrtimer: Eliminate needless reprogramming of clock events device kernel/hrtimer.c | ... 27 Sep 2009 08:00
[PATCH] softlockup: keep current softlockup period before touching timestamp
Imaging such a scenario, softlockup deadline is 60s and a softirq runs at most 65s. Assume that currently that softirq runs 50s. At this moment, issue a "echo 40 > /proc/sys/kernel/softlockup_thresh" and thus lead to recounting the timeout. The remaining time for that softirq is 15s less than new threshold 40s, whi... 27 Sep 2009 01:34