1. 09 12月, 2006 25 次提交
  2. 08 12月, 2006 15 次提交
    • Z
      [IA64] IA64 Kexec/kdump · a7956113
      Zou Nan hai 提交于
      Changes and updates.
      
      1. Remove fake rendz path and related code according to discuss with Khalid Aziz.
      2. fc.i offset fix in relocate_kernel.S.
      3. iospic shutdown code eoi and mask race fix from Fujitsu.
      4. Warm boot hook in machine_kexec to SN SAL code from Jack Steiner.
      5. Send slave to SAL slave loop patch from Jay Lan.
      6. Kdump on non-recoverable MCA event patch from Jay Lan
      7. Use CTL_UNNUMBERED in kdump_on_init sysctl.
      Signed-off-by: NZou Nan hai <nanhai.zou@intel.com>
      Signed-off-by: NTony Luck <tony.luck@intel.com>
      a7956113
    • L
      Add "run_scheduled_work()" workqueue function · 68380b58
      Linus Torvalds 提交于
      This allows workqueue users to run just their own pending work, rather
      than wait for the whole workqueue to finish running.  This solves the
      deadlock with networking libphy that was due to other workqueue entries
      possibly needing a lock that was held by the routine that wanted to
      flush its own work.
      
      It's not wonderful: if you absolutely need to synchronize with the work
      function having been executed, any user strictly speaking should have
      its own completion tracking logic, since when we run things explicitly
      by hand, the generic workqueue layer can no longer help us synchronize.
      
      Also, this is strictly only usable for work that has been scheduled
      without any delayed timers.  You can not mix the new interface with
      schedule_delayed_work().
      
      But it's better than what we had currently.
      Acked-by: NMaciej W. Rozycki <macro@linux-mips.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      68380b58
    • A
      [PATCH] elf.h: forward declare struct file · 6cf24f03
      Andrew Morton 提交于
        In file included from include/asm/patch.h:14,
      		 from arch/ia64/kernel/patch.c:10:
        include/linux/elf.h:375: warning: "struct file" declared inside parameter list
        include/linux/elf.h:375: warning: its scope is only this definition or declaration, which is probably not what you want
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6cf24f03
    • C
      [PATCH] IPMI: Fix BT long busy · 4d7cbac7
      Corey Minyard 提交于
      The IPMI BT subdriver has been patched to survive "long busy" timeouts seen
      during firmware upgrades and resets.  The patch never returns the HOSED state,
      synthesizes response messages with meaningful completion codes, and recovers
      gracefully when the hardware finishes the long busy.  The subdriver now issues
      a "Get BT Capabilities" command and properly uses those results.  More
      informative completion codes are returned on error from transaction starts;
      this logic was propogated to the KCS and SMIC subdrivers.  Finally, indent and
      other style quirks were normalized.
      Signed-off-by: NRocky Craig <rocky.craig@hp.com>
      Signed-off-by: NCorey Minyard <minyard@acm.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      4d7cbac7
    • C
      [PATCH] IPMI: Add maintenance mode · b9675136
      Corey Minyard 提交于
      Some commands and operations on a BMC can cause the BMC to "go away" for a
      while.  This can cause the automatic flag processing and other things of that
      nature to timeout and generate annoying logs, or possibly cause other bad
      things to happen when in firmware update mode.
      
      Add detection of those commands (cold reset, warm reset, and any firmware
      command) and turns off automatic processing for 30 seconds.  It also add a
      manual override either way.
      Signed-off-by: NCorey Minyard <minyard@acm.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      b9675136
    • C
      [PATCH] IPMI: pass sysfs name from lower level driver · 759643b8
      Corey Minyard 提交于
      Pass in the sysfs name from the lower-level IPMI driver, as the coming IPMI
      serial driver will need that to link properly from the serial device sysfs
      directory.
      Signed-off-by: NCorey Minyard <minyard@acm.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      759643b8
    • P
      [PATCH] nbd: show nbd client pid in sysfs · 6b39bb65
      Paul Clements 提交于
      Allow nbd to expose the nbd-client daemon's PID in /sys/block/nbd<x>/pid.
      
      This is helpful for tracking connection status of a device and for
      determining which nbd devices are currently in use.
      Signed-off-by: NPaul Clements <paul.clements@steeleye.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      6b39bb65
    • B
      [PATCH] aio: remove ki_retried debugging member · 97d2a805
      Benjamin LaHaise 提交于
      Remove the ki_retried member from struct kiocb.  I think the idea was
      bounced around a while back, but Arnaldo pointed out another reason that we
      should dig it up when he pointed out that the last cacheline of struct
      kiocb only contains 4 bytes.  By removing the debugging member, we save
      more than the 8 byte on 64 bit machines.
      Signed-off-by: NBenjamin LaHaise <bcrl@kvack.org>
      Acked-by: NKen Chen <kenneth.w.chen@intel.com>
      Acked-by: NZach Brown <zach.brown@oracle.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      97d2a805
    • M
      [PATCH] Kexec / Kdump: Unify elf note code · 85916f81
      Magnus Damm 提交于
      The elf note saving code is currently duplicated over several
      architectures.  This cleanup patch simply adds code to a common file and
      then replaces the arch-specific code with calls to the newly added code.
      
      The only drawback with this approach is that s390 doesn't fully support
      kexec-on-panic which for that arch leads to introduction of unused code.
      Signed-off-by: NMagnus Damm <magnus@valinux.co.jp>
      Cc: Vivek Goyal <vgoyal@in.ibm.com>
      Cc: Andi Kleen <ak@suse.de>
      Cc: Paul Mackerras <paulus@samba.org>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      85916f81
    • H
      [PATCH] struct seq_operations and struct file_operations constification · 15ad7cdc
      Helge Deller 提交于
       - move some file_operations structs into the .rodata section
      
       - move static strings from policy_types[] array into the .rodata section
      
       - fix generic seq_operations usages, so that those structs may be defined
         as "const" as well
      
      [akpm@osdl.org: couple of fixes]
      Signed-off-by: NHelge Deller <deller@gmx.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      15ad7cdc
    • R
      [PATCH] Kbuild: add 3 more header files to get properly "unifdef"ed · a0e7688d
      Robert P. J. Day 提交于
      Add 3 more files to get "unifdef"ed when creating sanitized headers with
      "make headers_install".
      Signed-off-by: NRobert P. J. Day <rpjday@mindspring.com>
      Acked-by: NDavid Woodhouse <dwmw2@infradead.org>
      Acked-by: N"John W. Linville" <linville@tuxdriver.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      a0e7688d
    • M
      [PATCH] fs: reiserfs add missing brackets · 5296c7be
      Mariusz Kozlowski 提交于
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      5296c7be
    • J
      [PATCH] Trivial cleanup in the PCI IDs for the CS5535 · 65867beb
      Jordan Crouse 提交于
      Rename a poorly worded PCI ID for the Geode GX and CS5535 companion chips.
      The graphics processor and host bridge actually live in the northbridge on
      the integrated processor, not in the companion chip.
      Signed-off-by: NJordan Crouse <jordan.crouse@amd.com>
      Acked-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      65867beb
    • A
      [PATCH] proper prototype for remove_inode_dquot_ref() · 0da1480e
      Adrian Bunk 提交于
      Add a proper prototype for remove_inode_dquot_ref() in
      include/linux/quotaops.h
      Signed-off-by: NAdrian Bunk <bunk@stusta.de>
      Acked-by: NJan Kara <jack@suse.cz>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      0da1480e
    • A
      [PATCH] Save some bytes in struct inode · 12d40e43
      Arnaldo Carvalho de Melo 提交于
      [acme@newtoy net-2.6.20]$ pahole --cacheline 64 fs/inode.o inode
      /* /pub/scm/linux/kernel/git/acme/net-2.6.20/include/linux/dcache.h:86 */
      struct inode {
              struct hlist_node          i_hash;               /*     0     8 */
              struct list_head           i_list;               /*     8     8 */
              struct list_head           i_sb_list;            /*    16     8 */
              struct list_head           i_dentry;             /*    24     8 */
              long unsigned int          i_ino;                /*    32     4 */
              atomic_t                   i_count;              /*    36     4 */
              umode_t                    i_mode;               /*    40     2 */
      
              /* XXX 2 bytes hole, try to pack */
      
              unsigned int               i_nlink;              /*    44     4 */
              uid_t                      i_uid;                /*    48     4 */
              gid_t                      i_gid;                /*    52     4 */
              dev_t                      i_rdev;               /*    56     4 */
              loff_t                     i_size;               /*    60     8 */
              struct timespec            i_atime;              /*    68     8 */
              struct timespec            i_mtime;              /*    76     8 */
              struct timespec            i_ctime;              /*    84     8 */
              unsigned int               i_blkbits;            /*    92     4 */
              long unsigned int          i_version;            /*    96     4 */
              blkcnt_t                   i_blocks;             /*   100     4 */
              short unsigned int         i_bytes;              /*   104     2 */
      
              /* XXX 2 bytes hole, try to pack */
      
              spinlock_t                 i_lock;               /*   108    40 */
              struct mutex               i_mutex;              /*   148    76 */
              struct rw_semaphore        i_alloc_sem;          /*   224    64 */
              struct inode_operations *  i_op;                 /*   288     4 */
              const struct file_operations  * i_fop;           /*   292     4 */
              struct super_block *       i_sb;                 /*   296     4 */
              struct file_lock *         i_flock;              /*   300     4 */
              struct address_space *     i_mapping;            /*   304     4 */
              struct address_space       i_data;               /*   308   188 */
              struct list_head           i_devices;            /*   496     8 */
              union                      ;                     /*   504     4 */
              int                        i_cindex;             /*   508     4 */
              __u32                      i_generation;         /*   512     4 */
              /* ---------- cacheline 8 boundary ---------- */
              long unsigned int          i_dnotify_mask;       /*   516     4 */
              struct dnotify_struct *    i_dnotify;            /*   520     4 */
              struct list_head           inotify_watches;      /*   524     8 */
              struct mutex               inotify_mutex;        /*   532    76 */
              long unsigned int          i_state;              /*   608     4 */
              long unsigned int          dirtied_when;         /*   612     4 */
              unsigned int               i_flags;              /*   616     4 */
              atomic_t                   i_writecount;         /*   620     4 */
              void *                     i_security;           /*   624     4 */
              void *                     i_private;            /*   628     4 */
      }; /* size: 632, sum members: 628, holes: 2, sum holes: 4 */
      
      [acme@newtoy net-2.6.20]$
      
      So just moving i_mode to after i_bytes we save 4 bytes by nuking both holes:
      
      [acme@newtoy net-2.6.20]$ codiff -V /tmp/inode.o.before fs/inode.o
      /pub/scm/linux/kernel/git/acme/net-2.6.20/fs/inode.c:
        struct inode |   -4
          i_mode;
           from: umode_t               /*    40(0)     2(0) */
           to:   umode_t               /*   102(0)     2(0) */
       1 struct changed
      [acme@newtoy net-2.6.20]$
      
      I've prunned all the other offset changes, only this one is of interest here.
      
      So now we have:
      
      [acme@newtoy net-2.6.20]$ pahole --cacheline 64 ../OUTPUT/qemu/net-2.6.20/fs/inode.o inode
      /* /pub/scm/linux/kernel/git/acme/net-2.6.20/include/linux/dcache.h:86 */
      struct inode {
              struct hlist_node          i_hash;               /*     0     8 */
              struct list_head           i_list;               /*     8     8 */
              struct list_head           i_sb_list;            /*    16     8 */
              struct list_head           i_dentry;             /*    24     8 */
              long unsigned int          i_ino;                /*    32     4 */
              atomic_t                   i_count;              /*    36     4 */
              unsigned int               i_nlink;              /*    40     4 */
              uid_t                      i_uid;                /*    44     4 */
              gid_t                      i_gid;                /*    48     4 */
              dev_t                      i_rdev;               /*    52     4 */
              loff_t                     i_size;               /*    56     8 */
              /* ---------- cacheline 1 boundary ---------- */
              struct timespec            i_atime;              /*    64     8 */
              struct timespec            i_mtime;              /*    72     8 */
              struct timespec            i_ctime;              /*    80     8 */
              unsigned int               i_blkbits;            /*    88     4 */
              long unsigned int          i_version;            /*    92     4 */
              blkcnt_t                   i_blocks;             /*    96     4 */
              short unsigned int         i_bytes;              /*   100     2 */
              umode_t                    i_mode;               /*   102     2 */
              spinlock_t                 i_lock;               /*   104    40 */
              struct mutex               i_mutex;              /*   144    76 */
              struct rw_semaphore        i_alloc_sem;          /*   220    64 */
              struct inode_operations *  i_op;                 /*   284     4 */
              const struct file_operations  * i_fop;           /*   288     4 */
              struct super_block *       i_sb;                 /*   292     4 */
              struct file_lock *         i_flock;              /*   296     4 */
              struct address_space *     i_mapping;            /*   300     4 */
              struct address_space       i_data;               /*   304   188 */
              struct list_head           i_devices;            /*   492     8 */
              union                      ;                     /*   500     4 */
              int                        i_cindex;             /*   504     4 */
              __u32                      i_generation;         /*   508     4 */
              /* ---------- cacheline 8 boundary ---------- */
              long unsigned int          i_dnotify_mask;       /*   512     4 */
              struct dnotify_struct *    i_dnotify;            /*   516     4 */
              struct list_head           inotify_watches;      /*   520     8 */
              struct mutex               inotify_mutex;        /*   528    76 */
              long unsigned int          i_state;              /*   604     4 */
              long unsigned int          dirtied_when;         /*   608     4 */
              unsigned int               i_flags;              /*   612     4 */
              atomic_t                   i_writecount;         /*   616     4 */
              void *                     i_security;           /*   620     4 */
              void *                     i_private;            /*   624     4 */
      }; /* size: 628 */
      
      [acme@newtoy net-2.6.20]$
      Signed-off-by: NArnaldo Carvalho de Melo <acme@mandriva.com>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      12d40e43