1. 07 8月, 2015 1 次提交
  2. 11 7月, 2015 2 次提交
    • B
      DocBook: Avoid building man pages repeatedly and inconsistently · b44158b1
      Ben Hutchings 提交于
      Some kernel-doc sections are included in multiple DocBook files.  This
      means the mandocs target will generate the same manual page multiple
      times with different metadata (author name/address and manual title,
      taken from the including DocBook file).  If it's invoked in a parallel
      build, the output is nondeterminstic.
      
      For each section that is duplicated, mark the less specific manual's
      inclusion as 'extra' and exclude it during conversion to manual pages.
      Use xmlif for this, as that is bundled with xmlto which we already
      use.
      
      I would have preferred to use more conventional markup for this, but
      each of the following approaches failed:
      
      1. Wrap the extra inclusions with a new element and add a template to
         the stylesheet to include/exclude them.  Unfortunately DocBook XSL
         doesn't seem to support foreign elements at an intermediate level
         in the document tree.
      2. Use DocBook profiling.  This works but requires passing an absolute
         path to the profile stylesheet to xmlto, so it's not portable.
      3. Use SGML marked sections.  docbook2x can handle these but xmlto
         chokes on them.
      Reported-by: NJérémy Bobbio <lunar@debian.org>
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      b44158b1
    • B
      DocBook: Don't store mtime (or name) in compressed man pages · 32c1735c
      Ben Hutchings 提交于
      The mtime on a man page is the build time.  As gzip stores the mtime
      and original name in the compressed file by default, this makes
      compressed man pages unreproducible.  Neither of these are important
      metadata in this case, so turn this off.
      Reported-by: NJérémy Bobbio <lunar@debian.org>
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      32c1735c
  3. 29 1月, 2015 1 次提交
  4. 13 11月, 2014 1 次提交
  5. 13 5月, 2014 1 次提交
  6. 01 4月, 2014 1 次提交
  7. 30 3月, 2014 1 次提交
  8. 15 3月, 2014 2 次提交
  9. 08 2月, 2014 1 次提交
  10. 02 12月, 2013 2 次提交
  11. 18 5月, 2012 1 次提交
    • P
      MCA: delete all remaining traces of microchannel bus support. · bb8187d3
      Paul Gortmaker 提交于
      Hardware with MCA bus is limited to 386 and 486 class machines
      that are now 20+ years old and typically with less than 32MB
      of memory.  A quick search on the internet, and you see that
      even the MCA hobbyist/enthusiast community has lost interest
      in the early 2000 era and never really even moved ahead from
      the 2.4 kernels to the 2.6 series.
      
      This deletes anything remaining related to CONFIG_MCA from core
      kernel code and from the x86 architecture.  There is no point in
      carrying this any further into the future.
      
      One complication to watch for is inadvertently scooping up
      stuff relating to machine check, since there is overlap in
      the TLA name space (e.g. arch/x86/boot/mca.c).
      
      Cc: Thomas Gleixner <tglx@linutronix.de>
      Cc: James Bottomley <JBottomley@Parallels.com>
      Cc: x86@kernel.org
      Acked-by: NIngo Molnar <mingo@elte.hu>
      Acked-by: NH. Peter Anvin <hpa@zytor.com>
      Signed-off-by: NPaul Gortmaker <paul.gortmaker@windriver.com>
      bb8187d3
  12. 28 7月, 2011 3 次提交
  13. 03 5月, 2011 1 次提交
  14. 28 3月, 2011 1 次提交
  15. 22 3月, 2011 1 次提交
    • L
      [media] v4l: v4l2_subdev userspace format API · 333c8b97
      Laurent Pinchart 提交于
      Add a userspace API to get, set and enumerate the media format on a
      subdev pad.
      
      The format at the output of a subdev usually depends on the format at
      its input(s). The try format operation is thus not suitable for probing
      format at individual pads, as it can't modify the device state and thus
      can't remember the format tried at the input to compute the output
      format.
      
      To fix the problem, pass an extra argument to the get/set format
      operations to select the 'try' or 'active' format.
      
      The try format is used when probing the subdev. Setting the try format
      must not change the device configuration but can store data for later
      reuse. Data storage is provided at the file-handle level so applications
      probing the subdev concurently won't interfere with each other.
      
      The active format is used when configuring the subdev. It's identical to
      the format handled by the usual get/set operations.
      Signed-off-by: NLaurent Pinchart <laurent.pinchart@ideasonboard.com>
      Signed-off-by: NStanimir Varbanov <svarbanov@mm-sol.com>
      Signed-off-by: NSakari Ailus <sakari.ailus@iki.fi>
      Acked-by: NHans Verkuil <hverkuil@xs4all.nl>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      333c8b97
  16. 25 8月, 2010 1 次提交
  17. 11 8月, 2010 2 次提交
  18. 21 4月, 2010 1 次提交
  19. 16 12月, 2009 3 次提交
  20. 19 9月, 2009 2 次提交
  21. 01 5月, 2009 2 次提交
  22. 11 4月, 2009 1 次提交
  23. 09 3月, 2009 1 次提交
  24. 23 2月, 2009 1 次提交
    • R
      docbook: split kernel-api for device-drivers · f7f84f38
      Randy Dunlap 提交于
      The kernel-api docbook was much larger than any of the others,
      so processing it took longer and needed some docbook extras in
      some cases, so split it into kernel-api (infrastructure etc.)
      and device drivers/device subsystems.  This allows these docbooks
      to be generated in parallel.  (This reduced the docbook processing
      time on my 4-proc system with make -j4 from about 5min:16sec to
      about 2min:01sec.)
      
      The chapters that were moved from kernel-api to device-drivers are:
      
      Driver Basics
      Device drivers infrastructure
      Parallel Port Devices
      Message-based devices
      Sound Devices
      16x50 UART Driver
      Frame Buffer Library
      Input Subsystem
      Serial Peripheral Interface (SPI)
      I2C and SMBus Subsystem
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Acked-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      f7f84f38
  25. 09 1月, 2009 1 次提交
  26. 22 11月, 2008 1 次提交
  27. 31 10月, 2008 1 次提交
  28. 17 10月, 2008 1 次提交
  29. 13 8月, 2008 1 次提交
    • R
      docsrc: build Documentation/ sources · 3794f3e8
      Randy Dunlap 提交于
      Currently source files in the Documentation/ sub-dir can easily bit-rot
      since they are not generally buildable, either because they are hidden in
      text files or because there are no Makefile rules for them.  This needs to
      be fixed so that the source files remain usable and good examples of code
      instead of bad examples.
      
      Add the ability to build source files that are in the Documentation/ dir.
      Add to Kconfig as "BUILD_DOCSRC" config symbol.
      
      Use "CONFIG_BUILD_DOCSRC=1 make ..." to build objects from the
      Documentation/ sources.  Or enable BUILD_DOCSRC in the *config system.
      However, this symbol depends on HEADERS_CHECK since the header files need
      to be installed (for userspace builds).
      
      Built (using cross-tools) for x86-64, i386, alpha, ia64, sparc32,
      sparc64, powerpc, sh, m68k, & mips.
      Signed-off-by: NRandy Dunlap <randy.dunlap@oracle.com>
      Reviewed-by: NSam Ravnborg <sam@ravnborg.org>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      3794f3e8
  30. 04 8月, 2008 1 次提交