ChangeSet@1.1414, 2003-10-02 01:11:57-07:00, viro@parcelfarce.linux.theplanet.co.uk
  [PATCH] Better UDF oops fix
  
  Rather than not kfree'ing the UDF data in the case of a bad inode (which
  still _may_ have had the UDF data already allocated to it), make sure to
  initialize the pointer to NULL properly when we're done with it.

ChangeSet@1.1413, 2003-10-02 01:00:15-07:00, akpm@osdl.org
  [PATCH] Disable floppy and the related ioctl32s on some platforms
  
  From: Arun Sharma <arun.sharma@intel.com>
  
  Based on some earlier discussion:
  
  http://marc.theaimsgroup.com/?t=106015010700002&r=1&w=2
  
  here's a new patch that attempts to disable BLK_DEV_FD on platforms which
  don't support it.  The patch also attempts to remove the duplication of the
  logic in compat_ioctl.h.

ChangeSet@1.1412, 2003-10-02 01:00:06-07:00, akpm@osdl.org
  [PATCH] update unistd.h for sys_vserver

ChangeSet@1.1411, 2003-10-02 00:59:58-07:00, akpm@osdl.org
  [PATCH] Update James Morris's email address
  
  From: James Morris <jmorris@redhat.com>

ChangeSet@1.1410, 2003-10-02 00:59:49-07:00, akpm@osdl.org
  [PATCH] ioctl32 fix to SG_IO
  
  From: Arun Sharma <arun.sharma@intel.com>
  
  A minor bug fix to the ioctl32 code handling SG_IO.  sgio->dxferp is not
  initialzed properly.

ChangeSet@1.1409, 2003-10-02 00:59:42-07:00, akpm@osdl.org
  [PATCH] Fix allyesconfig for HugeTLB-less archs
  
  From: Geert Uytterhoeven <geert@linux-m68k.org>
  
  Make that allyesconfig works on architectures that don't support HugeTLBs.

ChangeSet@1.1408, 2003-10-02 00:59:34-07:00, akpm@osdl.org
  [PATCH] Fix compile warning in g_NCR5380
  
  From: Andries.Brouwer@cwi.nl
  
   `generic_NCR5380_biosparam' declared `static' but never defined

ChangeSet@1.1407, 2003-10-02 00:59:27-07:00, akpm@osdl.org
  [PATCH] update Documentation/iostats.txt
  
  From: Rick Lindsley <ricklind@us.ibm.com>
  
  One typo corrected, and the references to 2.5 are minimized and mostly
  changed to 2.6.

ChangeSet@1.1406, 2003-10-02 00:59:18-07:00, akpm@osdl.org
  [PATCH] /proc/PID/auxv file and NT_AUXV core note
  
  From: Roland McGrath <roland@redhat.com>
  
  gdb really needs some way to know the AT_SYSINFO_EHDR value for a process
  being debugged or for the dead process described by a core file.  Without
  this value, it can't find the information necessary to show backtraces of
  threads waiting in system calls.  There are any number of ways this
  information could be made available.  Here is one solution that provides
  more debugging information in a clean and general fashion.
  
  I've added access to the AT_* values passed to a process for third parties
  to examine for debugging purposes.  The same data passed on the stack at
  startup is made available in /proc/PID/auxv and is written in an NT_AUXV
  note in core dumps.  (Both of these are consistent with what Solaris does
  using the same names.)
  
  Here are two different patches that implement the same thing differently.
  The first patch uses a ref-counted data structure to copy the aux vector
  and shares among forked mm's until they exec and get a new one.  The second
  patch avoids the complexity of that data structure by simply expanding the
  mm_struct with space to hold a copy of the data.  Both patches work
  correctly; I have examined the new /proc/PID/auxv file and core dumps.
  
  I hope you will consider including one of these patches, or at least some
  way of getting at this information from the debugger.  I am certainly open
  to other suggestions on implementing this feature, and to suggestions on
  alternative interfaces for getting the AT_SYSINFO_EHDR value cleanly.

ChangeSet@1.1405, 2003-10-02 00:59:11-07:00, akpm@osdl.org
  [PATCH] misc fixes
  
  - mpparse printk should be in hex (john stultz <johnstul@us.ibm.com>)
  
  - fiddle with RCU copyright messages (Dipankar Sarma <dipankar@in.ibm.com>)
  
  - use print_dev_t() for sysfs dev file in videodev.c (Gerd Knorr
    <kraxel@bytesex.org>)
  
  - comx-hw-munich.c 64-bit warning fix (Vinay K Nallamothu
    <vinay.nallamothu@gsecone.com>)
  
  - random.c return val fix

ChangeSet@1.1404, 2003-10-02 00:59:03-07:00, akpm@osdl.org
  [PATCH] befs: fix resource leak on register_filesystem failure
  
  From: Will Dyson <will_dyson@pobox.com>
  
  Remember to free the inode cache if register_filesystem() fails.

ChangeSet@1.1403, 2003-10-02 00:58:55-07:00, akpm@osdl.org
  [PATCH] scripts/pnmtologo.c warning fixes
  
  From: Rolf Eike Beer <eike-kernel@sf-tec.de>
  
  this patch makes some ints to unsigned ints.  They are only used as loop
  counters and compared to unsigned ints.  GCC 3.3 doesn't like this.  They
  will never be negative anyway, so we could easily shut him up.

ChangeSet@1.1402, 2003-10-02 00:58:48-07:00, akpm@osdl.org
  [PATCH] Pass nameidata to security_inode_permission hook
  
  From: Stephen Smalley <sds@epoch.ncsc.mil>
  
  This patch changes the security_inode_permission hook to also take a
  nameidata parameter in addition to the existing inode and mask parameters. 
  
  A nameidata is already passed (although sometimes NULL) to
  fs/namei.c:permission(), and the patch changes exec_permission_lite() to
  also take a nameidata parameter so that it can pass it along to the
  security hook.
  
  The patch includes corresponding changes to the SELinux module to use the
  nameidata information when it is available; this allows SELinux to include
  pathname information in audit messages when a nameidata structure was
  supplied.

ChangeSet@1.1401, 2003-10-02 00:58:39-07:00, akpm@osdl.org
  [PATCH] Fix bug in SELinux convert_context
  
  From: Stephen Smalley <sds@epoch.ncsc.mil>
  
  This patch fixes a bug introduced by earlier code cleanups in the SELinux
  convert_context code that manifests upon a policy reload that removes
  previously valid security attributes.  Thanks to Magosanyi Arpad for
  reporting the bug.

ChangeSet@1.1400, 2003-10-02 00:58:31-07:00, akpm@osdl.org
  [PATCH] fix memleak in mtd/chips/cfi_cmdset_0020.c
  
  From: Felipe W Damasio <felipewd@terra.com.br>
  
  If other kmallocs failed after successfully allocating a "struct mtd_info",
  it should be freed before returning NULL.

ChangeSet@1.1399, 2003-10-02 00:58:24-07:00, akpm@osdl.org
  [PATCH] check permission in ->open for /proc/sys/
  
  From: Christoph Hellwig <hch@lst.de>
  
  It's the only abuse of proc_iops left (except the totally b0rked comx
  driver).  The patch is from Al, I just forward-ported it from 2.4.
  
  Background: struct proc_dir_entry has a struct inode_operations *proc_iops
  member, it's from Linux's stoneage and used internally by procfs to assign
  either the link or directory inode ops.
  
  Unfortunately some drivers started to abuse it do do bad things like create
  on lookup (that's the comx thingy which relies on unexported symbols and thus
  is broken for modular builds since mid-2.3) or various ->permission tricks
  (all gone by now).
  
  After this patch is gone I have another one that kills proc_iops and just
  uses a normal conditional inside procfs to assign the right one directly.

