1. 25 9月, 2006 18 次提交
    • M
      ocfs2: combine inode and generic AST functions · e92d57df
      Mark Fasheh 提交于
      There is extremely little difference between the two now. We can remove the
      callback from ocfs2_lock_res_ops as well.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      e92d57df
    • M
      ocfs2: Clean up lock resource refresh flags · f625c979
      Mark Fasheh 提交于
      Use of the refresh mechanism is lock-type wide, so move knowledge of that to
      the ocfs2_lock_res_ops structure.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      f625c979
    • M
      ocfs2: Remove i_generation from inode lock names · 24c19ef4
      Mark Fasheh 提交于
      OCFS2 puts inode meta data in the "lock value block" provided by the DLM.
      Typically, i_generation is encoded in the lock name so that a deleted inode
      on and a new one in the same block don't share the same lvb.
      
      Unfortunately, that scheme means that the read in ocfs2_read_locked_inode()
      is potentially thrown away as soon as the meta data lock is taken - we
      cannot encode the lock name without first knowing i_generation, which
      requires a disk read.
      
      This patch encodes i_generation in the inode meta data lvb, and removes the
      value from the inode meta data lock name. This way, the read can be covered
      by a lock, and at the same time we can distinguish between an up to date and
      a stale LVB.
      
      This will help cold-cache stat(2) performance in particular.
      
      Since this patch changes the protocol version, we take the opportunity to do
      a minor re-organization of two of the LVB fields.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      24c19ef4
    • M
      ocfs2: Encode i_generation in the meta data lvb · f9e2d82e
      Mark Fasheh 提交于
      When i_generation is removed from the lockname, this will help us determine
      whether a meta data lvb has information that is in sync with the local
      struct inode.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      f9e2d82e
    • M
      ocfs2: Free up some space in the lvb · 4d3b83f7
      Mark Fasheh 提交于
      lvb_version doesn't need to be a whole 32 bits. Make it an 8 bit field to
      free up some space. This should be backwards compatible until we use one of
      the fields, in which case we'd bump the lvb version anyway.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      4d3b83f7
    • M
      ocfs2: Remove special casing for inode creation in ocfs2_dentry_attach_lock() · 0027dd5b
      Mark Fasheh 提交于
      We can't use LKM_LOCAL for new dentry locks because an unlink and subsequent
      re-create of a name/inode pair may result in the lock still being mastered
      somewhere in the cluster.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      0027dd5b
    • M
      ocfs2: manually d_move() during ocfs2_rename() · 1ba9da2f
      Mark Fasheh 提交于
      Make use of FS_RENAME_DOES_D_MOVE to avoid a race condition that can occur
      during ->rename() if we d_move() outside of the parent directory cluster
      locks, and another node discovers the new name (created during the rename)
      and unlinks it. d_move() will unconditionally rehash a dentry - which will
      leave stale data in the system.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      1ba9da2f
    • M
      [PATCH] Allow file systems to manually d_move() inside of ->rename() · 349457cc
      Mark Fasheh 提交于
      Some file systems want to manually d_move() the dentries involved in a
      rename.  We can do this by making use of the FS_ODD_RENAME flag if we just
      have nfs_rename() unconditionally do the d_move().  While there, we rename
      the flag to be more descriptive.
      
      OCFS2 uses this to protect that part of the rename operation with a cluster
      lock.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      Cc: Trond Myklebust <trond.myklebust@fys.uio.no>
      Cc: Al Viro <viro@zeniv.linux.org.uk>
      Cc: Christoph Hellwig <hch@lst.de>
      Signed-off-by: NAndrew Morton <akpm@osdl.org>
      349457cc
    • M
      ocfs2: Remove the dentry vote · 1390334b
      Mark Fasheh 提交于
      This is unused now.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      1390334b
    • M
      ocfs2: Hook rest of the file system into dentry locking API · 379dfe9d
      Mark Fasheh 提交于
      Actually replace the vote calls with the new dentry operations. Make any
      necessary adjustments to get the scheme to work.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      379dfe9d
    • M
      ocfs2: Add dentry tracking API · 80c05846
      Mark Fasheh 提交于
      Replace the dentry vote mechanism with a cluster lock which covers a set
      of dentries. This allows us to force d_delete() only on nodes which actually
      care about an unlink.
      
      Every node that does a ->lookup() gets a read only lock on the dentry, until
      an unlink during which the unlinking node, will request an exclusive lock,
      forcing the other nodes who care about that dentry to d_delete() it. The
      effect is that we retain a very lightweight ->d_revalidate(), and at the
      same time get to make large improvements to the average case performance of
      the ocfs2 unlink and rename operations.
      
      This patch adds the higher level API and the dentry manipulation code.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      80c05846
    • M
      ocfs2: Add new cluster lock type · d680efe9
      Mark Fasheh 提交于
      Replace the dentry vote mechanism with a cluster lock which covers a set
      of dentries. This allows us to force d_delete() only on nodes which actually
      care about an unlink.
      
      Every node that does a ->lookup() gets a read only lock on the dentry, until
      an unlink during which the unlinking node, will request an exclusive lock,
      forcing the other nodes who care about that dentry to d_delete() it. The
      effect is that we retain a very lightweight ->d_revalidate(), and at the
      same time get to make large improvements to the average case performance of
      the ocfs2 unlink and rename operations.
      
      This patch adds the cluster lock type which OCFS2 can attach to
      dentries.  A small number of fs/ocfs2/dcache.c functions are stubbed
      out so that this change can compile.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      d680efe9
    • M
      ocfs2: Update dlmglue for new dlmlock() API · f0681062
      Mark Fasheh 提交于
      File system lock names are very regular right now, so we really only need to
      pass an extra parameter to dlmlock().
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      f0681062
    • M
      ocfs2: Update dlmfs for new dlmlock() API · ea5b3a18
      Mark Fasheh 提交于
      We just need to add a namelen field to the user_lock_res structure, and
      update a few debug prints. Instead of updating all debug prints, I took the
      opportunity to remove a few that are likely unnecessary these days.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      ea5b3a18
    • M
      ocfs2: Allow binary names in the DLM · 3384f3df
      Mark Fasheh 提交于
      The OCFS2 DLM uses strlen() to determine lock name length, which excludes
      the possibility of putting binary values in the name string. Fix this by
      requiring that string length be passed in as a parameter.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      3384f3df
    • M
      ocfs2: Silence dlm error print · e2c73698
      Mark Fasheh 提交于
      An AST can be delivered via the network after a lock has been removed, so no
      need to print an error when we see that.
      Signed-off-by: NMark Fasheh <mark.fasheh@oracle.com>
      e2c73698
    • L
      Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev · a68aa1cc
      Linus Torvalds 提交于
      * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev: (50 commits)
        [libata] Delete pata_it8172 driver
        [PATCH] libata: improve handling of diagostic fail (and hardware that misreports it)
        [PATCH] libata: fix non-uniform ports handling
        Fix libata resource conflict for legacy mode
        [libata] ata_piix: build fix
        [PATCH] pata_amd: Check enable bits on Nvidia
        [PATCH] Update SiS PATA
        [libata] Add pata_jmicron driver to Kconfig, Makefile
        [libata #pata-drivers] Trim trailing whitespace.
        [libata] Trim trailing whitespace.
        [libata] Add a bunch of PATA drivers.
        Rename libata-bmdma.c to libata-sff.c.
        libata: Grand renaming.
        Clean up drivers/ata/Kconfig a bit.
        [PATCH] CONFIG_PM=n slim: drivers/scsi/sata_sil*
        [PATCH] sata_via: Add SATA support for vt8237a
        [PATCH] libata: change path to libata in libata.tmpl
        [PATCH] libata: s/CONFIG_SCSI_SATA/CONFIG_[S]ATA/g in pci/quirks.c
        libata: Make sure drivers/ata is a separate Kconfig menu
        [libata] ata_piix: add missing kfree()
        ...
      a68aa1cc
    • L
      Merge branch 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6 · a319a277
      Linus Torvalds 提交于
      * 'upstream-linus' of master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6: (217 commits)
        net/ieee80211: fix more crypto-related build breakage
        [PATCH] Spidernet: add ethtool -S (show statistics)
        [NET] GT96100: Delete bitrotting ethernet driver
        [PATCH] mv643xx_eth: restrict to 32-bit PPC_MULTIPLATFORM
        [PATCH] Cirrus Logic ep93xx ethernet driver
        r8169: the MMIO region of the 8167 stands behin BAR#1
        e1000, ixgb: Remove pointless wrappers
        [PATCH] Remove powerpc specific parts of 3c509 driver
        [PATCH] s2io: Switch to pci_get_device
        [PATCH] gt96100: move to pci_get_device API
        [PATCH] ehea: bugfix for register access functions
        [PATCH] e1000 disable device on PCI error
        drivers/net/phy/fixed: #if 0 some incomplete code
        drivers/net: const-ify ethtool_ops declarations
        [PATCH] ethtool: allow const ethtool_ops
        [PATCH] sky2: big endian
        [PATCH] sky2: fiber support
        [PATCH] sky2: tx pause bug fix
        drivers/net: Trim trailing whitespace
        [PATCH] ehea: IBM eHEA Ethernet Device Driver
        ...
      
      Manually resolved conflicts in drivers/net/ixgb/ixgb_main.c and
      drivers/net/sky2.c related to CHECKSUM_HW/CHECKSUM_PARTIAL changes by
      commit 84fa7933 that just happened to be
      next to unrelated changes in this update.
      a319a277
  2. 24 9月, 2006 22 次提交
    • J
      e18fa700
    • J
      Merge branch 'master' into upstream · 23930fa1
      Jeff Garzik 提交于
      23930fa1
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 · 4f5537de
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6:
        [SCSI] scsi_transport_fc: fixup netlink arguments
      4f5537de
    • J
      [SCSI] scsi_transport_fc: fixup netlink arguments · 1b73c4bb
      James Bottomley 提交于
      nlmsg_multicast now takes an extra allocation flag, so add it to
      the use in the fibre channel transport class.
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      1b73c4bb
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6 · f164c421
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-misc-2.6: (94 commits)
        [SCSI] SPI transport class: misc DV fixes
        [SCSI] Switch some more scsi drivers to pci_get_device and refcounted pci structures
        [SCSI] eata_pio cleanup and PCI fix
        [SCSI] aacraid: README update
        [SCSI] aacraid: remove scsi_remove_device
        [SCSI] aacraid: merge rx and rkt code
        [SCSI] aacraid: expose physical devices
        [SCSI] aacraid: misc cleanup
        [SCSI] zfcp: update maintainers file
        [SCSI] zfcp: update maintainers file
        [SCSI] zfcp: fix: avoid removal of fsf reqs before qdio queues are down
        [SCSI] zfcp: introduce struct timer_list in struct zfcp_fsf_req
        [SCSI] zfcp: fix: use correct req_id in eh_abort_handler
        [SCSI] zfcp: create private slab caches to guarantee proper data alignment
        [SCSI] zfcp: remove zfcp_ccw_unregister function
        [SCSI] aic7xxx: pause sequencer before touching SBLKCTL
        [SCSI] aic7xxx: avoid checking SBLKCTL register for certain cards
        [SCSI] scsi_debug version 1.80
        [SCSI] megaraid: Make megaraid_ioctl() check copy_to_user() return value
        [SCSI] aha152x: remove static host array
        ...
      f164c421
    • J
      Merge mulgrave-w:git/linux-2.6 · 1aedf2cc
      James Bottomley 提交于
      Conflicts:
      
      	include/linux/blkdev.h
      
      Trivial merge to incorporate tag prototypes.
      1aedf2cc
    • J
      [SCSI] SPI transport class: misc DV fixes · dfdc58ba
      James Bottomley 提交于
      Key more of the domain validation settings off the inquiry data from
      the disk (in particular, don't try IU or DT unless the disk claims to
      support them.
      
      Also add a new dv_in_progress flag to prevent recursive DV.
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      dfdc58ba
    • D
      [SPARC64]: Update defconfig. · 6973ddde
      David S. Miller 提交于
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      6973ddde
    • D
      [SPARC64]: Fix sched_clock() wrapping every ~17 seconds. · e17ba8f5
      David S. Miller 提交于
      Unfortunately, sparc64 doesn't have an easy way to do a "64 X 64 -->
      128" bit multiply like PowerPC and IA64 do.  We were doing a
      "64 X 64 --> 64" bit multiple which causes overflow very quickly with
      a 30-bit quotient shift.
      
      So use a quotientshift count of 10 instead of 30, just like x86 and
      ARM do.
      
      This also fixes the wrapping of printk timestamp values every ~17
      seconds.
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      e17ba8f5
    • A
    • A
      [SCSI] eata_pio cleanup and PCI fix · 1a68d41a
      Alan Cox 提交于
      This started as a PCI reference fixup but to do that I need to build it,
      to build it I need to fix it and its full of 32bitisms and uglies.
      
      It has been resurrected, I'm not sure if this is a thank you for the
      work on the license stuff or punishment for some unknown misdeed however
      8). I've also fixed a memory scribble in the init code.
      
      One oddity - the changes from HZ * to constants are deliberate. Whoever
      originally wrote the code (or cleaned it up) used HZ for a cycle timing
      loop even though is not HZ related. I've put it back to the counts used
      in the old days when the driver was most used.
      Signed-off-by: NAlan Cox <alan@redhat.com>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      1a68d41a
    • M
      [SCSI] aacraid: README update · 2538363e
      Mark Haverkamp 提交于
      Received from Mark Salyzyn:
      
      This patch to the driver's documentation adds a few new product entries,
      sorts the entries on OEM lines first for easy searching, followed by
      product id order to make it easier to compare against the open source
      pci list. The driver has 'family match' so is somewhat future proof, no
      code changes are required to recognize the new products.
      Signed-off-by: NMark Haverkamp <markh@osdl.org>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      2538363e
    • M
      [SCSI] aacraid: remove scsi_remove_device · ac5826ca
      Mark Haverkamp 提交于
      Received from Mark Salyzyn:
      
      Until the system is stabilized, I am suggesting the enclosed
      modification to prevent the driver from tickling the panic. Once sysfs
      and friends are stabilized, the patch may be backed out. We have yet to
      evaluate if we really want to relinquish existing Scsi Devices in any
      case, holding on to them as configuration of arrays comes and goes makes
      some sense as well. As a result, we have opted to pull the lines rather
      than comment them in legacy.
      Signed-off-by: NMark Haverkamp <markh@osdl.org>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      ac5826ca
    • M
      [SCSI] aacraid: merge rx and rkt code · 76a7f8fd
      Mark Haverkamp 提交于
      Received from Mark Salyzyn:
      
      The only real difference between the rkt and rx platform modules is the
      offset of the message registers. This patch recognizes this similarity
      and simplifies the driver to reduce it's code footprint and to improve
      maintainability by reducing the code duplication.
      
      Visibly, the 'rkt.c' portion of this patch looks more complicated than
      it really is. View it as retaining the rkt-only specifics of the
      interface.
      Signed-off-by: NMark Haverkamp <markh@osdl.org>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      76a7f8fd
    • M
      [SCSI] aacraid: expose physical devices · 653ba58d
      Mark Haverkamp 提交于
      Received from Mark Salyzyn:
      
      I am placing this functionality into an insmod parameter. Normally the physical
      components are exported to sg, and are blocked from showing up in sd.
      
      Note that the pass-through I/O path via the driver through the Firmware to the
      physical disks is not an optimized path, the card is designed for Hardware
      RAID, elevator sorting and caching. This should not be used as a means for
      utilizing the aacraid based controllers as a generic scsi/SATA/SAS controller,
      performance should suck by a few percentage points, any RAID meta-data on the
      drives will confuse the controller about who owns the drives and there is a
      high risk of destroying content in both directions. Unreliable and for
      experimentation or strange controlled circumstances only.
      Signed-off-by: NMark Haverkamp <markh@osdl.org>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      653ba58d
    • M
      [SCSI] aacraid: misc cleanup · 65101355
      Mark Haverkamp 提交于
      Received from Mark Salyzyn:
      
      Basically cleanup, nothing here will have an affect. Adjusting some
      error codes, removing superfluous definitions and code fragments.
      Signed-off-by: NMark Haverkamp <markh@osdl.org>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      65101355
    • L
      Merge git://git.infradead.org/mtd-2.6 · 1ab9dd09
      Linus Torvalds 提交于
      * git://git.infradead.org/mtd-2.6:
        [MTD] Whitespace cleanup in SSFDC driver.
        [MTD] SSFDC translation layer minor cleanup
        [MTD] Fix dependencies with CONFIG_MTD=m
      1ab9dd09
    • L
      Merge branch 'linus' of master.kernel.org:/pub/scm/linux/kernel/git/perex/alsa · f7425b16
      Linus Torvalds 提交于
      * 'linus' of master.kernel.org:/pub/scm/linux/kernel/git/perex/alsa: (148 commits)
        [ALSA] intel8x0m - Free irq in suspend
        [ALSA] Move CONFIG_SND_AC97_POWER_SAVE to pci/Kconfig
        [ALSA] usb-audio: add mixer control names for the Aureon 5.1 MkII
        [ALSA] ES1938: remove duplicate field initialization
        [ALSA] usb-audio: increase number of packets per URB
        [ALSA] hda-codec - Fix headphone auto-toggle on sigmatel codec
        [ALSA] hda-intel - A slight cleanup of timeout check in azx_get_response()
        [ALSA] hda-codec - Fix mic input with STAC92xx codecs
        [ALSA] mixart: Use SEEK_{SET,CUR,END} instead of hardcoded values
        [ALSA] gus: Use SEEK_{SET,CUR,END} instead of hardcoded values
        [ALSA] opl4: Use SEEK_{SET,CUR,END} instead of hardcoded values
        [ALSA] sound core: Use SEEK_{SET,CUR,END} instead of hardcoded values
        [ALSA] hda-codec - Support multiple headphone pins
        [ALSA] hda_intel prefer 24bit instead of 20bit
        [ALSA] hda-codec - Add vendor ids for Motorola and Conexant
        [ALSA] hda-codec - Add device id for Motorola si3054-compatible codec
        [ALSA] Add missing compat ioctls for ALSA control API
        [ALSA] powermac - Fix Oops when conflicting with aoa driver
        [ALSA] aoa: add locking to tas codec
        [ALSA] hda-intel - Fix suspend/resume with MSI
        ...
      f7425b16
    • L
      Merge git://git.linux-nfs.org/pub/linux/nfs-2.6 · 9f261e01
      Linus Torvalds 提交于
      * git://git.linux-nfs.org/pub/linux/nfs-2.6: (74 commits)
        NFS: unmark NFS direct I/O as experimental
        NFS: add comments clarifying the use of nfs_post_op_update()
        NFSv4: rpc_mkpipe creating socket inodes w/out sk buffers
        NFS: Use SEEK_END instead of hardcoded value
        NFSv4: When mounting with a port=0 argument, substitute port=2049
        NFSv4: Poll more aggressively when handling NFS4ERR_DELAY
        NFSv4: Handle the condition NFS4ERR_FILE_OPEN
        NFSv4: Retry lease recovery if it failed during a synchronous operation.
        NFS: Don't invalidate the symlink we just stuffed into the cache
        NFS: Make read() return an ESTALE if the file has been deleted
        NFSv4: It's perfectly legal for clp to be NULL here....
        NFS: nfs_lookup - don't hash dentry when optimising away the lookup
        SUNRPC: Fix Oops in pmap_getport_done
        SUNRPC: Add refcounting to the struct rpc_xprt
        SUNRPC: Clean up soft task error handling
        SUNRPC: Handle ENETUNREACH, EHOSTUNREACH and EHOSTDOWN socket errors
        SUNRPC: rpc_delay() should not clobber the rpc_task->tk_status
        Fix a referral error Oops
        NFS: NFS_ROOT should use the new rpc_create API
        NFS: Fix up compiler warnings on 64-bit platforms in client.c
        ...
      
      Manually resolved conflict in net/sunrpc/xprtsock.c
      9f261e01
    • L
      Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6 · a4c12d6c
      Linus Torvalds 提交于
      * master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6: (353 commits)
        [IPV6] ADDRCONF: Mobile IPv6 Home Address support.
        [IPV6] ADDRCONF: Allow non-DAD'able addresses.
        [IPV6] NDISC: Fix is_router flag setting.
        [IPV6] ADDRCONF: Convert addrconf_lock to RCU.
        [IPV6] NDISC: Add proxy_ndp sysctl.
        [IPV6] NDISC: Set per-entry is_router flag in Proxy NA.
        [IPV6] NDISC: Avoid updating neighbor cache for proxied address in receiving NA.
        [IPV6]: Don't forward packets to proxied link-local address.
        [IPV6] NDISC: Handle NDP messages to proxied addresses.
        [NETFILTER]: PPTP conntrack: fix another GRE keymap leak
        [NETFILTER]: PPTP conntrack: fix GRE keymap leak
        [NETFILTER]: PPTP conntrack: fix PPTP_IN_CALL message types
        [NETFILTER]: PPTP conntrack: check call ID before changing state
        [NETFILTER]: PPTP conntrack: clean up debugging cruft
        [NETFILTER]: PPTP conntrack: consolidate header parsing
        [NETFILTER]: PPTP conntrack: consolidate header size checks
        [NETFILTER]: PPTP conntrack: simplify expectation handling
        [NETFILTER]: PPTP conntrack: remove unnecessary cid/pcid header pointers
        [NETFILTER]: PPTP conntrack: fix header definitions
        [NETFILTER]: PPTP conntrack: remove more dead code
        ...
      a4c12d6c
    • H
      [CRYPTO] hmac: Fix error truncation by unlikely() · 73af07de
      Herbert Xu 提交于
      The error return values are truncated by unlikely so we need to
      save it first.  Thanks to Kyle Moffett for spotting this.
      Signed-off-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
      73af07de
    • S
      [SCSI] zfcp: update maintainers file · 9cbb8897
      Swen Schillig 提交于
      As Andreas stated he will not maintain the zfcp driver anymore.
      Instead I will take over the responsibility.
      Signed-off-by: NSwen Schillig <swen@vnet.ibm.com>
      Signed-off-by: NJames Bottomley <James.Bottomley@SteelEye.com>
      9cbb8897