1. 20 8月, 2017 1 次提交
  2. 16 8月, 2017 3 次提交
  3. 12 8月, 2017 1 次提交
  4. 12 7月, 2017 2 次提交
  5. 16 6月, 2017 1 次提交
  6. 06 6月, 2017 1 次提交
  7. 04 6月, 2017 1 次提交
  8. 23 5月, 2017 2 次提交
  9. 01 5月, 2017 2 次提交
  10. 28 4月, 2017 1 次提交
    • L
      ext4: Fix comparision of unsigned expression with < 0 · 509b498a
      Lokesh Vutla 提交于
      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: NLokesh Vutla <lokeshvutla@ti.com>
      Reviewed-by: NTom Rini <trini@konsulko.com>
      509b498a
  11. 18 4月, 2017 3 次提交
  12. 13 2月, 2017 1 次提交
    • M
      flash: complete CONFIG_SYS_NO_FLASH move with renaming · e856bdcf
      Masahiro Yamada 提交于
      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: NMasahiro Yamada <yamada.masahiro@socionext.com>
      e856bdcf
  13. 29 1月, 2017 1 次提交
  14. 28 1月, 2017 1 次提交
  15. 28 12月, 2016 5 次提交
  16. 03 12月, 2016 1 次提交
    • T
      sandboxfs: Fix resource leak · 0317724e
      Tom Rini 提交于
      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: NTom Rini <trini@konsulko.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      0317724e
  17. 29 11月, 2016 1 次提交
  18. 22 11月, 2016 2 次提交
  19. 31 10月, 2016 1 次提交
  20. 24 10月, 2016 3 次提交
  21. 12 10月, 2016 1 次提交
  22. 24 9月, 2016 2 次提交
  23. 23 9月, 2016 3 次提交