ChangeSet@1.1398, 2003-10-02 00:58:15-07:00, akpm@osdl.org
  [PATCH] module parameter array fixes
  
  From: Rusty Russell <rusty@rustcorp.com.au>
  
  Found this while converting netfilter modules to use the new
  parameters.  Also fixes an out-by-one error in maximum elements you
  can put in array.
  
  The current "intarray" module params were never tested, and um, suck.
  Only one person uses them, and it looks painful.
  
  Since noone uses them, replace them with tested versions.

ChangeSet@1.1397, 2003-10-02 00:58:08-07:00, akpm@osdl.org
  [PATCH] table-driven filesystems option parsing
  
  From: "Randy.Dunlap" <rddunlap@osdl.org>, Will Dyson <will_dyson@pobox.com>, me
  
  Add generic filesystem options parser (infrastructure) and use it to parse
  mount options in several filesystems (adfs, affs, autofs, autofs4, ext2,
  ext3, fat, hfs, hpfs, isofs, jfs, procfs, udf, and ufs).
  
  It saves between 128 and 512 bytes per filesystem.

ChangeSet@1.1396, 2003-10-02 00:57:58-07:00, akpm@osdl.org
  [PATCH] memory writeback/invalidation fixes
  
  From: "David S. Miller" <davem@redhat.com>
  
  This attempts to take care of 2 of the MM todos I had on
  my backlog:
  
  1) Zap the stupid flush_cache_all() thing with more meaningful
     interfaces.
  
  2) Resolve the ptrace user page access issues, first stage.
  
  The "first stage" mentioned for #2 is simply creating the
  user page accesor interfaces.  The next stage needs to be
  mucking with get_user_pages() so that we can control when
  the flush_dcache_page() occurs.  Then we:
  
  1) For every platform where flush_dcache_page() is a non-nop
     add a call to the beginning of copy_{from,to}_user_page().
  2) Make access_process_vm() set the "no dcache flush" bit in
     it's call to get_user_pages().
  
  The idea also was that we'd consolidate the write etc. boolean
  args passed to get_user_pages() into flag bits too.
  
  But at least with the below, we can delete that reminder FIXME
  comment from kernel/ptrace.c, the platforms have the necessary
  tools and just need to make use of it :)
  
  As a bonus I noticed that VMALLOC_VMADDR() did absolutely nothing.
  
  After all of this I only have 1 real TODO left, and that's dealing
  with the SMP TLB/pte invalidation stuff, very low priority until
  someone starts doing more work with sparc32/SMP in 2.6.x :)

ChangeSet@1.1395, 2003-10-02 00:57:49-07:00, akpm@osdl.org
  [PATCH] x86 mman.h fix
  
  Remove duplicated #defines

ChangeSet@1.1394, 2003-10-02 00:57:40-07:00, akpm@osdl.org
  [PATCH] dev_t forward compatibility fix
  
  From: Andries.Brouwer@cwi.nl
  
  ext2 used a 32-bit field for dev_t, with possibly undefined storage
  following; thus, no action was required to go to 32-bit dev_t, but going to
  64-bit dev_t required some subtlety: 0 was written in the first word and
  the 64 bits in the following two.  Al truncated my 64-bit stuff to 32 bits
  but did not understand why there was this split, and wrote 0 followed by a
  single word.  We should at least zero the word following to have
  well-defined storage later.

ChangeSet@1.1393, 2003-10-02 00:57:32-07:00, akpm@osdl.org
  [PATCH] Add missing label in isdn_common.c
  
  From: Herbert Xu <herbert@gondor.apana.org.au>
  
  The last change to isdn_common.c removed a label that is used when
  ISDN_PPP is defined.  This patch puts it back.

ChangeSet@1.1392, 2003-10-02 00:57:24-07:00, akpm@osdl.org
  [PATCH] Add bin2c copyrights
  
  From: Oliver Xymoron <oxymoron@waste.org>
  
  I just noticed the ikconfig stuff made it into mainline via -mm. I
  also just noticed that it's based in part on a patch I posted almost 5
  years ago:
  
  http://groups.google.com/groups?q=oliver+xymoron+config.gz&hl=en&lr=&ie=UTF-8&selm=fa.j8fsl5v.g08fjo%40ifi.uio.no&rnum=2
  
  Sadly, after wandering aimlessly in the desert of unloved patches all
  those years, all attribution got lost. This adds a copyright + license
  to scripts/bin2c.c, which hasn't aged a day.

ChangeSet@1.1391, 2003-10-02 00:57:16-07:00, akpm@osdl.org
  [PATCH] Fix double request_region in com20020
  
  From: Herbert Xu <herbert@gondor.apana.org.au>
  
  Currently com20020 and com20020_cs both call request_region on the same
  block of ports leading to a conflict.  This patch resolves this by moving
  request_region out of the generic driver and into the isa/pci/cs drivers.

ChangeSet@1.1390, 2003-10-02 00:57:08-07:00, akpm@osdl.org
  [PATCH] Fix memory leak in hugetlbfs
  
  From: "Chen, Kenneth W" <kenneth.w.chen@intel.com>
  
  The hugetlbfs_fill_super() doesn't free up memory allocated for sbinfo on
  the way out in case of parsing error (and a few others).  This leads to
  memory leak If root tries to mount a hugetlbfs with invalid mount option.
  Here is a patch that fix the problem.

ChangeSet@1.1389, 2003-10-02 00:57:00-07:00, akpm@osdl.org
  [PATCH] dscc4 warning fixes
  
  - ifdef out a couple of unused functions
  
  - remove unused label
  
  - __setup function is not used when compiled as a module.

ChangeSet@1.1388, 2003-10-01 22:56:56-07:00, jes@wildopensource.com
  [PATCH] qla1280 locking update
  
  This fixes the qla1280 driver to not try to release an unlocked spinlock
  at boot time - as well as a couple of other minor mods.
  
  I also changed the MMIO option to be dependant on X86_VISWS as it's
  really a chipset problem and not something each and every driver should
  be asking for. 
  
  Getting a global CONFIG_MMIO_IS_BROKEN option would probable be a win
  here.

ChangeSet@1.1387, 2003-10-01 22:52:33-07:00, ink@jurassic.park.msu.ru
  [PATCH] Alpha cypress CPU frequency calibration
  
  This fixes (again...) CPU frequency calibration on some platforms with
  the Cypress chip.  That is, at some point CLOCK_TICK_RATE has been
  changed to represent RTC reference clock instead of PIC one.  Which
  makes calibrate_cc_with_pic() produce utterly bogus results.

ChangeSet@1.1386, 2003-10-01 22:51:07-07:00, Jay.Estabrook@hp.com
  [PATCH] for Alpha against 2.6.0-test6
  
  Here is a very small set of fixes for Linux/axp, with a new one for
  "sched_clock" just introduced.
  
  Note that all but the arch/alpha/mm/init.c are required for a clean
  build, since warnings->errors is still on.
  
  The arch/alpha/mm/init.c stuff is from Jeff for MARVEL, and MUST be there
  for any machines running the latest firmware...

ChangeSet@1.1385, 2003-10-01 22:44:15-07:00, bfennema@falcon.csc.calpoly.edu
  [PATCH] UDF oops on inode read failure
  
  This fixes an oops with failed inode reads on UDF

ChangeSet@1.1384, 2003-10-01 16:35:17-07:00, svm@kozmix.org
  [PATCH] fix btaudio error case
  
  Free the right buffer on allocation error

ChangeSet@1.1353.1.9, 2003-10-01 20:26:23-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/seq_file.c

ChangeSet@1.1353.1.8, 2003-10-01 20:20:46-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/exec.c

ChangeSet@1.1353.1.7, 2003-10-01 20:12:48-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/inode.c

