1. 19 5月, 2010 2 次提交
  2. 07 4月, 2010 1 次提交
    • W
      device_attributes: add sysfs_attr_init() for dynamic attributes · 12765517
      Wolfram Sang 提交于
      Made necessary by 6992f533 ("sysfs: Use
      one lockdep class per sysfs attribute").
      
      Prevents further "key xxx not in .data" bug-reports.  Although some
      attributes could probably be converted to static ones, this is left for
      people having hardware to test.
      
      Found by this semantic patch:
      
      @ init @
      type T;
      identifier A;
      @@
      
              T {
                      ...
                      struct device_attribute A;
                      ...
              };
      
      @ main extends init @
      expression E;
      statement S;
      identifier err;
      T *name;
      @@
      
              ... when != sysfs_attr_init(&name->A.attr);
      (
      +       sysfs_attr_init(&name->A.attr);
              if (device_create_file(E, &name->A))
                      S
      |
      +       sysfs_attr_init(&name->A.attr);
              err = device_create_file(E, &name->A);
      )
      
      While reviewing, I put the initialization to apropriate places.
      Signed-off-by: NWolfram Sang <w.sang@pengutronix.de>
      Cc: Eric W. Biederman <ebiederm@xmission.com>
      Cc: Greg KH <gregkh@suse.de>
      Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
      Cc: Grant Likely <grant.likely@secretlab.ca>
      Cc: Mike Isely <isely@pobox.com>
      Cc: Mauro Carvalho Chehab <mchehab@infradead.org>
      Cc: Sujith Thomas <sujith.thomas@intel.com>
      Cc: Matthew Garrett <mjg@redhat.com>
      Cc: Len Brown <len.brown@intel.com>
      Cc: Krzysztof Helt <krzysztof.h1@wp.pl>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      12765517
  3. 30 3月, 2010 1 次提交
    • T
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking... · 5a0e3ad6
      Tejun Heo 提交于
      include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
      
      percpu.h is included by sched.h and module.h and thus ends up being
      included when building most .c files.  percpu.h includes slab.h which
      in turn includes gfp.h making everything defined by the two files
      universally available and complicating inclusion dependencies.
      
      percpu.h -> slab.h dependency is about to be removed.  Prepare for
      this change by updating users of gfp and slab facilities include those
      headers directly instead of assuming availability.  As this conversion
      needs to touch large number of source files, the following script is
      used as the basis of conversion.
      
        http://userweb.kernel.org/~tj/misc/slabh-sweep.py
      
      The script does the followings.
      
      * Scan files for gfp and slab usages and update includes such that
        only the necessary includes are there.  ie. if only gfp is used,
        gfp.h, if slab is used, slab.h.
      
      * When the script inserts a new include, it looks at the include
        blocks and try to put the new include such that its order conforms
        to its surrounding.  It's put in the include block which contains
        core kernel includes, in the same order that the rest are ordered -
        alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
        doesn't seem to be any matching order.
      
      * If the script can't find a place to put a new include (mostly
        because the file doesn't have fitting include block), it prints out
        an error message indicating which .h file needs to be added to the
        file.
      
      The conversion was done in the following steps.
      
      1. The initial automatic conversion of all .c files updated slightly
         over 4000 files, deleting around 700 includes and adding ~480 gfp.h
         and ~3000 slab.h inclusions.  The script emitted errors for ~400
         files.
      
      2. Each error was manually checked.  Some didn't need the inclusion,
         some needed manual addition while adding it to implementation .h or
         embedding .c file was more appropriate for others.  This step added
         inclusions to around 150 files.
      
      3. The script was run again and the output was compared to the edits
         from #2 to make sure no file was left behind.
      
      4. Several build tests were done and a couple of problems were fixed.
         e.g. lib/decompress_*.c used malloc/free() wrappers around slab
         APIs requiring slab.h to be added manually.
      
      5. The script was run on all .h files but without automatically
         editing them as sprinkling gfp.h and slab.h inclusions around .h
         files could easily lead to inclusion dependency hell.  Most gfp.h
         inclusion directives were ignored as stuff from gfp.h was usually
         wildly available and often used in preprocessor macros.  Each
         slab.h inclusion directive was examined and added manually as
         necessary.
      
      6. percpu.h was updated not to include slab.h.
      
      7. Build test were done on the following configurations and failures
         were fixed.  CONFIG_GCOV_KERNEL was turned off for all tests (as my
         distributed build env didn't work with gcov compiles) and a few
         more options had to be turned off depending on archs to make things
         build (like ipr on powerpc/64 which failed due to missing writeq).
      
         * x86 and x86_64 UP and SMP allmodconfig and a custom test config.
         * powerpc and powerpc64 SMP allmodconfig
         * sparc and sparc64 SMP allmodconfig
         * ia64 SMP allmodconfig
         * s390 SMP allmodconfig
         * alpha SMP allmodconfig
         * um on x86_64 SMP allmodconfig
      
      8. percpu.h modifications were reverted so that it could be applied as
         a separate patch and serve as bisection point.
      
      Given the fact that I had only a couple of failures from tests on step
      6, I'm fairly confident about the coverage of this conversion patch.
      If there is a breakage, it's likely to be something in one of the arch
      headers which should be easily discoverable easily on most builds of
      the specific arch.
      Signed-off-by: NTejun Heo <tj@kernel.org>
      Guess-its-ok-by: NChristoph Lameter <cl@linux-foundation.org>
      Cc: Ingo Molnar <mingo@redhat.com>
      Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
      5a0e3ad6
  4. 27 2月, 2010 4 次提交
  5. 16 12月, 2009 1 次提交
  6. 06 12月, 2009 13 次提交
  7. 04 12月, 2009 1 次提交
  8. 19 9月, 2009 2 次提交
  9. 12 9月, 2009 2 次提交
  10. 23 6月, 2009 5 次提交
    • M
      V4L/DVB (12122): pvrusb2: De-obfuscate code which handles routing schemes · 90135c96
      Mike Isely 提交于
      This change does not change any outward behavior; it merely chops down
      some large if-conditions with embedded assignments into something a
      little more maintainable for others (I of course never had a problem
      with this...).
      Signed-off-by: NMike Isely <isely@pobox.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      90135c96
    • M
      V4L/DVB (12121): pvrusb2: Improve handling of routing schemes · 81e804c9
      Mike Isely 提交于
      The pvrusb2 driver has a concept of "routing scheme" which defines
      which physical inputs should be connected based on application's
      choice of logical input.  The correct "routing scheme" depends on the
      specific device since different devices might wire up their muxes
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      81e804c9
    • M
      V4L/DVB (12120): pvrusb2: Change initial default frequency setting · 6f441ed7
      Mike Isely 提交于
      Change default frequency to be US Broadcast channel 3 - with the
      transition to d igital the previous value has now become useless.
      This change is PURELY to help with my testing (I need to set some kind
      of default so it might as well be some thing usable).
      Signed-off-by: NMike Isely <isely@pobox.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      6f441ed7
    • M
      V4L/DVB (12119): pvrusb2: Re-fix hardware scaling on video standard change · a6862da2
      Mike Isely 提交于
      The cx25840 module's VBI initialization logic uses the current video
      standard as part of its internal algorithm.  This therefore means that
      we probably need to make sure that the correct video standard has been
      set before initializing VBI.  (Normally we would not care about VBI,
      but as described in an earlier changeset, VBI must be initialized
      correctly on the cx25840 in order for the chip's hardware scaler to
      operate correctly.)
      
      It's kind of messy to force the video standard to be set before
      initializing VBI (mainly because we can't know what the app really
      wants that early in the initialization process).  So this patch does
      the next best thing: VBI is re-initialized after any point where the
      video standard has been set.
      Signed-off-by: NMike Isely <isely@pobox.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      a6862da2
    • M
      V4L/DVB (12118): pvrusb2: Fix hardware scaling when used with cx25840 · e17d787c
      Mike Isely 提交于
      The cx25840 module requires that its VBI initialization entry point be
      called in order for hardware-scaled video capture to work properly -
      even if we don't care about VBI.  Making this behavior even more
      subtle is that if the capture resolution is set to 720x480 - which is
      the default that the pvrusb2 driver sets up - then the cx25840
      bypasses the hardware scaler.  Therefore this problem does not
      manifest itself until some other resolution, e.g. 640x480, is tried.
      MythTV typically defaults to 640x480 or 480x480, which means that
      things break whenever the driver is used with MythTV.
      
      This all has been known for a while (since at least Nov 2006), but
      recent changes in the pvrusb2 driver (specifically in regards to
      sub-device support) caused this to break again.  VBI initialization
      must happen *after* the chip's firmware is loaded, not before.  With
      this fix, 24xxx devices work correctly again.
      
      A related fix that is part of this changeset is that now we
      re-initialize VBI any time after we issue a reset to the cx25840
      driver.  Issuing a chip reset erases the state that the VBI setup
      previously did.  Until the HVR-1950 came along this subtlety went
      unnoticed, because the pvrusb2 driver previously never issued such a
      reset.  But with the HVR-1950 we have to do that reset in order to
      correctly transition from digital back to analog mode - and since the
      HVR-1950 always starts in digital mode (required for the DVB side to
      initialize correctly) then this device has never had a chance to work
      correctly in analog mode!  Analog capture on the HVR-1950 has been
      broken this *ENTIRE* time.  I had missed it until now because I've
      usually been testing at the default 720x480 resolution which does not
      require scaling...  What fun.  By re-initializing VBI after a cx25840
      chip reset, correct behavior is restored.
      Signed-off-by: NMike Isely <isely@pobox.com>
      Signed-off-by: NMauro Carvalho Chehab <mchehab@redhat.com>
      e17d787c
  11. 17 6月, 2009 8 次提交