1. 19 Jan, 2004 40 commits
    • Andrew Morton's avatar
      [PATCH] sn: General clean up of xbow.c · 36b94548
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      General clean up of xbow.c
      36b94548
    • Andrew Morton's avatar
      [PATCH] sn: machvec/pci.c clean up · 182e5622
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      machvec/pci.c clean up
      Other clean up related to above
      182e5622
    • Andrew Morton's avatar
      [PATCH] sn: General code clean up of sn/io/io.c · ef180d91
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      General code clean up of sn/io/io.c
      ef180d91
    • Andrew Morton's avatar
      [PATCH] sn: Delete invent.h · a40fe5e4
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      Delete invent.h
      Delete sgi_if.c
      Cleaned up some of the NEW/DEL calls
      a40fe5e4
    • Andrew Morton's avatar
      [PATCH] sn: Kill the arcs/*.h files · 31168afe
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      Kill the arcs/*.h files
      Some general clean up on klconfig.h
      31168afe
    • Andrew Morton's avatar
      [PATCH] sn: Kill nag.h · f0f1f768
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      Kill nag.h
      f0f1f768
    • Andrew Morton's avatar
      [PATCH] sn: serial update · 20a8305b
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
            Jesse Barnes <jbarnes@tomahawk.engr.sgi.com>
      20a8305b
    • Andrew Morton's avatar
      [PATCH] sn: remove unused enum · 9c5a4934
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      remove unused enum
      9c5a4934
    • Andrew Morton's avatar
      [PATCH] sn: kill $Id$ · 43522ab7
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      kill $Id$
      43522ab7
    • Andrew Morton's avatar
      [PATCH] sn: kill big endian stuff · 8f9596e3
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      kill big endian stuff
      8f9596e3
    • Andrew Morton's avatar
      [PATCH] sn: namespace cleanup: ioerror_dump->sn_ioerror_dump · 6378da80
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      namespace cleanup: ioerror_dump->sn_ioerror_dump
      6378da80
    • Andrew Morton's avatar
      [PATCH] sn: copyright update · 78527eca
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      copyright update
      78527eca
    • Andrew Morton's avatar
      [PATCH] sn: Some hwgraph code clean up · 55f20bda
      Andrew Morton authored
      From: Pat Gefre <pfg@sgi.com>
      
      Some hwgraph code clean up
      55f20bda
    • Andrew Morton's avatar
      [PATCH] const vs. __attribute__((const)) confusion · 0697fbd3
      Andrew Morton authored
      From: "H. Peter Anvin" <hpa@zytor.com>
      
      Declaring a function to return a const scalar value is pretty meaningless. 
      These functions are really trying to say that they don't alter any external
      state.
      
      Fix that up by using __attribute__((const)), if the compiler supports that.
      0697fbd3
    • Andrew Morton's avatar
      [PATCH] s390: endless loop in follow_page. · 477702e9
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      Fix endless loop in get_user_pages() on s390.  It happens only on s/390
      because pte_dirty always returns 0.  For all other architectures this is an
      optimization.
      
      In the case of "write && !pte_dirty(pte)" follow_page() returns NULL.  On all
      architectures except s390 handle_pte_fault() will then create a pte with
      pte_dirty(pte)==1 because write_access==1.  In the following, second call to
      follow_page() all is fine.  With the physical dirty bit patch pte_dirty() is
      always 0 for s/390 because the dirty bit doesn't live in the pte.
      477702e9
    • Andrew Morton's avatar
      [PATCH] s390: superflous flush_tlb_range calls. · 6fefc8fa
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      while searching for a s390 tlb flush problem I noticed some superflous tlb
      flushes.  One in zeromap_page_range, one in remap_page_range, and another one
      in filemap_sync.  The patch just adds comments but I think these three
      flush_tlb_range calls can be removed.
      6fefc8fa
    • Andrew Morton's avatar
      [PATCH] rmap page refcounting simplification · 269fa3a4
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      Ok, its just the revert of the page_cache_release delta.
      269fa3a4
    • Andrew Morton's avatar
      [PATCH] s390: rmap optimization. · 83b41646
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      while working on my mm patch for s390 I played with rmap a bit, adding
      BUG statements and the like. While doing so I noticed some room for
      improvement in rmap. Its minor stuff but anyway... 
      
      The first observation is that the pte chain array doesn't have holes,
      meaning that from the pte_chain_idx() of the first array every slot of
      all following pte chain arrays are full. That is there can't be NULL
      pointers. The "if (!pte_paddr)" check in try_to_unmap() can be removed
      and if the loop in page_referenced() is started from pte_chain_idx(pc)
      then the "if (!pte_paddr)" in page_referenced() can be removed as well.
      
      The second observation is that the first pte array of a pte chain has
      at least one entry. Empty pte chain arrays are always freed immediatly
      after the last entry was removed. Because of that victim_i can be
      calculated in a simpler way. Instead of setting victim_i to -1 and then
      check in each loop iteration against -1 victim_i can just be set to
      the pte_chain_idx of the first pte chain array.
      83b41646
    • Andrew Morton's avatar
      [PATCH] s390: tlb flush race. · f8e8784a
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      I think I found a potential race in install_page/install_file_pte. The
      inline function zap_pte releases pages by calling page_remove_rmap and
      page_cache_release.  If this was the last user of a page it can get
      purged from the page cache and then get immediatly reused. But there
      might still be a tlb for this page on another cpu. The tlb is removed
      in the callers of zap_pte, install_page and install_file_pte, but this
      is too late. I admit that its a very unlikely race but never the less..
      
      I fixed this by using the new ptep_clear_flush function that is introduced
      with the tlb flush optimization patch for s/390.
      f8e8784a
    • Andrew Morton's avatar
      [PATCH] s390: physical dirty/referenced bits. · 465235cb
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      this is another s/390 related mm patch. It introduces the concept of
      physical dirty and referenced bits into the common mm code. I always
      had the nagging feeling that the pte functions for setting/clearing
      the dirty and referenced bits are not appropriate for s/390. It works
      but it is a bit of a hack. 
      After the wake of rmap it is now possible to put a much better solution
      into place. The idea is simple: since there are not dirty/referenced
      bits in the pte make these function nops on s/390 and add operations
      on the physical page to the appropriate places. For the referenced bit
      this is the page_referenced() function. For the dirty bit there are
      two relevant spots: in page_remove_rmap after the last user of the
      page removed its reverse mapping and in try_to_unmap after the last
      user was unmapped. There are two new functions to accomplish this:
      
       * page_test_and_clear_dirty: Test and clear the dirty bit of a
         physical page. This function is analog to ptep_test_and_clear_dirty
         but gets a struct page as argument instead of a pte_t pointer.
      
       * page_test_and_clear_young: Test and clear the referenced bit
         of a physical page. This function is analog to ptep_test_and_clear_young
         but gets a struct page as argument instead of a pte_t pointer.
      
      Its pretty straightforward and with it the s/390 mm makes much more
      sense. You'll need the tls flush optimization patch for the patch.
      Comments ?
      465235cb
    • Andrew Morton's avatar
      [PATCH] s390: tlb flush optimization. · 9177d562
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      On the s/390 architecture we still have the issue with tlb flushing and the
      ipte instruction.  We can optimize the tlb flushing a lot with some minor
      interface changes between the arch backend and the memory management core. 
      In the end the whole thing is about the Invalidate Page Table Entry (ipte)
      instruction.  The instruction sets the invalid bit in the pte and removes the
      tlb for the page on all cpus for the virtual to physical mapping of the page
      in a particular address space.  The nice thing is that only the tlb for this
      page gets removed, all the other tlbs stay valid.  The reason we can't use
      ipte to implement flush_tlb_page() is one of the requirements of the
      instruction: the pte that should get flushed needs to be *valid*.
      
      I'd like to add the following four functions to the mm interface:
      
        * ptep_establish: Establish a new mapping. This sets a pte entry to a
          page table and flushes the tlb of the old entry on all cpus if it
          exists. This is more or less what establish_pte in mm/memory.c does
          right now but without the update_mmu_cache call.
      
        * ptep_test_and_clear_and_flush_young. Do what ptep_test_and_clear_young
          does and flush the tlb.
      
        * ptep_test_and_clear_and_flush_dirty. Do what ptep_test_and_clear_dirty
          does and flush the tlb.
      
        * ptep_get_and_clear_and_flush: Do what ptep_get_and_clear does and
          flush the tlb.
      
      The s/390 specific functions in include/pgtable.h define their own optimized
      version of these four functions by use of the ipte.
      
      I avoid the definition of these function for every architecture I added them
      to include/asm-generic/pgtable.h.  Since i386/x86 and others don't include
      this header yet and define their own version of the functions found there I
      #ifdef'd all functions in include/asm-generic/pgtable.h to be able to pick
      the ones that are needed for each architecture (see patch for details).
      
      With the new functions in place it is easy to do the optimization, e.g.  the
      sequence
      
               ptep_get_and_clear(ptep);
               flush_tlb_page(vma, address);
      
      gets replace by
      
               ptep_get_and_clear_and_flush(vma, address, ptep);
      
      The old sequence still works but it is suboptimal on s/390.
      9177d562
    • Andrew Morton's avatar
      [PATCH] s390: 32 bit ioctl emulation fixes. · b72570f1
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      - audit all 32 bit pointer accesses and make them use compat_ioctl(),
        because of the necessary conversion on s390
      - introduce ULONG_IOCTL() which is used instead of COMPATIBLE_IOCTL()
        for all ioctls that have their argument encoded in 'arg' instead
        of the memory pointed to by arg. Same reason as above.
      - remove most #ifdefs in <linux/compat_ioctl.h>: They don't make
        any sense if the respective handlers in fs/compat_ioctl.c are
        not disabled as well and they are potentially harmful (the
        CONFIG_BLK_DEV_DM e.g. was insufficient).
      - comment out  COMPATIBLE_IOCTL(SIOCSIFBR) and
        COMPATIBLE_IOCTL(SIOCGIFBR), they appear to require a handler
      - implement copy_in_user for s390, as needed for many handlers in
        fs/compat_ioctl.c
      - get rid of all duplicate stuff in arch/s390/kernel/compat_ioctl.c
        that is also in fs/compat_ioctl.c
      b72570f1
    • Andrew Morton's avatar
      [PATCH] s390: 32 bit emulation fixes. · 33c567a3
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Add emulation for sys_fadvise64 and sys_fadvise64_64.
       - Use common code wrapper for sys_sched_setaffinity and sys_sched_getaffinity.
       - Remove unused put_rusage.
       - Add ssize_t checks for iovec lengths in do_readv_writev32.
       - Add emulation for posix timer system calls.
      33c567a3
    • Andrew Morton's avatar
      [PATCH] s390: new 3270 driver. · f51320a5
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      New 3270 device driver.
      f51320a5
    • Andrew Morton's avatar
      [PATCH] zfcp host adapter patch cleanup · c29c6072
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      Remove all occurrences of __setup and #ifdef MODULE from the zfcp driver.
      c29c6072
    • Andrew Morton's avatar
      [PATCH] s390: zfcp host adapter · 2eb6e1f3
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Adapt to notify api change in cio.
       - Add missing unregister_reboot_notifier() for error path.
       - Fix infinite error recovery escalation for certain port failures.
       - Fix reference counting.
       - Use GFP_ATOMIC for kmalloc while holding a spinlock.
       - Don't open adapter/port if unit/port is removed from configuration
         after it has already been closed.
       - Don't establish qdio queues if a port/unit is going to be removed.
       - Shutdown ports and units before removing them.
       - Use schedule_work for scsi_add_device.
       - Don't reopen nameserver port when an rscn was received.
       - Don't call scsi_done twice in zfcp_fsf_send_fcp_command_task_handler.
       - Get rid of scsi fake queue, scsi_reqs_active and scsi_reqs_active_wq.
       - Get rid of unused adapter status.
       - Allow enabling of scsi devices at boot time with zfcp_dev parameter.
       - Change name prefix from sg to sg_list for functions which work with
         the struct sg_list.
       - Don't call scsi_add_device from zfcp error recovery thread to avoid a
         deadlock if a scsi command sent during scsi_add_device fails.
       - Fix scsi i/o stall due to missing local-link-up event.
      2eb6e1f3
    • Andrew Morton's avatar
      [PATCH] s390: network drivers · 99e0846e
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - ctc/iucv: Add module author/description/license to fsm.c
       - ctc/lcs/iucv/qeth: Remove dst_link_failure calls because they can
         trigger a BUG in icmp.c.
       - ctc/iucv/qeth: Use s390_root_dev_{register,unregister} to fix reference
         counting for the group device sysfs root object.
       - ctc/lcs/qeth: Fix ccwgroup behaviour, remove should not imply offline.
       - ctc: Adapt to notify api change in cio.
       - ctc: Remove duplicate put_user.
       - iucv: Fix oops with empty netiucv peer name.
       - iucv: Use GFP_ATOMIC for kmalloc from tasklet.
       - iucv: Fix removal of attritubes.
       - qeth: Use correct length in clearing of MAC address.
       - qeth: Queue multicast and broadcast packets into the last
         queue on HiperSocket.
       - qeth: Reenable send control data after i/o error.
       - qeth: Find correct recbuf in qeth_send_control_data.
       - qeth: Handle VM startlan disabled.
       - qeth: Set flags for vipa entries.
       - qeth: Correct netmask on vipa setting.
       - qeth: Fix spinlock problems ("scheduling while atomic").
       - qeth: Avoid setting multicast IP addresses several times.
       - qeth: Fix /proc/qeth format.
       - qeth: Fix race on device removal.
      99e0846e
    • Andrew Morton's avatar
      [PATCH] s390: tape driver. · 08f64b97
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Add module license gpl.
       - Add debug messages.
       - Make blocksize persistent after close. Limit blocksize to 64k.
       - Check tape state against TS_INIT/TS_UNUSED for special case of
         medium sense and assign.
       - Assign tape as soon as they are set online and unassign when set offline.
       - Correct implementation of MT_EOD.
       - Add backward compatible tape.agent hotplug support (to be removed as soon
         as a full blown tape class is implemented).
       - Add state to differentiate between character device and block device access.
       - Make tape block device usable.
       - Add 34xx seek speedup code.
       - Fix device reference counting.
       - Fix online-offline-online cycle.
       - Add timeout to standard assign function.
       - Correct calculation of device index in tape_get_device().
       - Check idal buffer for fixed block size reads and writes.
       - Adapt to notify api change in cio.
       - Add sysfs attributes for tape state, first minor, current operation and
         current blocksize.
      08f64b97
    • Andrew Morton's avatar
      [PATCH] s390: dasd driver · 21df060f
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Fix interrupt status examination.
       - Make dasd device attributes dependent on the devmap structure instead of
         the device structure to make them persistent and to be able to modify
         them in the offline state.
       - Allow changing the readonly attribute while dasd is online.
       - Add (diag) option to dasd= paramter.
       - Add missing spin_lock_init call.
       - Increase ref_count in dasd_device_from_cdev and add matching
         dasd_put_device pairs.
       - Adapt to notify api change in cio.
       - Fix bug in 3990 error recovery for cable pulls on ESS.
       - Replace kmap by page_address (no highmem on s/390).
       - Set correct default cache mode on ESS for eckd devices.
       - Change dasd names from "dasdx" to "dasd_<busid>_".
      21df060f
    • Andrew Morton's avatar
      [PATCH] s390: console driver. · b2b9268a
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
      - 3215: Adapt to notify api change in cio.
      - 3215/sclp: move copy_from_user out of locked code.
      b2b9268a
    • Andrew Morton's avatar
      [PATCH] s390: common i/o layer · 53e7ea7f
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Make blacklist busid-aware. Add "all" keyword and ! operator to cio_ignore
         kernel parameter.
       - Add state change notify function for ccw devices (not mandatory) and
         introduce the "device disconnected" state.
       - Remove auto offline from remove function for ccw devices to be able to
         distinguish between user initiated offline and implicit offline due to
         device removal.
       - Store pointer to subchannel structure in the (hardware) subchannel intparm
         and remove the ioinfo array (hurray...). Remove intparm parameter of
         cio_start.
       - Use busid instead of subchannel number for debug output.
       - Use an opm mask to track which paths are logically online for a subchannel.
       - Pathgroup every device it was requested for, even single path devices.
       - Give i/o on a logically switched off path a grace period to complete, then
         kill the i/o to get the path offline.
       - Correctly initialize all spin_locks with spin_lock_init.
       - Handle status pending/busy while disabling subchannel.
       - Set busid already in cio_validate_subchannel.
       - Add s390_root_dev_{register,unregister} functions.
       - Do stcrw() inside a kernel thread. Add crw overflow handling.
       - Use subchannel lock directly instead of ccw device lock pointer in
         ccw_device_recognition to avoid accessing an already free structure.
       - Take/release ccw device lock in ccw_device_console_enable.
       - Don't wipe out the busid field in ccw_device_console_enable.
       - Call ccw_device_unregister() directly on a notoper event - delaying it via
         queue_work is harmful (subchannel may be removed before ccw_device).
       - Handle not opertional condition in ccw_device_cancel_halt_clear.
       - Correct status pending handling: don't collect pending status directly
         but wait for the interrupt to show up.
       - Enable subchannel when trying a steal lock operation.
       - Introduce doverify bit for delayed path verification.
       - Fix locking in __ccw_device_retry_loop/read_conf_data/read_dev/chars.
       - Make SPID retry mechanism more obvious.
       - qdio: check return code of ccw_device_{halt,clear} in qdio_cleanup. Don't
         try to wait for an interrupt we won't get.
       - qdio: fix shared indicators.
       - qdio: add code to handle i/o killed by cio with active queues.
       - qdio: don't do a shutdown on timeout in interrupt context.
       - Update cio documentation.
      53e7ea7f
    • Andrew Morton's avatar
      [PATCH] s390: general update · e966ec57
      Andrew Morton authored
      From: Martin Schwidefsky <schwidefsky@de.ibm.com>
      
       - Add console_unblank in machine_{restart,halt,power_off} to get
         all messages on the screen.
       - Set console_irq to -1 if condev= parameter is present.
       - Fix write_trylock for 64 bit.
       - Fix svc restarting.
       - System call number on 64 bit is an int. Fix compare in entry64.S.
       - Fix tlb flush problem.
       - Use the idte instruction to flush tlbs of a particular mm.
       - Fix ptrace.
       - Add fadvise64_64 system call wrapper.
       - Fix pfault handling.
       - Do not clobber _PAGE_INVALID_NONE pages in pte_wrprotect.
       - Fix siginfo_t size problem (needs to be 128 for s390x, not 136).
       - Avoid direct assignment to tsk->state, use __set_task_state.
       - Always make any pending restarted system call return -EINTR.
       - Add panic_on_oops.
       - Display symbol for psw address in show_trace.
       - Don't discard sections .exit.text, .exit.data and .eh_frame,
         otherwise stabs information for kerntypes will get lost. 
       - Add memory clobber to assembler inline in ip_fast_checksum for gcc 3.3.
       - Fix softirq_pending calls for the current cpu (cpu == smp_processor_id()).
       - Remove BUG_ON in irq_enter. Two irq_enters are possible.
      e966ec57
    • Andrew Morton's avatar
      [PATCH] implement find_extend_vma() for nommu · 0da570b7
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Implement a null find_extend_vma() function for non-MMU architectures.  It
      is called from a couple of places, so needs to be present.
      0da570b7
    • Andrew Morton's avatar
      [PATCH] use m68k/types.h for m68knommu · 7961e872
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Remove m68knommu types.h, use m68k types.h instead.  At this level there is
      no difference between the basic m68k types and the m68knommu types, no
      point having 2 versions of the same file.
      7961e872
    • Andrew Morton's avatar
      [PATCH] fix cpu stats in m68knommu entry.S · 1e0f5459
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Fix cpu stats code to match changes to higher level kstat data structure
      for m68knommu ColdFire CPU architectures.  This fixes all ColdFire
      sub-architecture CPU types.
      1e0f5459
    • Andrew Morton's avatar
      [PATCH] m68knommu include fix · 521789cb
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Remove include of non-existant net/module.h in m68knommu architecture
      specific checksum code.
      521789cb
    • Andrew Morton's avatar
      [PATCH] sched_clock() for m68knommu architectures · 114d9308
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Implement the sched_clock() function for m68knommu architectures.
      114d9308
    • Andrew Morton's avatar
      [PATCH] add module support for m68knommu architecture · 91d44280
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Add module support for m68knommu architecture.
      91d44280
    • Andrew Morton's avatar
      [PATCH] allow for building module support for m68knommu architecture · 8a3788e1
      Andrew Morton authored
      From: gerg@snapgear.com
      
      Allow for building of module support for m68knommu architecture.
      8a3788e1
    • Andrew Morton's avatar
      [PATCH] nfs: Fix an Oops in the RPC debug code... · 0996722e
      Andrew Morton authored
      From: Trond Myklebust <trond.myklebust@fys.uio.no>
      
      Enabling rpc_debug can currently result in an Oops due to an incorrect
      pointer check.
      0996722e