ChangeSet@1.1353.1.6, 2003-10-01 19:56:11-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to kernel/sysctl.c

ChangeSet@1.1353.1.5, 2003-10-01 19:36:58-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/super.c

ChangeSet@1.1353.1.4, 2003-10-01 19:16:46-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/block_dev.c

ChangeSet@1.1382, 2003-10-01 13:26:07-07:00, torvalds@home.osdl.org
  Fix bogus preprocessor end comment to match the real scope.

ChangeSet@1.1353.1.3, 2003-10-01 17:23:39-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: set_cpus_schedule was EXPORT_SYMBOL_GPL, bring it back
  
  Originally, before this set of patches moving stuff out from kernel/ksyms.c,
  set_cpus_schedule was EXPORT_SYMBOL_GPL, my mistake, bring it back.
  
  Also follow Andrew Morton's suggestions of moving the EXPORT_SYMBOL{_GPL) even
  closer to the place where the symbol exported is defined, i.e. just after the
  symbol definition, this makes mistakes more difficult to happen, as when the
  symbol definition is #ifdefed the EXPORT_SYMBOL{_GPL} is in the same block.

ChangeSet@1.1353.1.2, 2003-10-01 17:08:07-03:00, acme@parisc.kerneljanitors.org
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to mm/filemap.c

ChangeSet@1.1380, 2003-10-01 10:47:20-07:00, joern@wohnheim.fh-wedel.de
  [PATCH] Fix wrong CONFIG_* in comment
  
  Our tools are somewhat too stupid.  They find a mistyped CONFIG_HIGMEM
  (missing 'H') and assume a dependency on config/higmem.h. Fix the comment.

ChangeSet@1.1379, 2003-10-01 10:43:42-07:00, riel@surriel.com
  [PATCH] syscall number for vserver
  
  Vserver is a patch that implements BSD jail style virtual host semantics
  inside Linux, where every process not only runs in its own namespace (it
  reuses the chroot code for that, should switch to CLONE_NEWNS for 2.6),
  but also its own hostname and IP address as well as its own view of
  /proc.
  
  Because of that added functionality, it needs more than what is
  available in the LSM framework (which can only allow/deny permissions,
  not alter return values).
  
  The source code has been running stable for the last few years and is in
  use at quite a few service providers.  The Fedora project also wants to
  use vserver for their build system.  However, vserver for 2.4 just tacks
  their syscalls onto the end of the syscall table and the userland tools
  find those "dynamic numbers" somehow ...  EWWWW.
  
  For 2.6 I'd like to do things right.  At the moment the vserver patch
  has sys_new_s_context and sys_set_ipv4root calls, but since we'll
  probably end up getting an ipv6 call too and people are planning future
  functionality, I guess it would be more appropriate to multiplex these
  through one sys_vserver patch, in the same way sys_ipc works.
  
  For your reference, you can find more information about
  vserver on these pages:
  
  	http://www.13thfloor.at/VServer/
  	http://www.solucorp.qc.ca/miscprj/s_context.hc
  
  I estimate the project has about a dozen developers now.  We are
  planning on making the implementation for 2.6 fairly lightweight,
  reusing infrastructure from other code where possible and only doing
  things through sys_vserver where there is no other way.
  
  This small change just adds sys_vserver to the syscall table.

ChangeSet@1.1378, 2003-10-01 10:42:18-07:00, piggin@cyberone.com.au
  [PATCH] AS fix
  
  This picks up another place where aliases where getting lost.  And adds
  a couple of checks.  I can't hang the osdl database thingy anymore.
  
  The transfer alias list loops could probably quite nicely be changed to
  
  	if (unlikely(!list_empty( old_queuelist )))
  	    __list_splice( old_queuelist, new_queuelist.prev);

ChangeSet@1.1377, 2003-10-01 10:42:10-07:00, viro@parcelfarce.linux.theplanet.co.uk
  [PATCH] EFS set_blocksize() error handling
  
  There doesn't seem to be any active maintainer for EFS: It's either
  abandoned, or never required specific patches too badly (also quite
  possible in this case). 
  
  It went into the tree in 2.3.2 and from there to 2.6.0-test6 I see
  nothing that would look like maintainer's update.  OTOH, it's read-only
  and shouldn't be too badly broken (or hard to keep alive).
  
  Outside of trunk (i.e.  in 2.4.16--) we have a backport of global 2.5
  change (sb_bread()) and check for set_blocksize() failures (from Alan). 
  This is the 2.6.x equivalent.

ChangeSet@1.1353.1.1, 2003-10-01 07:56:56-07:00, axboe@suse.de
  [PATCH] make ide-floppy work
  
  ide-floppy has screwy bio handling. I rewrote it and got confirmation
  from one tester (the only one :) that it actually works now.

ChangeSet@1.1372, 2003-10-01 01:23:57-07:00, shemminger@osdl.org
  [IRDA]: Convert irda-usb to alloc_irdadev().

ChangeSet@1.1371, 2003-10-01 01:23:35-07:00, shemminger@osdl.org
  [IRDA]: Convert smsc-ircc2 to alloc_irdadev().

ChangeSet@1.1370, 2003-10-01 01:23:12-07:00, shemminger@osdl.org
  [IRDA]: In smsc-ircc2, fix whitespace and indentation.

ChangeSet@1.1369, 2003-10-01 01:22:45-07:00, shemminger@osdl.org
  [IRDA]: In smsc-ircc2 use request_region earlier in the setup process.

ChangeSet@1.1368, 2003-10-01 01:21:43-07:00, shemminger@osdl.org
  [IRDA]: In smsc-ircc2 use request_region instead of check_region.

ChangeSet@1.1367, 2003-10-01 01:21:13-07:00, shemminger@osdl.org
  [IRDA]: Use register_netdev instead of explicit reference to rtnl_lock.

ChangeSet@1.1366, 2003-10-01 01:20:45-07:00, shemminger@osdl.org
  [IRDA]: Use unregister_netdev instead of explicit reference to rtnl_lock.

ChangeSet@1.1365, 2003-10-01 01:20:17-07:00, shemminger@osdl.org
  [IRDA]: Convert via-ircc to alloc_irdadev().

ChangeSet@1.1364, 2003-10-01 01:19:56-07:00, shemminger@osdl.org
  [IRDA]: Convert sir to alloc_irdadev().

ChangeSet@1.1363, 2003-10-01 01:19:35-07:00, shemminger@osdl.org
  [IRDA]: Convert w83977af_ir to alloc_irdadev().

ChangeSet@1.1362, 2003-10-01 01:19:10-07:00, shemminger@osdl.org
  [IRDA]: Convert nsc-ircc to alloc_irdadev().

ChangeSet@1.1361, 2003-10-01 00:11:01-07:00, shemminger@osdl.org
  [IRDA]: Convert donauboe to alloc_irdadev().

ChangeSet@1.1360, 2003-10-01 00:10:40-07:00, shemminger@osdl.org
  [IRDA]: Convert ali-ircc to alloc_irdadev().

ChangeSet@1.1359, 2003-10-01 00:10:20-07:00, shemminger@osdl.org
  [IRDA]: Convert irport to alloc_irdadev().

ChangeSet@1.1358, 2003-10-01 00:09:51-07:00, shemminger@osdl.org
  [IRDA]: Add alloc_irdadev() interface.

ChangeSet@1.1357, 2003-10-01 00:09:27-07:00, shemminger@osdl.org
  [IRDA]: Get rid of destructor for irda devices.

ChangeSet@1.1356, 2003-09-30 23:54:38-07:00, petri.koistinen@iki.fi
  [NET]: Modernize network device help text.

ChangeSet@1.1355, 2003-09-30 23:42:11-07:00, drepper@redhat.com
  [NET]: Use task->tgid instead of task->pid in SCM credentials code.

