Staging
v0.6.0
https://github.com/torvalds/linux
Revision e57101991156aaba97c630f38e880f0d4012edcd authored by J.Bruce Fields on 13 December 2006, 08:35:20 UTC, committed by Linus Torvalds on 13 December 2006, 17:05:53 UTC
A comment here incorrectly states that "slack_space" is measured in words, not
bytes.  Remove the comment, and adjust a variable name and a few comments to
clarify the situation.

This is pure cleanup; there should be no change in functionality.

Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
1 parent b797b5b
Raw File
Tip revision: e57101991156aaba97c630f38e880f0d4012edcd authored by J.Bruce Fields on 13 December 2006, 08:35:20 UTC
[PATCH] knfsd: nfsd4: clarify units of COMPOUND_SLACK_SPACE
Tip revision: e571019
irq_regs.c
/* saved per-CPU IRQ register pointer
 *
 * Copyright (C) 2006 Red Hat, Inc. All Rights Reserved.
 * Written by David Howells (dhowells@redhat.com)
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */
#include <linux/module.h>
#include <asm/irq_regs.h>

#ifndef ARCH_HAS_OWN_IRQ_REGS
DEFINE_PER_CPU(struct pt_regs *, __irq_regs);
EXPORT_PER_CPU_SYMBOL(__irq_regs);
#endif
back to top