1. 02 Oct, 2003 18 commits
  2. 01 Oct, 2003 22 commits
    • David S. Miller's avatar
      Merge davem@nuts.ninka.net:/disk1/davem/BK/net-2.5 · 6ae80eaa
      David S. Miller authored
      into kernel.bkbits.net:/home/davem/net-2.5
      6ae80eaa
    • Arun Sharma's avatar
      0141a137
    • Alexander Viro's avatar
      [PATCH] Better UDF oops fix · 7db66084
      Alexander Viro authored
      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.
      7db66084
    • Andrew Morton's avatar
      [PATCH] Disable floppy and the related ioctl32s on some platforms · 0a6e048f
      Andrew Morton authored
      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.
      0a6e048f
    • Andrew Morton's avatar
      [PATCH] update unistd.h for sys_vserver · 5552bd28
      Andrew Morton authored
      5552bd28
    • Andrew Morton's avatar
      [PATCH] Update James Morris's email address · f47ec725
      Andrew Morton authored
      From: James Morris <jmorris@redhat.com>
      f47ec725
    • Andrew Morton's avatar
      [PATCH] ioctl32 fix to SG_IO · 79841dae
      Andrew Morton authored
      From: Arun Sharma <arun.sharma@intel.com>
      
      A minor bug fix to the ioctl32 code handling SG_IO.  sgio->dxferp is not
      initialzed properly.
      79841dae
    • Andrew Morton's avatar
      [PATCH] Fix allyesconfig for HugeTLB-less archs · c9a57afa
      Andrew Morton authored
      From: Geert Uytterhoeven <geert@linux-m68k.org>
      
      Make that allyesconfig works on architectures that don't support HugeTLBs.
      c9a57afa
    • Andrew Morton's avatar
      [PATCH] Fix compile warning in g_NCR5380 · 8a1d611a
      Andrew Morton authored
      From: Andries.Brouwer@cwi.nl
      
       `generic_NCR5380_biosparam' declared `static' but never defined
      8a1d611a
    • Andrew Morton's avatar
      [PATCH] update Documentation/iostats.txt · 8ff8bd39
      Andrew Morton authored
      From: Rick Lindsley <ricklind@us.ibm.com>
      
      One typo corrected, and the references to 2.5 are minimized and mostly
      changed to 2.6.
      8ff8bd39
    • Andrew Morton's avatar
      [PATCH] /proc/PID/auxv file and NT_AUXV core note · 2e54af56
      Andrew Morton authored
      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.
      2e54af56
    • Andrew Morton's avatar
      [PATCH] misc fixes · e13a7aa5
      Andrew Morton authored
      - 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
      e13a7aa5
    • Andrew Morton's avatar
      [PATCH] befs: fix resource leak on register_filesystem failure · 9230fbc5
      Andrew Morton authored
      From: Will Dyson <will_dyson@pobox.com>
      
      Remember to free the inode cache if register_filesystem() fails.
      9230fbc5
    • Andrew Morton's avatar
      [PATCH] scripts/pnmtologo.c warning fixes · 1f6fcc21
      Andrew Morton authored
      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.
      1f6fcc21
    • Andrew Morton's avatar
      [PATCH] Pass nameidata to security_inode_permission hook · d5f1f9dd
      Andrew Morton authored
      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.
      d5f1f9dd
    • Andrew Morton's avatar
      [PATCH] Fix bug in SELinux convert_context · 4dfbe983
      Andrew Morton authored
      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.
      4dfbe983
    • Andrew Morton's avatar
      [PATCH] fix memleak in mtd/chips/cfi_cmdset_0020.c · ff2de3b3
      Andrew Morton authored
      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.
      ff2de3b3
    • Andrew Morton's avatar
      [PATCH] check permission in ->open for /proc/sys/ · dc5f46be
      Andrew Morton authored
      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.
      dc5f46be
    • Andrew Morton's avatar
      [PATCH] module parameter array fixes · 206a70f2
      Andrew Morton authored
      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.
      206a70f2
    • Andrew Morton's avatar
      [PATCH] table-driven filesystems option parsing · 5221f633
      Andrew Morton authored
      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.
      5221f633
    • Andrew Morton's avatar
      [PATCH] memory writeback/invalidation fixes · b2dd8674
      Andrew Morton authored
      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 :)
      b2dd8674
    • Andrew Morton's avatar
      [PATCH] x86 mman.h fix · bd094583
      Andrew Morton authored
      Remove duplicated #defines
      bd094583