ChangeSet@1.1354, 2003-09-30 23:41:12-07:00, akpm@osdl.org
  [NET]: Fix xfrm_algo.c module exports.

ChangeSet@1.1353, 2003-09-30 22:06:44-07:00, willy@debian.org
  [PATCH] PA-RISC updates
  
  PA-RISC updates for 2.6.0-test6
   - Some more support for 64-bit userspace
   - Move many EXPORT_SYMBOLs out of parisc_ksyms.c
   - Make both the OSS and ALSA harmony drivers build
   - ioctl typechecking
   - Make math-emu build without warnings.
   - Persuade SuckyIO to not crash the machine.

ChangeSet@1.1352, 2003-09-30 22:03:36-07:00, willy@debian.org
  [PATCH] Remove ELF_CORE_SYNC
  
  ELF_CORE_SYNC and dump_smp_unlazy_fpu seem to have been introduced
  by Ingo around 2.5.43, but as far as I can tell, never used.

ChangeSet@1.1342.1.43, 2003-10-01 00:35:58-04:00, len.brown@intel.com
  Merge

ChangeSet@1.1342.7.3, 2003-10-01 00:14:05-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/bk/linux-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-release-2.6.0

ChangeSet@1.1342.1.42, 2003-10-01 00:11:53-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/bk/linux-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-test-2.6.0

ChangeSet@1.1342.1.41, 2003-09-30 21:07:55-04:00, len.brown@intel.com
  [ACPI] deal with lack of acpi prt entries gracefully (Jesse Barnes)

ChangeSet@1.1342.1.40, 2003-09-30 20:40:56-04:00, len.brown@intel.com
  [ACPI] build fix: remove 2nd __exit from asus_acpi.c

ChangeSet@1.1351, 2003-09-30 15:19:11-07:00, rtjohnso@eecs.berkeley.edu
  [PATCH] PCI: __init documetation
  
  It might not have prevented me from reporting the potential bug, but I
  would've known you'd thought about it, it might help future developers,
  and it's unlikely to become dangerously wrong.

ChangeSet@1.1342.1.39, 2003-09-30 17:52:36-04:00, len.brown@intel.com
  [ACPI] acpi4asus-0.25-0.26.diff (Karol Kozimor)

ChangeSet@1.1342.1.38, 2003-09-30 16:56:10-04:00, len.brown@intel.com
  [ACPI] acpi4asus-0.24a-0.25-2.6.0-test (Karol Kozimor)

ChangeSet@1.1342.8.55, 2003-09-30 05:03:59-07:00, dfages@arkoon.net
  [NET]: Fix HW_FLOWCONTROL on SMP.

ChangeSet@1.1342.8.54, 2003-09-30 04:41:04-07:00, davem@nuts.ninka.net
  Merge bk://kernel.bkbits.net/acme/netsyms-2.6
  into nuts.ninka.net:/disk1/davem/BK/net-2.5

ChangeSet@1.1342.13.11, 2003-09-30 04:24:13-07:00, davem@nuts.ninka.net
  [SPARC64]: Always use sethi+jmpl to reach VISenter{,half}.

ChangeSet@1.1342.15.10, 2003-09-30 04:13:24-07:00, bdschuym@pandora.be
  [EBTABLES]: Use vlan_hdr not vlan_ethhdr in ebt_vlan.c

ChangeSet@1.1342.15.9, 2003-09-30 03:34:56-07:00, herbert@gondor.apana.org.au
  [IPIP]: Avoid duplicate policy checks.

ChangeSet@1.1342.15.8, 2003-09-30 03:32:56-07:00, davem@nuts.ninka.net
  [IPV4]: In arp_rcv(), inspect skb->nh.arph after pskb_may_pull() not before.

ChangeSet@1.1342.15.7, 2003-09-30 03:29:19-07:00, davem@nuts.ninka.net
  [IPV4]: Do pskb_may_pull in arp_rcv() not arp_process().

ChangeSet@1.1342.15.6, 2003-09-30 02:08:55-07:00, davem@nuts.ninka.net
  [KERNEL]: Do not export set_cpus_allowed twice, and only if CONFIG_SMP.

ChangeSet@1.1342.15.5, 2003-09-30 02:00:00-07:00, bdschuym@pandora.be
  [EBTABLES]: Add ebt_limit match.
  
  The patch below adds the ebt_limit match, which is the equivalent of
  the iptables limit match. This enables limiting the number of frames
  processed per time unit.
  
  The patch is from Tom Marshall <tommy_at_home.tig-grr.com>.

ChangeSet@1.1342.15.4, 2003-09-30 01:57:25-07:00, ja@ssi.bg
  [IPVS]: Use list_for_each_entry_continue in some schedulers.

ChangeSet@1.1342.15.3, 2003-09-30 01:56:47-07:00, ja@ssi.bg
  [IPVS]: The NQ scheduler must not return servers with weight 0.

ChangeSet@1.1342.15.2, 2003-09-30 01:55:23-07:00, ja@ssi.bg
  [IPVS]: Simplify ip_vs_wrr_gcd_weight

ChangeSet@1.1342.15.1, 2003-09-30 01:44:52-07:00, ja@ssi.bg
  [KERNEL]: Introduce list_for_each_entry_continue.

ChangeSet@1.1342.13.10, 2003-09-30 01:38:39-07:00, urban.widmark@enlight.net
  [SMBFS]: Create OLD_TO_NEW_foo macros in highuid.h and use
  them instead of direct references to low2highfoo.

ChangeSet@1.1342.13.9, 2003-09-30 00:23:23-07:00, zaitcev@redhat.com
  [SPARC]: jsflash update
  
  Parts of this come from a janitor named Domen, unfortunately,
  I forgot his e-mail... Anyhow, it's obvious that janitors
  did not try to compile result of their efforts, this version
  at least builds.

ChangeSet@1.1342.1.37, 2003-09-30 01:15:29-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/src/linux-acpi-test-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-test-2.6.0

ChangeSet@1.1267.30.14, 2003-09-30 01:09:21-04:00, len.brown@intel.com
  [ACPI] GV3 IO port is 16-bits (Venkatesh Pallipadi)

ChangeSet@1.1267.30.13, 2003-09-30 00:53:46-04:00, len.brown@intel.com
  [ACPI] acpi_pci_link_allocate() should stick with irq.active if set. (Andrew de Quincey)
  Fixes OSDL #1186 "broken USB" and others

ChangeSet@1.1267.30.12, 2003-09-30 00:15:16-04:00, len.brown@intel.com
  [ACPI] add CONFIG_ACPI_RELAXED_AML to config menu

ChangeSet@1.1267.30.11, 2003-09-30 00:06:29-04:00, len.brown@intel.com
  [ACPI] CONFIG_ACPI is no longer necessary to enable HT (from 2.4.23)
  if (CONFIG_ACPI || CONFIG_SMP) CONFIG_ACPI_BOOT=y

ChangeSet@1.1342.9.73, 2003-09-30 04:51:34+01:00, davej@redhat.com
  [CPUFREQ] Longhaul >v1 can't use EBLCR for FSB, has to calculate it instead.

ChangeSet@1.1342.1.36, 2003-09-29 23:34:33-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/src/linux-acpi-test-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-test-2.6.0

ChangeSet@1.1267.30.10, 2003-09-29 23:13:34-04:00, len.brown@intel.com
  [ACPI] ACPI Component Architecture 20030918 (Bob Moore)
  
  Found and fixed a longstanding problem with the late execution of
  the various deferred AML opcodes (such as Operation Regions,
  Buffer Fields, Buffers, and Packages)...
  This fixes the "region size computed incorrectly" problem.
  
  Fixed several 64-bit issues with prototypes, casting and data types.
  
  Removed duplicate prototype from acdisasm.h

