Skip to content
Snippets Groups Projects
  1. Nov 04, 2021
  2. Jun 18, 2021
  3. Jun 11, 2021
  4. Apr 15, 2021
  5. Feb 12, 2021
  6. Dec 13, 2020
  7. Nov 20, 2020
  8. Sep 17, 2020
    • Zhihao Cheng's avatar
      ubi: check kthread_should_stop() after the setting of task state · d005f8c6
      Zhihao Cheng authored
      
      A detach hung is possible when a race occurs between the detach process
      and the ubi background thread. The following sequences outline the race:
      
        ubi thread: if (list_empty(&ubi->works)...
      
        ubi detach: set_bit(KTHREAD_SHOULD_STOP, &kthread->flags)
                    => by kthread_stop()
                    wake_up_process()
                    => ubi thread is still running, so 0 is returned
      
        ubi thread: set_current_state(TASK_INTERRUPTIBLE)
                    schedule()
                    => ubi thread will never be scheduled again
      
        ubi detach: wait_for_completion()
                    => hung task!
      
      To fix that, we need to check kthread_should_stop() after we set the
      task state, so the ubi thread will either see the stop bit and exit or
      the task state is reset to runnable such that it isn't scheduled out
      indefinitely.
      
      Signed-off-by: default avatarZhihao Cheng <chengzhihao1@huawei.com>
      Cc: <stable@vger.kernel.org>
      Fixes: 801c135c ("UBI: Unsorted Block Images")
      Reported-by: default avatar <syzbot+853639d0cb16c31c7a14@syzkaller.appspotmail.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      d005f8c6
  9. Aug 02, 2020
  10. Jul 16, 2020
  11. Jun 09, 2020
    • Mike Rapoport's avatar
      mm: introduce include/linux/pgtable.h · ca5999fd
      Mike Rapoport authored
      
      The include/linux/pgtable.h is going to be the home of generic page table
      manipulation functions.
      
      Start with moving asm-generic/pgtable.h to include/linux/pgtable.h and
      make the latter include asm/pgtable.h.
      
      Signed-off-by: default avatarMike Rapoport <rppt@linux.ibm.com>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Cc: Arnd Bergmann <arnd@arndb.de>
      Cc: Borislav Petkov <bp@alien8.de>
      Cc: Brian Cain <bcain@codeaurora.org>
      Cc: Catalin Marinas <catalin.marinas@arm.com>
      Cc: Chris Zankel <chris@zankel.net>
      Cc: "David S. Miller" <davem@davemloft.net>
      Cc: Geert Uytterhoeven <geert@linux-m68k.org>
      Cc: Greentime Hu <green.hu@gmail.com>
      Cc: Greg Ungerer <gerg@linux-m68k.org>
      Cc: Guan Xuetao <gxt@pku.edu.cn>
      Cc: Guo Ren <guoren@kernel.org>
      Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
      Cc: Helge Deller <deller@gmx.de>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Ley Foon Tan <ley.foon.tan@intel.com>
      Cc: Mark Salter <msalter@redhat.com>
      Cc: Matthew Wilcox <willy@infradead.org>
      Cc: Matt Turner <mattst88@gmail.com>
      Cc: Max Filippov <jcmvbkbc@gmail.com>
      Cc: Michael Ellerman <mpe@ellerman.id.au>
      Cc: Michal Simek <monstr@monstr.eu>
      Cc: Nick Hu <nickhu@andestech.com>
      Cc: Paul Walmsley <paul.walmsley@sifive.com>
      Cc: Richard Weinberger <richard@nod.at>
      Cc: Rich Felker <dalias@libc.org>
      Cc: Russell King <linux@armlinux.org.uk>
      Cc: Stafford Horne <shorne@gmail.com>
      Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: Tony Luck <tony.luck@intel.com>
      Cc: Vincent Chen <deanbo422@gmail.com>
      Cc: Vineet Gupta <vgupta@synopsys.com>
      Cc: Will Deacon <will@kernel.org>
      Cc: Yoshinori Sato <ysato@users.sourceforge.jp>
      Link: http://lkml.kernel.org/r/20200514170327.31389-3-rppt@kernel.org
      
      
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      ca5999fd
  12. Jun 02, 2020
    • Arne Edholm's avatar
      ubi: Select fastmap anchor PEBs considering wear level rules · 4b68bf9a
      Arne Edholm authored
      
      There is a risk that the fastmap anchor PEB is alternating between
      just two PEBs, the current anchor and the previous anchor that was just
      deleted. As the fastmap pools gets the first take on free PEBs, the
      pools may leave no free PEBs to be selected as the new anchor,
      resulting in the two PEBs alternating behaviour. If the anchor PEBs gets
      a high erase count the PEBs will not be used by the pools but remain in
      ubi->free, even more increasing the likelihood they will be used as
      anchors.
      
      Getting stuck using only a couple of PEBs continuously will result in an
      uneven wear, eventually leading to failure.
      
      To fix this:
      
      - Choose the fastmap anchor when the most free PEBs are available. This is
        during rebuilding of the fastmap pools, after the unused pool PEBs are
        added to ubi->free but before the pools are populated again from the
        free PEBs. Also reserve an additional second best PEB as a candidate
        for the next time the fast map anchor is updated. If a better PEB is
        found the next time the fast map anchor is updated, the candidate is
        made available for building the pools.
      
      - Enable anchor move within the anchor area again as it is useful for
        distributing wear.
      
      - The anchor candidate for the next fastmap update is the most suited free
        PEB. Check this PEB's erase count during wear leveling. If the wear
        leveling limit is exceeded, the PEB is considered unsuitable for now. As
        all other non used anchor area PEBs should be even worse, free up the
        used anchor area PEB with the lowest erase count.
      
      Signed-off-by: default avatarArne Edholm <arne.edholm@axis.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      4b68bf9a
    • Christoph Hellwig's avatar
      mm: remove the pgprot argument to __vmalloc · 88dca4ca
      Christoph Hellwig authored
      
      The pgprot argument to __vmalloc is always PAGE_KERNEL now, so remove it.
      
      Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
      Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
      Reviewed-by: Michael Kelley <mikelley@microsoft.com> [hyperv]
      Acked-by: Gao Xiang <xiang@kernel.org> [erofs]
      Acked-by: default avatarPeter Zijlstra (Intel) <peterz@infradead.org>
      Acked-by: default avatarWei Liu <wei.liu@kernel.org>
      Cc: Christian Borntraeger <borntraeger@de.ibm.com>
      Cc: Christophe Leroy <christophe.leroy@c-s.fr>
      Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
      Cc: David Airlie <airlied@linux.ie>
      Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
      Cc: Haiyang Zhang <haiyangz@microsoft.com>
      Cc: Johannes Weiner <hannes@cmpxchg.org>
      Cc: "K. Y. Srinivasan" <kys@microsoft.com>
      Cc: Laura Abbott <labbott@redhat.com>
      Cc: Mark Rutland <mark.rutland@arm.com>
      Cc: Minchan Kim <minchan@kernel.org>
      Cc: Nitin Gupta <ngupta@vflare.org>
      Cc: Robin Murphy <robin.murphy@arm.com>
      Cc: Sakari Ailus <sakari.ailus@linux.intel.com>
      Cc: Stephen Hemminger <sthemmin@microsoft.com>
      Cc: Sumit Semwal <sumit.semwal@linaro.org>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Catalin Marinas <catalin.marinas@arm.com>
      Cc: Heiko Carstens <heiko.carstens@de.ibm.com>
      Cc: Paul Mackerras <paulus@ozlabs.org>
      Cc: Vasily Gorbik <gor@linux.ibm.com>
      Cc: Will Deacon <will@kernel.org>
      Link: http://lkml.kernel.org/r/20200414131348.444715-22-hch@lst.de
      
      
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      88dca4ca
  13. May 17, 2020
  14. May 11, 2020
  15. Mar 30, 2020
  16. Feb 04, 2020
  17. Jan 19, 2020
  18. Jan 16, 2020
  19. Nov 17, 2019
    • Sascha Hauer's avatar
      ubi: Fix producing anchor PEBs · f9c34bb5
      Sascha Hauer authored
      
      When a new fastmap is about to be written UBI must make sure it has a
      free block for a fastmap anchor available. For this ubi_update_fastmap()
      calls ubi_ensure_anchor_pebs(). This stopped working with 2e8f08de
      ("ubi: Fix races around ubi_refill_pools()"), with this commit the wear
      leveling code is blocked and can no longer produce free PEBs. UBI then
      more often than not falls back to write the new fastmap anchor to the
      same block it was already on which means the same erase block gets
      erased during each fastmap write and wears out quite fast.
      
      As the locking prevents us from producing the anchor PEB when we
      actually need it, this patch changes the strategy for creating the
      anchor PEB. We no longer create it on demand right before we want to
      write a fastmap, but instead we create an anchor PEB right after we have
      written a fastmap. This gives us enough time to produce a new anchor PEB
      before it is needed. To make sure we have an anchor PEB for the very
      first fastmap write we call ubi_ensure_anchor_pebs() during
      initialisation as well.
      
      Fixes: 2e8f08de ("ubi: Fix races around ubi_refill_pools()")
      Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      f9c34bb5
    • Rishi Gupta's avatar
      ubi: Fix warning static is not at beginning of declaration · 09971877
      Rishi Gupta authored
      
      Compiler generates following warning when kernel is built with W=1:
      
      drivers/mtd/ubi/ubi.h:971:1: warning: ‘static’ is not at beginning
      of declaration [-Wold-style-declaration]
      
      This commit fixes this by correctly ordering keywords.
      
      Signed-off-by: default avatarRishi Gupta <gupt21@gmail.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      09971877
    • Stefan Roese's avatar
      ubi: Print skip_check in ubi_dump_vol_info() · 188945e9
      Stefan Roese authored
      
      It might be interesting, if "skip_check" is set or not, so lets print
      this flag in ubi_dump_vol_info() as well.
      
      Signed-off-by: default avatarStefan Roese <sr@denx.de>
      Cc: Richard Weinberger <richard@nod.at>
      Cc: Boris Brezillon <boris.brezillon@collabora.com>
      Cc: Heiko Schocher <hs@denx.de>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      188945e9
  20. Nov 14, 2019
  21. Oct 23, 2019
  22. Sep 15, 2019
    • Richard Weinberger's avatar
      ubi: block: Warn if volume size is not multiple of 512 · e46131b9
      Richard Weinberger authored
      
      If volume size is not a multiple of 512, ubi block cuts
      off the last bytes of an volume since the block layer works
      on 512 byte sectors.
      This can happen especially on NOR flash with minimal io
      size of 1.
      
      To avoid unpleasant surprises, print a warning.
      
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      e46131b9
    • Zhihao Cheng's avatar
      ubi: ubi_wl_get_peb: Increase the number of attempts while getting PEB · 8615b94f
      Zhihao Cheng authored
      
      Running stress test io_paral (A pressure ubi test in mtd-utils) on an
      UBI device with fewer PEBs (fastmap enabled) may cause ENOSPC errors and
      make UBI device read-only, but there are still free PEBs on the UBI
      device. This problem can be easily reproduced by performing the following
      steps on a 2-core machine:
        $ modprobe nandsim first_id_byte=0x20 second_id_byte=0x33 parts=80
        $ modprobe ubi mtd="0,0" fm_autoconvert
        $ ./io_paral /dev/ubi0
      
      We may see the following verbose:
      (output)
        [io_paral] update_volume():108: failed to write 380 bytes at offset
        95920 of volume 2
        [io_paral] update_volume():109: update: 97088 bytes
        [io_paral] write_thread():227: function pwrite() failed with error 28
        (No space left on device)
        [io_paral] write_thread():229: cannot write 15872 bytes to offs 31744,
        wrote -1
      (dmesg)
        ubi0 error: ubi_wl_get_peb [ubi]: Unable to get a free PEB from user WL
        pool
        ubi0 warning: ubi_eba_write_leb [ubi]: switch to read-only mode
        CPU: 0 PID: 2027 Comm: io_paral Not tainted 5.3.0-rc2-00001-g5986cd0 #9
        ubi0 warning: try_write_vid_and_data [ubi]: failed to write VID header
        to LEB 2:5, PEB 18
        Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.0
        -0-ga698c8995f-prebuilt.qemu.org 04/01/2014
        Call Trace:
          dump_stack+0x85/0xba
          ubi_eba_write_leb+0xa1e/0xa40 [ubi]
          vol_cdev_write+0x307/0x520 [ubi]
          vfs_write+0xfa/0x280
          ksys_pwrite64+0xc5/0xe0
          __x64_sys_pwrite64+0x22/0x30
          do_syscall_64+0xbf/0x440
      
      In function ubi_wl_get_peb, the operation of filling the pool
      (ubi_update_fastmap) with free PEBs and fetching a free PEB from the pool
      is not atomic. After thread A filling the pool with free PEB, free PEB may
      be taken away by thread B. When thread A checks the expression again, the
      condition is still unsatisfactory. At this time, there may still be free
      PEBs on UBI that can be filled into the pool.
      
      This patch increases the number of attempts to obtain PEB. An extreme
      case (No free PEBs left after creating test volumes) has been tested on
      different type of machines for 100 times. The biggest number of attempts
      are shown below:
      
                   x86_64     arm64
        2-core        4         4
        4-core        8         4
        8-core        4         4
      
      Signed-off-by: default avatarZhihao Cheng <chengzhihao1@huawei.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      8615b94f
Loading