13 Oct, 2007

16 commits

  • Update the version to 3.4
    Add my copyright
    Add myself to MAINTAINERS
    Exercise my right to change the license from dual BSD/GPL to GPL
    Don't force the definition of CONFIG_ISA on x86
    Always include pci.h
    Stop including stat.h

    Signed-off-by: Matthew Wilcox
    Signed-off-by: James Bottomley

    Matthew Wilcox
     
  • unsigned short is too small for sizeof(struct scatterlist) *
    min(q->max_hw_segments, q->max_phys_segments).

    This fixes memory leak with 4096 segments since 16 (likely sg size
    with x86) * 4096 sets sglist_len to zero.

    This might not happen without sg chaining support.

    Signed-off-by: FUJITA Tomonori
    Acked-by: Douglas Gilbert
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • Stress-testing and some thought has revealed some places where
    asynchronous scanning needs some more attention to locking.

    - Since async_scan is a bit, we need to hold the host_lock while
    modifying it to prevent races against other CPUs modifying the word
    that bit is in. This is probably a theoretical race for the moment,
    but other patches may change that.
    - The async_scan bit means not only that this host is being scanned
    asynchronously, but that all the devices attached to this host are not
    yet added to sysfs. So we must ensure that this bit is always in sync.
    I've chosen to do this with the scan_mutex since it's already acquired
    in most of the right places.
    - If the host changes state to deleted while we're in the middle of
    a scan, we'll end up with some devices on the host's list which must
    be deleted. Add a check to scsi_sysfs_add_devices() to ensure the
    host is still running.
    - To avoid the async_scan bit being protected by three locks, the
    async_scan_lock now only protects the scanning_list.

    Signed-off-by: Matthew Wilcox
    Signed-off-by: James Bottomley

    Matthew Wilcox
     
  • - use scsi_cmnd data accessors
    - Clean the !use_sg code paths

    Signed-off-by: Boaz Harrosh
    Acked-by: Greg Kroah-Hartman
    [jejb: merge conflict fix]
    Signed-off-by: James Bottomley

    Boaz Harrosh
     
  • sg's may have setup a the buffer with a different length than
    the transfer length so we should be using the bufflen passed
    in as the request's data len.

    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    Mike Christie
     
  • This converts ps3rom driver to use the new accessors for the sg lists
    and the parameters.

    Signed-off-by: FUJITA Tomonori
    Acked-by: Geert Uytterhoeven
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • it's better to remove tgt dependencies in srp transport class since
    most people want only initiator support.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This converts ibmvstgt to use transport tsk_mgmt_response callback.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This moves tsk_mgmt_response callback in struct scsi_host_template to
    struct scsi_transport_template since struct scsi_transport_template is
    more suitable for the task management stuff.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This converts libsrp and ibmvstgt to use srp transport.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Acked-by: Brian King
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This adds minimum target driver support:

    - srp_rport_{add,del} calls scsi_tgt_it_nexus_{create,destroy} for
    target drivers.

    - add a callback to notify target drivers of the nexus operation
    results to srp_function_template.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • tgt uses scsi_host as I_T nexus. This works for ibmvstgt because it
    creates one scsi_host for one initiator. However, other target drivers
    don't work like that.

    This adds I_T nexus support, which enable one scsi_host to handle
    multiple initiators. New scsi_tgt_it_nexus_create/destroy functions
    are expected be called transport classes. For example, ibmvstgt
    creates an initiator remote port, then the srp transport calls
    tgt_it_nexus_create. tgt doesn't manages I_T nexus, instead it tells
    tgtd, user-space daemon, to create a new I_T nexus.

    On the receiving the response from tgtd, tgt calls
    shost->transportt->it_nexus_response. transports should notify a
    lld. The srp transport uses it_nexus_response callback in
    srp_function_template to do that.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This adds a 'roles' attribute to rport like transport_fc. The role can
    be initiator or target. That is, the initiator driver creates target
    remote ports and the target driver creates initiator remote ports.

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: Mike Christie
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This converts ib_srp to use the srp transport class.

    I don't have ib hardware so I've not tested this patch.

    Signed-off-by: FUJITA Tomonori
    Cc: Roland Dreier
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This converts ibmvscsi to use the srp transport class.

    Signed-off-by: FUJITA Tomonori
    Acked-by: Brian King
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     
  • This adds srp transport class that works with ib_srp and ibmvscsi.

    It creates only /sys/class/{srp_host,srp_remote_ports} and
    srp_remote_ports has only "port_id" attribute.

    viola:/sys/class/srp_remote_ports/port-0:1# ls
    device port_id subsystem uevent
    viola:/sys/class/srp_remote_ports/port-0:1# cat port_id
    4c:49:4e:55:58:20:56:49:4f:00:00:00:00:00:00:00

    Signed-off-by: FUJITA Tomonori
    Signed-off-by: James Bottomley

    FUJITA Tomonori
     

16 Aug, 2007

9 commits


15 Aug, 2007