ChangeSet@1.1342.14.5, 2003-09-29 22:54:16-03:00, acme@conectiva.com.br
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/libfs.c

ChangeSet@1.1342.14.4, 2003-09-29 22:50:07-03:00, acme@conectiva.com.br
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to kernel/sched.c

ChangeSet@1.1342.14.3, 2003-09-29 22:32:27-03:00, acme@conectiva.com.br
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/dcache.c

ChangeSet@1.1342.14.2, 2003-09-29 22:12:32-03:00, acme@conectiva.com.br
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/buffer.c

ChangeSet@1.1342.14.1, 2003-09-29 21:58:57-03:00, acme@conectiva.com.br
  o kernel/ksyms.c: move relevant EXPORT_SYMBOLs to fs/namei.c

ChangeSet@1.1342.13.7, 2003-09-29 16:16:38-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] update umc8672 driver
  
  - common umc8672_init() for built-in and module
  - release hwif only if hwif->chipset == ide_umc8672
  - mark exit functions with __exit
  - do not use ide_hwifs[] directly
  - minor cleanups

ChangeSet@1.1342.13.6, 2003-09-29 16:16:06-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] update qd65xx driver
  
  - common qd65xx_init() for built-in and module
  - release hwif only if hwif->chipset == ide_qd65xx
  - mark exit functions with __exit
  - do not use ide_hwifs[] directly
  - minor cleanups

ChangeSet@1.1342.13.5, 2003-09-29 16:15:38-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] update ht6560b driver
  
  - common ht6560b_init() for built-in and module
  - release hwif only if hwif->chipset == ide_ht6560b
  - when releasing hwif, restore hwif->channel to the default value
  - mark exit functions with __exit
  - do not use ide_hwifs[] directly
  - minor cleanups

ChangeSet@1.1342.13.4, 2003-09-29 16:15:23-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] update dtc2278 driver
  
  - common dtc2278_init() for built-in and module
  - touch hwifs only if hwif->chipset == ide_unknown for both ports,
    so we don't thrash already used hwifs when loading module
  - release hwif only if hwif->chipset == ide_dtc2278
  - mark exit functions with __exit
  - do not use ide_hwifs[] directly
  - minor cleanups

ChangeSet@1.1342.13.3, 2003-09-29 16:15:08-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] update ali14xx driver
  
  - common ali14xx_init() for built-in and module
  - do not call findPort() twice
  - touch hwifs only if chipset was found and initialized
  - release hwif only if hwif->chipset == ide_ali14xx
  - when releasing hwif, restore hwif->channel to the default value
  - mark exit functions with __exit
  - do not use ide_hwifs[] directly
  - minor cleanups

ChangeSet@1.1342.13.2, 2003-09-29 16:14:53-07:00, B.Zolnierkiewicz@elka.pw.edu.pl
  [PATCH] fix /proc/ide/hdX/settings
  
  Blind strncpy()->strlcpy() conversion in 2.5.70
  made it impossible to change any setting, revert it.

ChangeSet@1.1342.13.1, 2003-09-29 16:12:49-07:00, torvalds@home.osdl.org
  Merge bk://bk.arm.linux.org.uk/linux-2.6-serial
  into home.osdl.org:/home/torvalds/v2.5/linux

ChangeSet@1.1267.1.19, 2003-09-29 23:57:02+01:00, rmk@flint.arm.linux.org.uk
  [SERIAL] Change maintainer entry for serial.
  
  Finally admit defeat and change the maintainers entry for 8250/16x50
  serial.

ChangeSet@1.1349, 2003-09-29 12:48:49-07:00, adobriyan@mail.ru
  [PATCH] PCI: Remove setting TASK_RUNNING after schedule_timeout in /drivers/pci/

ChangeSet@1.1347, 2003-09-29 12:23:22-07:00, lxiep@us.ibm.com
  [PATCH] PCI Hotplug: export hotplug_slots subsys
  
  This is needed for the PPC64 PCI hotplug driver.

ChangeSet@1.1342.9.71, 2003-09-29 11:42:09-07:00, bgerst@didntduck.org
  [PATCH] i386 do_machine_check() is redundant.
  
  This removes "do_machine_check()" in favour of just calling the
  appropriate machine check handler directly from the lowlevel exception
  code.

ChangeSet@1.1342.9.70, 2003-09-29 11:40:21-07:00, armin@melware.de
  [PATCH] Eicon ISDN driver: cleanups
  
  Removed doubled header file includes.
  Removed includes of version.h.
  Removed the use of __KERNEL_SYSCALLS__

ChangeSet@1.1342.9.69, 2003-09-29 11:40:09-07:00, armin@melware.de
  [PATCH] Eicon ISDN driver: fix compile error
  
  fix compiler error of badly punctuated macro definitions.

ChangeSet@1.1267.67.1, 2003-09-29 19:31:29+01:00, davej@redhat.com
  [AGPGART] New VIA AGP PCI id.

ChangeSet@1.1342.9.68, 2003-09-29 10:39:30-07:00, davej@redhat.com
  [PATCH] VIA Typo in i2c.

ChangeSet@1.1342.9.67, 2003-09-29 10:39:18-07:00, davej@redhat.com
  [PATCH] Correct URL in h8300 README

ChangeSet@1.1342.9.66, 2003-09-29 10:39:04-07:00, davej@redhat.com
  [PATCH] logic thinko in i2c

ChangeSet@1.1342.9.65, 2003-09-29 10:38:51-07:00, davej@redhat.com
  [PATCH] fix leak in btaudio

ChangeSet@1.1342.9.64, 2003-09-29 10:38:38-07:00, davej@redhat.com
  [PATCH] Cleanup SEP errata workaround.
  
  This looks a little simpler, and has the same effect.

ChangeSet@1.1342.9.63, 2003-09-29 10:38:26-07:00, davej@redhat.com
  [PATCH] ULL fixes for qlogicfc

ChangeSet@1.1342.9.62, 2003-09-29 10:38:12-07:00, davej@redhat.com
  [PATCH] Correct address in MAINTAINERS

ChangeSet@1.1342.9.61, 2003-09-29 10:37:58-07:00, davej@redhat.com
  [PATCH] K7 MCE handler fixes.
  
  Don't poke bank 0 on Athlon, some of them don't like it
  and raise spurious MCEs.

ChangeSet@1.1342.9.60, 2003-09-29 10:37:45-07:00, davej@redhat.com
  [PATCH] megaraid ULL fix.

ChangeSet@1.1342.9.59, 2003-09-29 10:37:33-07:00, smurf@play.smurf.noris.de
  [PATCH] minor edit typo
  
  Editor wraparound and comments don't always like each other.

ChangeSet@1.1342.9.58, 2003-09-29 10:28:00-07:00, bunk@fs.tum.de
  [PATCH] select for fs/Kconfig
  
  This switches fs/Kconfig to use select where appropriate (affects
  nfs{,d} and afs).

ChangeSet@1.1342.9.57, 2003-09-29 10:27:53-07:00, axboe@suse.de
  [PATCH] kill CDROM_SEND_PACKET
  
  The CDROM_SEND_PACKET ioctl is both slow and ugly, this patch keeps the
  functionality but utilizes the much better sg_io() framework.

ChangeSet@1.1342.9.56, 2003-09-29 10:27:44-07:00, piggin@cyberone.com.au
  [PATCH] remove bogus UP on SMP kernel error
  
  This removes a bogus error message in the bogomips reporting code when
  running an SMP kernel on UP.  It makes the output consistent with what
  you see on an SMP box.  I noticed this while testing, but it recently
  annoyed me again when booting a knoppix CD - its the first line you'll
  see.

