Skip to content
Snippets Groups Projects
  1. Apr 30, 2017
  2. Apr 27, 2017
    • Lokesh Vutla's avatar
      ext4: Fix comparision of unsigned expression with < 0 · 509b498a
      Lokesh Vutla authored
      
      In file ext4fs.c funtion ext4fs_read_file() compares an
      unsigned expression with < 0 like below
      
      	lbaint_t blknr;
      	blknr = read_allocated_block(&(node->inode), i);
      	if (blknr < 0)
      		return -1;
      
      blknr is of type ulong/uint64_t. read_allocated_block() returns
      long int. So comparing blknr with < 0 will always be false. Instead
      declare blknr as long int.
      
      Similarly ext4/dev.c does a similar comparison. Drop the redundant
      comparison.
      
      Signed-off-by: default avatarLokesh Vutla <lokeshvutla@ti.com>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      509b498a
  3. Apr 18, 2017
  4. Feb 12, 2017
    • Masahiro Yamada's avatar
      flash: complete CONFIG_SYS_NO_FLASH move with renaming · e856bdcf
      Masahiro Yamada authored
      
      We repeated partial moves for CONFIG_SYS_NO_FLASH, but this is
      not completed. Finish this work by the tool.
      
      During this move, let's rename it to CONFIG_MTD_NOR_FLASH.
      Actually, we have more instances of "#ifndef CONFIG_SYS_NO_FLASH"
      than those of "#ifdef CONFIG_SYS_NO_FLASH".  Flipping the logic will
      make the code more readable.  Besides, negative meaning symbols do
      not fit in obj-$(CONFIG_...) style Makefiles.
      
      This commit was created as follows:
      
      [1] Edit "default n" to "default y" in the config entry in
          common/Kconfig.
      
      [2] Run "tools/moveconfig.py -y -r HEAD SYS_NO_FLASH"
      
      [3] Rename the instances in defconfigs by the following:
        find . -path './configs/*_defconfig' | xargs sed -i \
        -e '/CONFIG_SYS_NO_FLASH=y/d' \
        -e 's/# CONFIG_SYS_NO_FLASH is not set/CONFIG_MTD_NOR_FLASH=y/'
      
      [4] Change the conditionals by the following:
        find . -name '*.[ch]' | xargs sed -i \
        -e 's/ifndef CONFIG_SYS_NO_FLASH/ifdef CONFIG_MTD_NOR_FLASH/' \
        -e 's/ifdef CONFIG_SYS_NO_FLASH/ifndef CONFIG_MTD_NOR_FLASH/' \
        -e 's/!defined(CONFIG_SYS_NO_FLASH)/defined(CONFIG_MTD_NOR_FLASH)/' \
        -e 's/defined(CONFIG_SYS_NO_FLASH)/!defined(CONFIG_MTD_NOR_FLASH)/'
      
      [5] Modify the following manually
        - Rename the rest of instances
        - Remove the description from README
        - Create the new Kconfig entry in drivers/mtd/Kconfig
        - Remove the old Kconfig entry from common/Kconfig
        - Remove the garbage comments from include/configs/*.h
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      e856bdcf
  5. Jan 28, 2017
  6. Dec 27, 2016
  7. Dec 02, 2016
    • Tom Rini's avatar
      sandboxfs: Fix resource leak · 0317724e
      Tom Rini authored
      
      Now that we free resources in sandbox_fs_ls Coverity is letting us know
      that in some cases we might leak.  So in case of error we should still
      let os_dirent_free free anything that was allocated.
      
      Fixes: 86167089 ("sandbox/fs: Free memory allocated by os_dirent_ls")
      Reported-by: Coverity (CID: 153450)
      Cc: Stefan Brüns <stefan.bruens@rwth-aachen.de>
      Cc: Simon Glass <sjg@chromium.org>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
      0317724e
  8. Nov 29, 2016
  9. Nov 21, 2016
  10. Oct 31, 2016
  11. Oct 24, 2016
  12. Oct 11, 2016
  13. Sep 23, 2016
Loading