12 commits

  • * git://git.kernel.org/pub/scm/linux/kernel/git/steve/gfs2-2.6-fixes:
    [GFS2] Revert remounting w/o acl option leaves acls enabled
    [GFS2] Fix setting of inherit jdata attr
    [GFS2] Fix incorrect error path in prepare_write()
    [GFS2] Fix incorrect return code in rgrp.c
    [GFS2] soft lockup in rgblk_search
    [GFS2] soft lockup detected in databuf_lo_before_commit
    [DLM] fix basts for granted PR waiting CW
    [DLM] More othercon fixes
    [DLM] Fix memory leak in dlm_add_member() when dlm_node_weight() returns less than zero
    [DLM] zero unused parts of sockaddr_storage
    [DLM] fix NULL ls usage
    [DLM] Clear othercon pointers when a connection is closed

    Linus Torvalds
     
  • * 'i2c-for-linus' of git://jdelvare.pck.nerim.net/jdelvare-2.6:
    i2c-s3c2410: Build fix
    i2c/menelaus: Build fix
    i2c-mv64xxx: Reinitialize hw and driver on I2C bus hang
    i2c-mpc: Don't disable I2C module on stop condition
    i2c-iop3xx: Set I2C_CLASS_HWMON to adapter class
    i2c/isp1301_omap: Build fixes, whitespace
    i2c-mpc: Pass correct dev_id to free_irq on error path
    i2c-i801: Typo: erroneous

    Linus Torvalds
     
  • Fixup the include files after the arch moves that
    where included in 2.6.23.

    Signed-off-by: Ben Dooks
    Signed-off-by: Jean Delvare

    Ben Dooks
     
  • Fix Menelaus build error, and remove needless "#define DEBUG".

    Signed-off-by: David Brownell
    Signed-off-by: Jean Delvare

    David Brownell
     
  • Under certain conditions, the mv64xxx I2C bus can hang preventing
    further operation. To make the driver more robust, we now reset
    the I2C hardware and the driver state machine when such hangs are
    detected.

    Signed-off-by: Dale Farnsworth
    Acked-by: Mark A. Greer
    Signed-off-by: Jean Delvare

    Dale Farnsworth
     
  • Disabling module on stop doesn't work on some CPUs (ie. mpc8241,
    as reported by Guennadi Liakhovetski), so remove that.

    Disable I2C module on errors/interrupts to prevent it from
    locking up on mpc5200b.

    Signed-off-by: Domen Puncer
    Acked-by: Guennadi Liakhovetski
    Signed-off-by: Jean Delvare

    Domen Puncer
     
  • In order to be able to use sensors on the IOP3xx SoCs, one needs to set
    the adapter class to I2C_CLASS_HWMON.

    Signed-off-by: Arnaud Patard
    Signed-off-by: Jean Delvare

    Arnaud Patard
     
  • Build fixes for isp1301_omap driver. I think an earlier version
    of this must have gotten lost somewhere, or maybe it only went
    into the Linux-OMAP tree.

    Also, some whitespace fixes to bring this more into sync with the
    version of this found in the Linux-OMAP tree. (That version has
    updates for the OTG controller on the OMAP 1710 which break that
    functionality on OMAP 161x boards like the H2, so merging all of
    it is not currently an option.)

    Signed-off-by: David Brownell
    Signed-off-by: Jean Delvare

    David Brownell
     
  • Signed-off-by: Scott Wood
    Signed-off-by: Jean Delvare

    Scott Wood
     
  • Signed-off-by: Jean Delvare

    Jean Delvare
     
  • * 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6:
    [IPVS]: Use IP_VS_WAIT_WHILE when encessary.
    [NET]: Share correct feature code between bridging and bonding
    [ATM] drivers/atm/iphase.c: mostly kmalloc + memset conversion to kzalloc
    [IRDA] irda-usb.c: mostly kmalloc + memset conversion to k[cz]alloc
    [WAN] drivers/net/wan/hdlc_fr.c: kmalloc + memset conversion to kzalloc
    [DCCP]: fix memory leak and clean up style - dccp_feat_empty_confirm()
    [DCCP]: fix theoretical ccids_{read,write}_lock() race
    [XFRM]: Clean up duplicate includes in net/xfrm/
    [TIPC]: Clean up duplicate includes in net/tipc/
    [SUNRPC]: Clean up duplicate includes in net/sunrpc/
    [PKT_SCHED]: Clean up duplicate includes in net/sched/
    [IPV6]: Clean up duplicate includes in net/ipv6/
    [IPV4]: Clean up duplicate includes in net/ipv4/
    [ATM]: Clean up duplicate includes in net/atm/
    [ATM]: Clean up duplicate includes in drivers/atm/
    [IPCONFIG]: ip_auto_config fix
    [ATM]: fore200e_param_bs_queue() must be __devinit

    Linus Torvalds
     
  • * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6:
    e1000: Add device IDs of new 82571 board variants
    xen-netfront: Avoid deref'ing skbafter it is potentially freed.
    3c59x maintainer
    3c59x: fix duplex configuration
    natsemi: fix netdev error acounting
    ax88796 printk fixes
    myri10ge: Use the pause counter to avoid a needless device reset
    via-rhine: disable rx_copybreak on archs that don't allow unaligned DMA access

    Linus Torvalds
     

14 Aug, 2007

3 commits

  • This reverts commit 569a7b6c2e8965ff4908003b925757703a3d649c. The
    code was correct originally. The default setting for ACLs after a
    remount should be to be the same as before the remount.

    Signed-off-by: Abhijith Das
    Signed-off-by: Steven Whitehouse

    Steven Whitehouse
     
  • Due to a mix up between the jdata attribute and inherit jdata attribute
    it has not been possible to set the inherit jdata attribute on
    directories. This is now fixed and the ioctl will report the inherit
    jdata attribute for directories rather than the jdata attribute as it
    did previously. This stems from our need to have the one bit in the
    ioctl attr flags mean two different things according to whether the
    underlying inode is a directory or not.

    Signed-off-by: Steven Whitehouse

    Steven Whitehouse
     
  • The error path in prepare_write() was incorrect in the (very rare) event
    that the transaction fails to start. The following prevents a NULL
    pointer dereference,

    Signed-off-by: Steven Whitehouse

    Steven Whitehouse