ChangeSet@1.1342.9.55, 2003-09-29 10:17:49-07:00, torvalds@home.osdl.org
  Select the i8042 driver for mouse and keyboard only on PC's.
  Other architectures have other low-level serial chips.
  
  Make "PC" configuration shorthand (same as "X86 && !EMBEDDED"
  right now, but other PC-like architectures may start using it)

ChangeSet@1.1342.9.54, 2003-09-29 10:04:21-07:00, geert@linux-m68k.org
  [PATCH] Generic serial warning
  
  Generic serial: jiffies are unsigned long

ChangeSet@1.1342.9.53, 2003-09-29 10:04:14-07:00, geert@linux-m68k.org
  [PATCH] M68k sched_clock()
  
  M68k: Add sched_clock() (introduced in 2.6.0-test6)

ChangeSet@1.1342.9.52, 2003-09-29 10:04:04-07:00, geert@linux-m68k.org
  [PATCH] Amiga A2232 Serial typo
  
  A2232 Serial: Fix typo

ChangeSet@1.1342.9.51, 2003-09-29 10:03:57-07:00, geert@linux-m68k.org
  [PATCH] Zorro include guards
  
  Zorro: Make closing include guards consistent with opening include guards

ChangeSet@1.1342.9.50, 2003-09-29 10:03:47-07:00, geert@linux-m68k.org
  [PATCH] Amiga GVP-II SCSI fix
  
  GVP-II SCSI: Fix compilation by getting rid of the obsolete SCSI host instance
  loop and using per-card interrupt handlers instead.

ChangeSet@1.1342.9.49, 2003-09-29 10:03:39-07:00, geert@linux-m68k.org
  [PATCH] Amiga A2091 SCSI fix
  
  A2091 SCSI: Fix compilation by getting rid of the obsolete SCSI host instance
  loop and using per-card interrupt handlers instead.

ChangeSet@1.1342.9.48, 2003-09-29 10:03:30-07:00, geert@linux-m68k.org
  [PATCH] Amiga Zorro bus doc updates
  
  Amiga Zorro bus: Update the docs to match the current situation.

ChangeSet@1.1342.9.47, 2003-09-29 10:03:21-07:00, geert@linux-m68k.org
  [PATCH] Dmasound config
  
  Dmasound: Use select to get CONFIG_DMASOUND defined for all subdrivers (from
  Christoph Hellwig).

ChangeSet@1.1342.9.46, 2003-09-29 10:03:13-07:00, geert@linux-m68k.org
  [PATCH] Macintosh SMC 9194 Ethernet is broken
  
  Macintosh SMC 9194 Ethernet is broken (needs NuBus I/O abstractions)

ChangeSet@1.1342.9.45, 2003-09-29 10:03:04-07:00, geert@linux-m68k.org
  [PATCH] Atari NCR5380 SCSI is broken
  
  Atari NCR5380 SCSI is broken (needs old update_timeout() from scsi_obsolete)

ChangeSet@1.1342.9.44, 2003-09-29 10:02:56-07:00, geert@linux-m68k.org
  [PATCH] Sun-3/3x frame buffer device is broken
  
  Sun-3/3x frame buffer device is broken (needs update to new fbdev and sbuslib
  frameworks)

ChangeSet@1.1342.9.43, 2003-09-29 10:02:47-07:00, geert@linux-m68k.org
  [PATCH] Amiga Cybervision 64/3D frame buffer device is broken
  
  Amiga Cybervision 64/3D frame buffer device is broken (needs update to new
  fbdev framework)

ChangeSet@1.1342.9.42, 2003-09-29 10:02:39-07:00, geert@linux-m68k.org
  [PATCH] Amiga Retina Z3 frame buffer device is broken
  
  Amiga Retina Z3 frame buffer device is broken (needs update to new fbdev
  framework)

ChangeSet@1.1342.9.41, 2003-09-29 10:02:31-07:00, geert@linux-m68k.org
  [PATCH] Amiga CyberVision 64 frame buffer device is broken
  
  Amiga CyberVision 64 frame buffer device is broken (needs update to new fbdev
  framework)

ChangeSet@1.1342.9.40, 2003-09-29 10:02:23-07:00, geert@linux-m68k.org
  [PATCH] Atari frame buffer device is broken
  
  Atari frame buffer device is broken (needs update to new fbdev framework and
  new iplan2p* drawing operations)

ChangeSet@1.1342.9.39, 2003-09-29 10:02:14-07:00, geert@linux-m68k.org
  [PATCH] Macintosh CS89x0 Ethernet is broken
  
  Macintosh CS89x0 Ethernet is broken (needs netif updates)

ChangeSet@1.1342.9.38, 2003-09-29 10:02:06-07:00, geert@linux-m68k.org
  [PATCH] MVME166/7 CD2401 serial is broken
  
  MVME166/7 CD2401 serial is broken (needs taskqueue updates)

ChangeSet@1.1342.9.37, 2003-09-29 10:01:57-07:00, geert@linux-m68k.org
  [PATCH] Atari Pamsnet Ethernet is broken
  
  Atari Pamsnet Ethernet is broken (needs netif updates and broken ACSI)

ChangeSet@1.1342.9.36, 2003-09-29 10:01:49-07:00, geert@linux-m68k.org
  [PATCH] Atari Bionet Ethernet is broken
  
  Atari Bionet Ethernet is broken (needs netif updates and broken ACSI)

ChangeSet@1.1342.9.35, 2003-09-29 10:01:39-07:00, geert@linux-m68k.org
  [PATCH] Amiga GVP-II SCSI is broken
  
  Amiga GVP-II SCSI is broken (needs SCSI device list updates and
  gvp11_bus_reset())

ChangeSet@1.1342.9.34, 2003-09-29 10:01:31-07:00, geert@linux-m68k.org
  [PATCH] Amiga A2091 SCSI is broken
  
  Amiga A2091 SCSI is broken (needs SCSI device list updates and
  a2091_bus_reset())

ChangeSet@1.1342.9.33, 2003-09-29 10:01:22-07:00, geert@linux-m68k.org
  [PATCH] 53c7xx SCSI core is broken
  
  53c7xx SCSI core is broken (needs SCSI updates (has_cmdblocks and device
  lists)), breaking the following drivers:
    - Amiga A4000T SCSI
    - Amiga A4091 SCSI
    - Amiga WarpEngine SCSI
    - Amiga Blizzard PowerUP 603e+ SCSI
    - MVME16x NCR53C710 SCSI
    - BVME6000 NCR53C710 SCSI

ChangeSet@1.1342.9.32, 2003-09-29 10:01:14-07:00, geert@linux-m68k.org
  [PATCH] Atari ACSI is broken
  
  Atari ACSI is broken (needs bio updates)

ChangeSet@1.1342.9.31, 2003-09-29 10:01:07-07:00, geert@linux-m68k.org
  [PATCH] Macintosh SWIM IOP floppy is broken
  
  Macintosh SWIM IOP floppy is broken (needs bio updates)

ChangeSet@1.1342.9.30, 2003-09-29 10:00:59-07:00, geert@linux-m68k.org
  [PATCH] Atari ST-RAM swap is broken
  
  Atari ST-RAM swap is broken (needs swap updates)

ChangeSet@1.1342.9.29, 2003-09-29 10:00:50-07:00, geert@linux-m68k.org
  [PATCH] Atari Hades support is broken
  
  Atari Hades support is broken (needs updates for the new PCI code)

ChangeSet@1.1342.9.28, 2003-09-29 10:00:42-07:00, geert@linux-m68k.org
  [PATCH] Macintosh 8390 Ethernet update
  
  Mac8390: Update for netdevice/8390 core changes in 2.5.8

ChangeSet@1.1342.9.27, 2003-09-29 10:00:34-07:00, geert@linux-m68k.org
  [PATCH] Atari ACSI fix
  
  Atari ACSI: Add missing include and fix duplicate parameter type

