1. 31 Aug, 2017 2 commits
  2. 30 Aug, 2017 6 commits
  3. 26 Aug, 2017 3 commits
  4. 24 Aug, 2017 9 commits
    • Andrii Bordunov's avatar
      Documentation: stable-kernel-rules: fix broken git urls · c1aa3871
      Andrii Bordunov authored
      git.kernel.org links don't work (fatal: repository ... not found).
      Update them with the current style from https://git.kernel.org
      
      There is no HTTP option, so also switch HTTP -> HTTPS.
      Signed-off-by: default avatarAndrii Bordunov <andrew.bordunov@gmail.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      c1aa3871
    • Alex Shi's avatar
      rtmutex: update rt-mutex · 68a1e349
      Alex Shi authored
      The rtmutex remove a pending owner bit in in rt_mutex::owner, in
      commit 8161239a ("rtmutex: Simplify PI algorithm and make highest prio task get lock")
      But the document was changed accordingly. Updating it to a meaningful
      state.
      
      BTW, as 'Steven Rostedt' mentioned:
      There is still technically a "Pending Owner", it's just not called
      that anymore. The pending owner happens to be the top_waiter of a lock
      that has no owner and has been woken up to grab the lock.
      Signed-off-by: default avatarAlex Shi <alex.shi@linaro.org>
      Cc: Steven Rostedt <rostedt@goodmis.org>
      Cc: Sebastian Siewior <bigeasy@linutronix.de>
      Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
      Cc: Juri Lelli <juri.lelli@arm.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      To: linux-doc@vger.kernel.org
      To: linux-kernel@vger.kernel.org
      To: Jonathan Corbet <corbet@lwn.net>
      To: Ingo Molnar <mingo@redhat.com>
      To: Peter Zijlstra <peterz@infradead.org>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      68a1e349
    • Alex Shi's avatar
      rtmutex: update rt-mutex-design · f1824df1
      Alex Shi authored
      The rt-mutex-design documents didn't gotten meaningful update from its
      first version. Even after owner's pending bit was removed in commit 8161239a
      ("rtmutex: Simplify PI algorithm and make highest prio task get lock")
      and priority list 'plist' changed to rbtree. And Peter Zijlstra did some
      clean up and fix for deadline task changes on tip tree.
      
      So update it to latest code and make it meaningful.
      Steven Rostedt and Sebastian Siewior gave much of comments and input
      in this doc. Thanks!
      Signed-off-by: default avatarAlex Shi <alex.shi@linaro.org>
      Cc: Steven Rostedt <rostedt@goodmis.org>
      Cc: Sebastian Siewior <bigeasy@linutronix.de>
      Cc: Mathieu Poirier <mathieu.poirier@linaro.org>
      Cc: Juri Lelli <juri.lelli@arm.com>
      Cc: Thomas Gleixner <tglx@linutronix.de>
      To: linux-doc@vger.kernel.org
      To: linux-kernel@vger.kernel.org
      To: Jonathan Corbet <corbet@lwn.net>
      To: Ingo Molnar <mingo@redhat.com>
      To: Peter Zijlstra <peterz@infradead.org>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      f1824df1
    • Markus Heiser's avatar
      docs: fix minimal sphinx version in conf.py · 0e4c2b75
      Markus Heiser authored
      according to what Documentation/doc-guide/sphinx.rst says::
      
        The ReST markups currently used by the Documentation/ files
        are meant to be built with ``Sphinx`` version 1.3 or upper.
      Signed-off-by: default avatarMarkus Heiser <markus.heiser@darmarit.de>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      0e4c2b75
    • Markus Heiser's avatar
      docs: fix nested numbering in the TOC · 5303b8d3
      Markus Heiser authored
      With Sphinx 1.6 nested numbering is reported as warning::
      
        ./input/joydev/index.rst:13: WARNING: input/joydev/joystick-api is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-func-open is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-func-close is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-func-ioctl is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-func-poll is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-adap-g-caps is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-adap-g-log-addrs is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-adap-g-phys-addr is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-dqevent is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-g-mode is already assigned section numbers (nested numbered toctree?)
        ./media/uapi/cec/cec-funcs.rst:8: WARNING: media/uapi/cec/cec-ioc-receive is already assigned section numbers (nested numbered toctree?)
      
      TOC numbering is already set in::
      
        ./input/devices/index.rst:9:
        ./media/uapi/cec/cec-api.rst:19:
      
      I guess the nested numbering in:
      
        ./input/joydev/index.rst
        ./media/uapi/cec/cec-funcs.rst
      
      is just a C&P typo, so lets remove it.
      Signed-off-by: default avatarMarkus Heiser <markus.heiser@darmarit.de>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      5303b8d3
    • Naren's avatar
      NVMEM documentation fix: A minor typo · be629b44
      Naren authored
      This is a minor patch that fixes the following typo in the NVMEM documentation:
      
      When a consumers no longer needs the NVMEM
      
      to,
      
      When a consumer no longer needs the NVMEM
      Signed-off-by: default avatarNarendran Sankaran <naren.kernel@gmail.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      be629b44
    • Mauro Carvalho Chehab's avatar
      docs-rst: pdf: use same vertical margin on all Sphinx versions · 5148e6ab
      Mauro Carvalho Chehab authored
      Currently, on Sphinx up to version 1.4, pdf output uses a vertical
      margin of 1 inch. For upper versions, it uses a margin of 0.5 inches.
      
      That causes both page headers and footers to be very close to the margin
      of the sheet. Not all printers support writing like that.
      
      Also, there's no reason why the layout for newer versions would be
      different than for previous ones.
      
      So, standardize it, by always setting to 1 inch.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      5148e6ab
    • Mauro Carvalho Chehab's avatar
      doc: Makefile: if sphinx is not found, run a check script · 92a037f0
      Mauro Carvalho Chehab authored
      Right now, if the building system doesn't find Sphinx, it
      bails out, without providing any instructions about what
      should be done.
      
      Instead, run a script, providing some guidance about the
      steps needed for Sphinx build to work.
      Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      92a037f0
    • Josh Holland's avatar
      docs: Fix paths in security/keys · adf31eeb
      Josh Holland authored
      Several paths in the security/keys documentation were incorrect.
      Signed-off-by: default avatarJosh Holland <anowlcalledjosh@gmail.com>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      adf31eeb
  5. 10 Aug, 2017 1 commit
  6. 07 Aug, 2017 4 commits
  7. 23 Jul, 2017 13 commits
  8. 17 Jul, 2017 2 commits