1. 01 8月, 2020 1 次提交
  2. 27 7月, 2020 2 次提交
  3. 16 7月, 2020 1 次提交
  4. 15 7月, 2020 12 次提交
  5. 14 7月, 2020 3 次提交
  6. 10 7月, 2020 10 次提交
  7. 14 6月, 2020 1 次提交
    • M
      treewide: replace '---help---' in Kconfig files with 'help' · a7f7f624
      Masahiro Yamada 提交于
      Since commit 84af7a61 ("checkpatch: kconfig: prefer 'help' over
      '---help---'"), the number of '---help---' has been gradually
      decreasing, but there are still more than 2400 instances.
      
      This commit finishes the conversion. While I touched the lines,
      I also fixed the indentation.
      
      There are a variety of indentation styles found.
      
        a) 4 spaces + '---help---'
        b) 7 spaces + '---help---'
        c) 8 spaces + '---help---'
        d) 1 space + 1 tab + '---help---'
        e) 1 tab + '---help---'    (correct indentation)
        f) 1 tab + 1 space + '---help---'
        g) 1 tab + 2 spaces + '---help---'
      
      In order to convert all of them to 1 tab + 'help', I ran the
      following commend:
      
        $ find . -name 'Kconfig*' | xargs sed -i 's/^[[:space:]]*---help---/\thelp/'
      Signed-off-by: NMasahiro Yamada <masahiroy@kernel.org>
      a7f7f624
  8. 01 6月, 2020 5 次提交
  9. 31 5月, 2020 1 次提交
    • K
      pstore/ram: Introduce max_reason and convert dump_oops · 791205e3
      Kees Cook 提交于
      Now that pstore_register() can correctly pass max_reason to the kmesg
      dump facility, introduce a new "max_reason" module parameter and
      "max-reason" Device Tree field.
      
      The "dump_oops" module parameter and "dump-oops" Device
      Tree field are now considered deprecated, but are now automatically
      converted to their corresponding max_reason values when present, though
      the new max_reason setting has precedence.
      
      For struct ramoops_platform_data, the "dump_oops" member is entirely
      replaced by a new "max_reason" member, with the only existing user
      updated in place.
      
      Additionally remove the "reason" filter logic from ramoops_pstore_write(),
      as that is not specifically needed anymore, though technically
      this is a change in behavior for any ramoops users also setting the
      printk.always_kmsg_dump boot param, which will cause ramoops to behave as
      if max_reason was set to KMSG_DUMP_MAX.
      Co-developed-by: NPavel Tatashin <pasha.tatashin@soleen.com>
      Signed-off-by: NPavel Tatashin <pasha.tatashin@soleen.com>
      Link: https://lore.kernel.org/lkml/20200515184434.8470-6-keescook@chromium.org/Signed-off-by: NKees Cook <keescook@chromium.org>
      791205e3
  10. 30 5月, 2020 4 次提交