1. 03 2月, 2011 19 次提交
  2. 02 2月, 2011 4 次提交
  3. 01 2月, 2011 14 次提交
  4. 31 1月, 2011 3 次提交
    • J
      cifs: clean up some compiler warnings · 31c2659d
      Jeff Layton 提交于
      New compiler warnings that I noticed when building a patchset based
      on recent Fedora kernel:
      
      fs/cifs/cifssmb.c: In function 'CIFSSMBSetFileSize':
      fs/cifs/cifssmb.c:4813:8: warning: variable 'data_offset' set but not used
      [-Wunused-but-set-variable]
      
      fs/cifs/file.c: In function 'cifs_open':
      fs/cifs/file.c:349:24: warning: variable 'pCifsInode' set but not used
      [-Wunused-but-set-variable]
      fs/cifs/file.c: In function 'cifs_partialpagewrite':
      fs/cifs/file.c:1149:23: warning: variable 'cifs_sb' set but not used
      [-Wunused-but-set-variable]
      fs/cifs/file.c: In function 'cifs_iovec_write':
      fs/cifs/file.c:1740:9: warning: passing argument 6 of 'CIFSSMBWrite2' from
      incompatible pointer type [enabled by default]
      fs/cifs/cifsproto.h:337:12: note: expected 'unsigned int *' but argument is
      of type 'size_t *'
      
      fs/cifs/readdir.c: In function 'cifs_readdir':
      fs/cifs/readdir.c:767:23: warning: variable 'cifs_sb' set but not used
      [-Wunused-but-set-variable]
      
      fs/cifs/cifs_dfs_ref.c: In function 'cifs_dfs_d_automount':
      fs/cifs/cifs_dfs_ref.c:342:2: warning: 'rc' may be used uninitialized in
      this function [-Wuninitialized]
      fs/cifs/cifs_dfs_ref.c:278:6: note: 'rc' was declared here
      Signed-off-by: NJeff Layton <jlayton@redhat.com>
      Reviewed-by: NPavel Shilovsky <piastry@etersoft.ru>
      Signed-off-by: NSteve French <sfrench@us.ibm.com>
      31c2659d
    • J
      cifs: make CIFS depend on CRYPTO_MD4 · f855f6cb
      Jeff Layton 提交于
      Recently CIFS was changed to use the kernel crypto API for MD4 hashes,
      but the Kconfig dependencies were not changed to reflect this.
      Signed-off-by: NJeff Layton <jlayton@redhat.com>
      Reported-and-Tested-by: NSuresh Jayaraman <sjayaraman@suse.de>
      Reviewed-by: NShirish Pargaonkar <shirishpargaonkar@gmail.com>
      Signed-off-by: NSteve French <sfrench@us.ibm.com>
      f855f6cb
    • R
      ARM: io: ensure inb/outb() et.al. are properly ordered on ARMv6+ · c1928022
      Russell King 提交于
      Ensure that the ISA/PCI IO space accessors are properly ordered on
      ARMv6+ architectures.  These should always be ordered with respect to
      all other accesses.
      
      This also fixes __iormb() and __iowmb() not being visible to ioread/
      iowrite if a platform defines its own MMIO accessors.
      Signed-off-by: NRussell King <rmk+kernel@arm.linux.org.uk>
      c1928022