1. 25 7月, 2018 2 次提交
    • M
      udlfb: don't switch if we are switching to the same videomode · 564f1807
      Mikulas Patocka 提交于
      The udlfb driver reprograms the hardware everytime the user switches the
      console, that makes quite unusable when working on the console.
      
      This patch makes the driver remember the videomode we are in and avoid
      reprogramming the hardware if we switch to the same videomode.
      
      We mask the "activate" field and the "FB_VMODE_SMOOTH_XPAN" flag when
      comparing the videomode, because they cause spurious switches when
      switching to and from the Xserver.
      Signed-off-by: NMikulas Patocka <mpatocka@redhat.com>
      Cc: stable@vger.kernel.org
      Signed-off-by: NBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
      564f1807
    • M
      udlfb: fix semaphore value leak · 9d0aa601
      Mikulas Patocka 提交于
      I observed that the performance of the udl fb driver degrades over time.
      On a freshly booted machine, it takes 6 seconds to do "ls -la /usr/bin";
      after some time of use, the same operation takes 14 seconds.
      
      The reason is that the value of "limit_sem" decays over time.
      
      The udl driver uses a semaphore "limit_set" to specify how many free urbs
      are there on dlfb->urbs.list. If the count is zero, the "down" operation
      will sleep until some urbs are added to the freelist.
      
      In order to avoid some hypothetical deadlock, the driver will not call
      "up" immediately, but it will offload it to a workqueue. The problem is
      that if we call "schedule_delayed_work" on the same work item multiple
      times, the work item may only be executed once.
      
      This is happening:
      * some urb completes
      * dlfb_urb_completion adds it to the free list
      * dlfb_urb_completion calls schedule_delayed_work to schedule the function
        dlfb_release_urb_work to increase the semaphore count
      * as the urb is on the free list, some other task grabs it and submits it
      * the submitted urb completes, dlfb_urb_completion is called again
      * dlfb_urb_completion calls schedule_delayed_work, but the work is already
        scheduled, so it does nothing
      * finally, dlfb_release_urb_work is called, it increases the semaphore
        count by 1, although it should increase it by 2
      
      So, the semaphore count is decreasing over time, and this causes gradual
      performance degradation.
      
      Note that in the current kernel, the "up" function may be called from
      interrupt and it may race with the "down" function called by another
      thread, so we don't have to offload the call of "up" to a workqueue at
      all. This patch removes the workqueue code. The patch also changes
      "down_interruptible" to "down" in dlfb_free_urb_list, so that we will
      clean up the driver properly even if a signal arrives.
      
      With this patch, the performance of udlfb no longer degrades.
      Signed-off-by: NMikulas Patocka <mpatocka@redhat.com>
      Cc: stable@vger.kernel.org
      [b.zolnierkie: fix immediatelly -> immediately typo]
      Signed-off-by: NBartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
      9d0aa601
  2. 16 1月, 2018 2 次提交
  3. 02 11月, 2017 1 次提交
    • G
      License cleanup: add SPDX GPL-2.0 license identifier to files with no license · b2441318
      Greg Kroah-Hartman 提交于
      Many source files in the tree are missing licensing information, which
      makes it harder for compliance tools to determine the correct license.
      
      By default all files without license information are under the default
      license of the kernel, which is GPL version 2.
      
      Update the files which contain no license information with the 'GPL-2.0'
      SPDX license identifier.  The SPDX identifier is a legally binding
      shorthand, which can be used instead of the full boiler plate text.
      
      This patch is based on work done by Thomas Gleixner and Kate Stewart and
      Philippe Ombredanne.
      
      How this work was done:
      
      Patches were generated and checked against linux-4.14-rc6 for a subset of
      the use cases:
       - file had no licensing information it it.
       - file was a */uapi/* one with no licensing information in it,
       - file was a */uapi/* one with existing licensing information,
      
      Further patches will be generated in subsequent months to fix up cases
      where non-standard license headers were used, and references to license
      had to be inferred by heuristics based on keywords.
      
      The analysis to determine which SPDX License Identifier to be applied to
      a file was done in a spreadsheet of side by side results from of the
      output of two independent scanners (ScanCode & Windriver) producing SPDX
      tag:value files created by Philippe Ombredanne.  Philippe prepared the
      base worksheet, and did an initial spot review of a few 1000 files.
      
      The 4.13 kernel was the starting point of the analysis with 60,537 files
      assessed.  Kate Stewart did a file by file comparison of the scanner
      results in the spreadsheet to determine which SPDX license identifier(s)
      to be applied to the file. She confirmed any determination that was not
      immediately clear with lawyers working with the Linux Foundation.
      
      Criteria used to select files for SPDX license identifier tagging was:
       - Files considered eligible had to be source code files.
       - Make and config files were included as candidates if they contained >5
         lines of source
       - File already had some variant of a license header in it (even if <5
         lines).
      
      All documentation files were explicitly excluded.
      
      The following heuristics were used to determine which SPDX license
      identifiers to apply.
      
       - when both scanners couldn't find any license traces, file was
         considered to have no license information in it, and the top level
         COPYING file license applied.
      
         For non */uapi/* files that summary was:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|-------
         GPL-2.0                                              11139
      
         and resulted in the first patch in this series.
      
         If that file was a */uapi/* path one, it was "GPL-2.0 WITH
         Linux-syscall-note" otherwise it was "GPL-2.0".  Results of that was:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|-------
         GPL-2.0 WITH Linux-syscall-note                        930
      
         and resulted in the second patch in this series.
      
       - if a file had some form of licensing information in it, and was one
         of the */uapi/* ones, it was denoted with the Linux-syscall-note if
         any GPL family license was found in the file or had no licensing in
         it (per prior point).  Results summary:
      
         SPDX license identifier                            # files
         ---------------------------------------------------|------
         GPL-2.0 WITH Linux-syscall-note                       270
         GPL-2.0+ WITH Linux-syscall-note                      169
         ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21
         ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17
         LGPL-2.1+ WITH Linux-syscall-note                      15
         GPL-1.0+ WITH Linux-syscall-note                       14
         ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5
         LGPL-2.0+ WITH Linux-syscall-note                       4
         LGPL-2.1 WITH Linux-syscall-note                        3
         ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3
         ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1
      
         and that resulted in the third patch in this series.
      
       - when the two scanners agreed on the detected license(s), that became
         the concluded license(s).
      
       - when there was disagreement between the two scanners (one detected a
         license but the other didn't, or they both detected different
         licenses) a manual inspection of the file occurred.
      
       - In most cases a manual inspection of the information in the file
         resulted in a clear resolution of the license that should apply (and
         which scanner probably needed to revisit its heuristics).
      
       - When it was not immediately clear, the license identifier was
         confirmed with lawyers working with the Linux Foundation.
      
       - If there was any question as to the appropriate license identifier,
         the file was flagged for further research and to be revisited later
         in time.
      
      In total, over 70 hours of logged manual review was done on the
      spreadsheet to determine the SPDX license identifiers to apply to the
      source files by Kate, Philippe, Thomas and, in some cases, confirmation
      by lawyers working with the Linux Foundation.
      
      Kate also obtained a third independent scan of the 4.13 code base from
      FOSSology, and compared selected files where the other two scanners
      disagreed against that SPDX file, to see if there was new insights.  The
      Windriver scanner is based on an older version of FOSSology in part, so
      they are related.
      
      Thomas did random spot checks in about 500 files from the spreadsheets
      for the uapi headers and agreed with SPDX license identifier in the
      files he inspected. For the non-uapi files Thomas did random spot checks
      in about 15000 files.
      
      In initial set of patches against 4.14-rc6, 3 files were found to have
      copy/paste license identifier errors, and have been fixed to reflect the
      correct identifier.
      
      Additionally Philippe spent 10 hours this week doing a detailed manual
      inspection and review of the 12,461 patched files from the initial patch
      version early this week with:
       - a full scancode scan run, collecting the matched texts, detected
         license ids and scores
       - reviewing anything where there was a license detected (about 500+
         files) to ensure that the applied SPDX license was correct
       - reviewing anything where there was no detection but the patch license
         was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
         SPDX license was correct
      
      This produced a worksheet with 20 files needing minor correction.  This
      worksheet was then exported into 3 different .csv files for the
      different types of files to be modified.
      
      These .csv files were then reviewed by Greg.  Thomas wrote a script to
      parse the csv files and add the proper SPDX tag to the file, in the
      format that the file expected.  This script was further refined by Greg
      based on the output to detect more types of files automatically and to
      distinguish between header and source .c files (which need different
      comment types.)  Finally Greg ran the script using the .csv files to
      generate the patches.
      Reviewed-by: NKate Stewart <kstewart@linuxfoundation.org>
      Reviewed-by: NPhilippe Ombredanne <pombredanne@nexb.com>
      Reviewed-by: NThomas Gleixner <tglx@linutronix.de>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      b2441318
  4. 21 4月, 2017 1 次提交
  5. 02 3月, 2012 1 次提交
  6. 24 8月, 2011 1 次提交
  7. 06 1月, 2011 2 次提交
  8. 16 11月, 2010 1 次提交
  9. 06 9月, 2010 5 次提交
    • B
      staging: udlfb: fix incorrect fb_defio implementation for multiple framebuffers · 5bea1fbf
      Bernie Thompson 提交于
      Fix fb_defio bug in udlfb for multiple framebuffers
      
      Previously when using fb_defio with multiple DisplayLink attached displays
      udlfb incorrectly used a shared datastructure where it needed to have
      one per fb_info struct. This was completely broken and caused all kinds of
      problems, including rendering to one framebuffer affecting others.
      Signed-off-by: NBernie Thompson <bernie@plugable.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      5bea1fbf
    • B
      staging: udlfb: add module options for console and fb_defio · d5ed5432
      Bernie Thompson 提交于
      Add module options for console and fb_defio
      
      Convert fb_defio on/off switch to module option and add console option.
      
      >From the command line, pass options to modprobe
      modprobe udlfb defio=1 console=1
      
      Or for permanent option, create file like /etc/modprobe.d/options with text
      options udlfb defio=1 console=1
      
      Accepted options:
      
      fb_defio	Make use of the fb_defio (CONFIG_FB_DEFERRED_IO) kernel
      		module to track changed areas of the framebuffer by page faults.
              	Standard fbdev applications that use mmap but that do not
      		report damage, may be able to work with this enabled.
      		Disabled by default because of overhead and other issues.
      
      console		Allow fbcon to attach to udlfb provided framebuffers. This
      		is disabled by default because fbcon will aggressively consume
      		the first framebuffer it finds, which isn't usually what the
      		user wants in the case of USB displays.
      Signed-off-by: NBernie Thompson <bernie@plugable.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      d5ed5432
    • B
      staging: udlfb: enhance EDID and mode handling support · 18dffdf8
      Bernie Thompson 提交于
      Enhance EDID and mode table handling
      
      * Adds support for lower-end DL chips on higher-end monitors
      * Adds support for using fbdev standard EDID parsing and handling
      * Adds support for more dynamic reallocation of framebuffer, based on new EDID
      
      Queries EDID from hardware with several retries then
      queries DisplayLink chip for max pixel area via vendor descriptor.
      Uses existing fbdev mode handling service funcations to build mode list
      of common modes between adapter and monitor.
      This enables lower-end chips (e.g. DL-125) to successfully pick a compatible
      mode on higher end monitors (e.g. whose default mode is over 1280x1024).
      Reallocate framebuffer if necessary in response to new max mode.
      Signed-off-by: NBernie Thompson <bernie@plugable.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      18dffdf8
    • B
      staging: udlfb: revamp reference handling to insure successful shutdown · 33077b8d
      Bernie Thompson 提交于
      Revamp reference handling and synchronization for unload/shutdown
      
      Udlfb is a "virtual" framebuffer device that really exists on
      two separate stacks: at the bottom of the framebuffer interface,
      and on top of USB.  During unload, there's no guarantee which
      one will tear down first. So reference counting must be solid
      to handle all possibilities and not access anything once its gone.
      Signed-off-by: NBernie Thompson <bernie@plugable.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      33077b8d
    • B
      staging: udlfb: remove metrics_misc sysfs attribute · f11f4bc0
      Bernie Thompson 提交于
      Remove metrics_misc sysfs attribute
      
      Previously returned multiple values, which goes against sysfs guidelines.
      Had been used for debugging to figure out which of the multiple
      fbdev interfaces an app was using, but log file messages are sufficient.
      Signed-off-by: NBernie Thompson <bernie@plugable.com>
      Signed-off-by: NGreg Kroah-Hartman <gregkh@suse.de>
      f11f4bc0
  10. 04 3月, 2010 7 次提交
  11. 16 9月, 2009 1 次提交
  12. 20 6月, 2009 4 次提交