ChangeSet@1.1342.9.26, 2003-09-29 10:00:26-07:00, geert@linux-m68k.org
  [PATCH] Mac SWIM floppy missing include
  
  Mac SWIM floppy: Add missing include

ChangeSet@1.1342.9.25, 2003-09-29 10:00:18-07:00, geert@linux-m68k.org
  [PATCH] Atari ST-RAM missing include
  
  Atari ST-RAM: Add missing include

ChangeSet@1.1342.9.24, 2003-09-29 10:00:10-07:00, geert@linux-m68k.org
  [PATCH] M68k bitops
  
  M68k bitops: Make input parameters of *find*bit() routines const:
    - find_first_zero_bit()
    - find_next_zero_bit()
    - sched_find_first_bit()

ChangeSet@1.1342.9.23, 2003-09-29 10:00:01-07:00, geert@linux-m68k.org
  [PATCH] M68k PCI
  
  M68k PCI: Include <asm/scatterlist.h>, like all other archs do

ChangeSet@1.1342.9.22, 2003-09-29 09:59:53-07:00, geert@linux-m68k.org
  [PATCH] Q40/Q60 interrupts
  
  Q40/Q60: Fix warnings, add diagnostic message (from Richard Zidlicky)

ChangeSet@1.1342.9.21, 2003-09-29 09:59:44-07:00, geert@linux-m68k.org
  [PATCH] Sun-3 SCSI
  
  Sun-3 SCSI updates (from Sam Creasey):
    - Define sun3scsi_release() in sun3_scsi and sun3_scsi_vme so that the
      drivers will actually be loaded by the SCSI subsystem.
    - Remove some warnings.

ChangeSet@1.1342.9.20, 2003-09-29 09:59:36-07:00, geert@linux-m68k.org
  [PATCH] Sun-3 bootmem
  
  Sun-3: Use init_bootmem_node() instead of init_bootmem() for Sun-3, to avoid
  setting min/max_low_pfn in init_bootmem(). This was screwing up SCSI, and the
  new method is more like m68k/motorola. (from Sam Creasey)

ChangeSet@1.1342.9.19, 2003-09-29 09:59:27-07:00, geert@linux-m68k.org
  [PATCH] Q40/Q60 interrupts
  
  Q40/Q60: Must handle keyboard interrupts even before they are registered (from
  Richard Zidlicky)

ChangeSet@1.1342.9.18, 2003-09-29 09:59:19-07:00, geert@linux-m68k.org
  [PATCH] m68k zImage
  
  m68k: Build a zImage (vmlinux.gz) instead of an uncompressed image by default

ChangeSet@1.1342.9.17, 2003-09-29 09:52:40-07:00, Andries.Brouwer@cwi.nl
  [PATCH] jfs sparse fixes

ChangeSet@1.1342.9.16, 2003-09-29 09:52:31-07:00, Andries.Brouwer@cwi.nl
  [PATCH] jbd sparse fixes

ChangeSet@1.1342.9.15, 2003-09-29 09:52:22-07:00, Andries.Brouwer@cwi.nl
  [PATCH] hpfs sparse fixes

ChangeSet@1.1342.9.14, 2003-09-29 09:52:14-07:00, Andries.Brouwer@cwi.nl
  [PATCH] hfs sparse fixes

ChangeSet@1.1342.9.13, 2003-09-29 09:52:07-07:00, Andries.Brouwer@cwi.nl
  [PATCH] freevxfs sparse fixes

ChangeSet@1.1342.9.12, 2003-09-29 09:51:59-07:00, Andries.Brouwer@cwi.nl
  [PATCH] fat sparse fixes

ChangeSet@1.1342.9.11, 2003-09-29 09:51:47-07:00, Andries.Brouwer@cwi.nl
  [PATCH] ext3 sparse fixes

ChangeSet@1.1342.9.10, 2003-09-29 09:51:38-07:00, Andries.Brouwer@cwi.nl
  [PATCH] befs sparse fixes

ChangeSet@1.1342.9.9, 2003-09-29 09:51:30-07:00, Andries.Brouwer@cwi.nl
  [PATCH] affs sparse fixes

ChangeSet@1.1267.30.9, 2003-09-29 12:32:13-04:00, len.brown@intel.com
  [ACPI] CONFIG_ACPI_RELAXED_AML from 2.4
  http://bugzilla.kernel.org/show_bug.cgi?id=1248

ChangeSet@1.1267.1.18, 2003-09-29 16:52:40+01:00, trini@org.rmk.(none)
  [SERIAL] Make the Startech UART detection 'more correct'

ChangeSet@1.1342.5.5, 2003-09-29 13:52:41+01:00, davej@redhat.com
  [CPUFREQ] Fix ordering in kconfig.

ChangeSet@1.1342.8.53, 2003-09-29 00:03:27-03:00, acme@conectiva.com.br
  o NET: net/netsyms.c bites the dust

ChangeSet@1.1342.8.52, 2003-09-28 23:58:51-03:00, acme@conectiva.com.br
  o NET: move fs/file_table.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.51, 2003-09-28 23:54:24-03:00, acme@conectiva.com.br
  o NET: move fs/fcntl.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.50, 2003-09-28 23:49:26-03:00, acme@conectiva.com.br
  o NET: move drivers/net/loopback.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.49, 2003-09-28 23:45:22-03:00, acme@conectiva.com.br
  o NET: move drivers/net/Space.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.48, 2003-09-28 23:41:39-03:00, acme@conectiva.com.br
  o NET: move net/xfrm/xfrm_algo.c EXPORT_SYMBOL_GPLs from net/netsyms.c

ChangeSet@1.1342.8.47, 2003-09-28 23:32:59-03:00, acme@conectiva.com.br
  o NET: move rest of net/sched/*.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.46, 2003-09-28 23:24:16-03:00, acme@conectiva.com.br
  o NET: move net/802/*.c EXPORT_SYMBOLs from net/netsyms.c
  
  Also add #include <linux/netdevice.h> to include/net/pkt_sched.h, as it uses
  functions defined on this include (netif_queue_stopped, etc). Ah, the other
  datalink stuff was moved as well (eth.c, pe2.c)

ChangeSet@1.1342.8.45, 2003-09-28 23:06:21-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/{ip_input,sysctl_net_ipv4}.c EXPORT_SYMBOLs from net/netsyms.c
  
  And also a leftover to net/ipv4/af_inet.c

ChangeSet@1.1342.8.44, 2003-09-28 22:56:57-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/inetpeer.c EXPORT_SYMBOLs from net/netsyms.c
  
  And some leftovers from previous changesets also moved to net/core/dev.c
  and net/sched/sch_api.c

ChangeSet@1.1342.8.43, 2003-09-28 22:41:45-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/ip_fragment.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.42, 2003-09-28 22:08:40-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_output.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.41, 2003-09-28 22:01:33-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/ip_options.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.40, 2003-09-28 21:48:16-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/protocol.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.39, 2003-09-28 21:32:00-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/fib_frontend.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.38, 2003-09-28 21:14:52-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/icmp.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.37, 2003-09-28 21:06:45-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/igmp.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.36, 2003-09-28 21:01:47-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/route.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.35, 2003-09-28 20:56:20-03:00, acme@conectiva.com.br
  o NET: move net/core/link_watch.c EXPORT_SYMBOLs from net/netsyms.c
  
  Also fix a typo.

ChangeSet@1.1342.8.34, 2003-09-28 20:47:46-03:00, acme@conectiva.com.br
  o NET: move net/core/dv.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.33, 2003-09-28 20:41:16-03:00, acme@conectiva.com.br
  o NET: move net/core/filter.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.32, 2003-09-28 20:26:41-03:00, acme@conectiva.com.br
  o NET: move net/core/flow.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.31, 2003-09-28 20:19:02-03:00, acme@conectiva.com.br
  o NET: move net/core/dev_mcast.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.30, 2003-09-28 20:10:29-03:00, acme@conectiva.com.br
  o NET: move net/core/dst.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.29, 2003-09-28 20:04:44-03:00, acme@conectiva.com.br
  o NET: move net/core/utils.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.28, 2003-09-28 19:57:36-03:00, acme@conectiva.com.br
  o NET: move net/core/iovec.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.27, 2003-09-28 19:51:49-03:00, acme@conectiva.com.br
  o NET: move net/core/scm.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.26, 2003-09-28 19:45:07-03:00, acme@conectiva.com.br
  o NET: move net/sched/sch_api.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.25, 2003-09-28 19:40:28-03:00, acme@conectiva.com.br
  o NET: move net/core/datagram.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.24, 2003-09-28 19:30:37-03:00, acme@conectiva.com.br
  o NET: move net/core/wireless.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.23, 2003-09-28 19:26:25-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/arp.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.22, 2003-09-28 19:14:09-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/ip_output.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.21, 2003-09-28 19:05:34-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_timer.c EXPORT_SYMBOLs from net/netsyms.c
  
  Also move the EXPORT_SYMBOL(tcp_statistics) to net/ipv4/tcp.c, so that
  finally the tcp.h header can be removed from net/netsyms.c, ctags doesn't
  catches the variables defined with DEFINE_SNMP_STAT :-\

ChangeSet@1.1342.8.20, 2003-09-28 18:50:40-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_input.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.19, 2003-09-28 18:38:21-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_minisocks.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.18, 2003-09-28 17:58:07-03:00, acme@conectiva.com.br
  o NET: move net/core/ethtool.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.17, 2003-09-28 17:44:00-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/devinet.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.16, 2003-09-28 17:21:01-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/ip_sockglue.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.9.7, 2003-09-28 11:43:45-07:00, torvalds@home.osdl.org
  Merge bk://kernel.bkbits.net/jgarzik/misc-2.5
  into home.osdl.org:/home/torvalds/v2.5/linux

ChangeSet@1.1342.8.15, 2003-09-28 14:01:26-03:00, acme@conectiva.com.br
  o NET: move net/sched/police.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.14, 2003-09-28 13:57:10-03:00, acme@conectiva.com.br
  o NET: move net/sched/sch_generic.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.13, 2003-09-28 13:52:27-03:00, acme@conectiva.com.br
  o NET: move net/core/rtnetlink.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.12, 2003-09-28 13:45:47-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_output.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.11, 2003-09-28 13:41:12-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/udp.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.10, 2003-09-28 13:35:00-03:00, acme@conectiva.com.br
  o NET: move net/core/netfilter.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.9, 2003-09-28 13:29:22-03:00, acme@conectiva.com.br
  o NET: move net/netlink/af_netlink.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.8, 2003-09-28 13:22:53-03:00, acme@conectiva.com.br
  o NET: move net/socket.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.7, 2003-09-28 13:13:49-03:00, acme@conectiva.com.br
  o NET: move net/core/skbuff.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.6, 2003-09-28 13:05:40-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.11.3, 2003-09-28 10:31:20-04:00, mzyngier@freesurf.fr
  [PATCH] ne3210 update
  
  The enclosed patch ports the ne3210 driver over the EISA probing API.
  
  It also fixes some ioremap/isa_memcopy_fromio problems (depending on
  where the card memory was mapped) by using ioremap unconditionally and
  letting memcopy_fromio do the right thing.
  
  Finally, it removes the card from Space.c (warning, potential
  interface renumbering !).
  
  The module options are currently disabled, until Rusty's
  module_param_array() patch is included. I will re-introduce them ASAP.
  
  Quite heavily tested on x86.

ChangeSet@1.1342.11.2, 2003-09-28 10:31:04-04:00, shemminger@osdl.org
  [PATCH] Fix warnings in hamradio/baycom build
  
  Sorry, overlooked the corresponding .h file in that patch, here it is.

ChangeSet@1.1342.11.1, 2003-09-28 10:30:55-04:00, romieu@fr.zoreil.com
  [PATCH] Fix debug statement after return in drivers/net/wireless/arlan-main.c
  
  This patch applies to 2.5.68 and is listed on kbugs.org. The debug statement
  is never executed because it is after a return.

ChangeSet@1.1342.5.4, 2003-09-28 13:34:16+01:00, davej@redhat.com
  [CPUFREQ] powernow-k8 compile fix

ChangeSet@1.1342.9.6, 2003-09-28 01:10:28-04:00, jgarzik@redhat.com
  [BK] "bk ignore" aic7xxx auto-generated files

ChangeSet@1.1342.8.5, 2003-09-28 01:45:08-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/af_inet.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.4, 2003-09-28 01:30:48-03:00, acme@conectiva.com.br
  o NET: move net/ipv4/tcp_ipv4.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.10.1, 2003-09-28 00:24:59-04:00, jgarzik@redhat.com
  [janitor] Replace bcopy() uses with memcpy(), where possible.
  
  Affects: JFS, scsi/{sym,sym2}, arch/ia64/sn/io/sn2/{module,pic}.c

ChangeSet@1.1342.8.3, 2003-09-28 01:21:35-03:00, acme@conectiva.com.br
  o NET: move net/core/neighbour.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.9.5, 2003-09-28 00:17:50-04:00, jgarzik@redhat.com
  Misc warning fixes:
  * block/cciss: eliminate "comparison always false" warning
  * char/agp/amd64-agp: properly suffix 64-bit constants
  * ide/legacy/pdc4030: fix incomplete conversion to new IDE module API

ChangeSet@1.1342.9.4, 2003-09-28 00:15:50-04:00, jgarzik@redhat.com
  [wireless arlan] fix modular build
  
  'probe' module parameter is only used when arlan is built as a module.

ChangeSet@1.1342.9.3, 2003-09-28 00:15:00-04:00, jgarzik@redhat.com
  [MCA] don't include linux/mca-legacy.h from linux/mca.h.
  
  As the functions and definitions in linux/mca-legacy.h are deprecated,
  require that users explicitly include linux/mca-legacy.h as needed.
  
  Prior to this change, _all_ users of linux/mca.h (i.e. proper users)
  issued a warning at compile time, when the MCA legacy API was enabled.
  Now only actual users of the legacy API cause warnings, not all MCA drivers.

ChangeSet@1.1342.9.2, 2003-09-28 00:12:42-04:00, jgarzik@redhat.com
  [MCA] convert mca-proc to use not-deprecated functions

ChangeSet@1.1342.9.1, 2003-09-28 00:12:06-04:00, jgarzik@redhat.com
  [MCA] include linux/mca-legacy.h directly, to access deprecated MCA API

ChangeSet@1.1342.8.2, 2003-09-28 01:10:34-03:00, acme@conectiva.com.br
  o NET: move net/core/sock.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.8.1, 2003-09-28 00:54:02-03:00, acme@conectiva.com.br
  o NET: move net/core/dev.c EXPORT_SYMBOLs from net/netsyms.c

ChangeSet@1.1342.7.1, 2003-09-27 21:52:19-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/bk/linux-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-release-2.6.0

ChangeSet@1.1342.1.34, 2003-09-27 21:48:51-04:00, len.brown@intel.com
  Merge intel.com:/home/lenb/bk/linux-2.6.0
  into intel.com:/home/lenb/bk/linux-acpi-test-2.6.0

ChangeSet@1.1342.1.33, 2003-09-27 17:46:14-07:00, torvalds@home.osdl.org
  Linux 2.6.0-test6
  TAG: v2.6.0-test6