1. 15 Sep, 2010 10 commits
  2. 14 Sep, 2010 4 commits
    • Steven Rostedt's avatar
      tracing: Fix reading of set_ftrace_filter across lists · 57c072c7
      Steven Rostedt authored
      If we do:
      
       # cd /sys/kernel/debug
       # echo 'do_IRQ:traceon schedule:traceon sys_write:traceon' > \
          set_ftrace_filter
       # cat set_ftrace_filter
      
      We get the following output:
      
       #### all functions enabled ####
       sys_write:traceon:unlimited
       schedule:traceon:unlimited
       do_IRQ:traceon:unlimited
      
      This outputs two lists. One is the fact that all functions are
      currently enabled for function tracing, the other has three probed
      functions, which happen to have 'traceon' as their commands.
      
      Currently, when reading the first list (functions enabled) the
      seq_file code will receive a "NULL" from the t_next() function
      causing it to exit early. This makes "read()" from userspace stop
      reading the code at this boarder. Although read is allowed to do this,
      some (broken) applications might consider this an end of file and
      stop early.
      
      This patch adds the start of the second list to t_next() when it
      finishes the first list. It is a simple change and gives the
      set_ftrace_filter file nicer reading ability.
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      57c072c7
    • Steven Rostedt's avatar
      tracing: Keep track of set_ftrace_filter position and allow lseek again · 98c4fd04
      Steven Rostedt authored
      This patch keeps track of the index within the elements of
      set_ftrace_filter and if the position goes backwards, it nicely
      resets and starts from the beginning again.
      
      This allows for lseek and pread to work properly now.
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      98c4fd04
    • Steven Rostedt's avatar
      tracing: Replace typecasted void pointer in set_ftrace_filter code · 4aeb6967
      Steven Rostedt authored
      The set_ftrace_filter uses seq_file and reads from two lists. The
      pointer returned by t_next() can either be of type struct dyn_ftrace
      or struct ftrace_func_probe. If there is a bug (there was one)
      the wrong pointer may be used and the reference can cause an oops.
      
      This patch makes t_next() and friends only return the iterator structure
      which now has a pointer of type struct dyn_ftrace and struct
      ftrace_func_probe. The t_show() can now test if the pointer is NULL or
      not and if the pointer exists, it is guaranteed to be of the correct type.
      
      Now if there's a bug, only wrong data will be shown but not an oops.
      
      Cc: Chris Wright <chrisw@sous-sol.org>
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      4aeb6967
    • Steven Rostedt's avatar
      tracing: Do not reset *pos in set_ftrace_filter · 2bccfffd
      Steven Rostedt authored
      After the filtered functions are read, the probed functions are read
      from the hash in set_ftrace_filter. When the hashed probed functions
      are read, the *pos passed in is reset. Instead of modifying the pos
      given to the read function, just record the pos where the filtered
      functions ended and subtract from that.
      Signed-off-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      2bccfffd
  3. 13 Sep, 2010 18 commits
  4. 12 Sep, 2010 1 commit
  5. 11 Sep, 2010 7 commits
    • Randy Dunlap's avatar
      docbook: skip files with no docs since they generate scary warnings · 39d70939
      Randy Dunlap authored
      Fix docbook templates that reference files that do not contain the
      expected kernel-doc notation.
      
      Fixes these warnings:
      
        Warning(arch/x86/include/asm/unaligned.h): no structured comments found
        Warning(lib/vsprintf.c): no structured comments found
      
      These cause errors in the generated html output, like below, so drop
      these lines.
      
        Name
        arch/x86/include/asm/unaligned.h - Document generation inconsistency
        Oops
        Warning
        The template for this document tried to insert the structured comment from the file arch/x86/include/asm/unaligned.h at this point, but none was found. This dummy section is inserted to allow generation to continue.
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      39d70939
    • Johannes Berg's avatar
      docbook: warn on unused doc entries · eda603f6
      Johannes Berg authored
      When you don't use !E or !I but only !F, then it's very easy to miss
      including some functions, structs etc.  in documentation.  To help
      finding which ones were missed, allow printing out the unused ones as
      warnings.
      
      For example, using this on mac80211 yields a lot of warnings like this:
      
        Warning: didn't use docs for DOC: mac80211 workqueue
        Warning: didn't use docs for ieee80211_max_queues
        Warning: didn't use docs for ieee80211_bss_change
        Warning: didn't use docs for ieee80211_bss_conf
      
      when generating the documentation for it.
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      eda603f6
    • Johannes Berg's avatar
      kernel-doc: ignore case when stripping attributes · 1f3a6688
      Johannes Berg authored
      There are valid attributes that could have upper case letters, but we
      still want to remove, like for example
      	__attribute__((aligned(NETDEV_ALIGN)))
      as encountered in the wireless code.
      Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
      Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      1f3a6688
    • Linus Torvalds's avatar
      Merge branch 'pm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6 · 84e1d836
      Linus Torvalds authored
      * 'pm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/suspend-2.6:
        PM / Hibernate: Avoid hitting OOM during preallocation of memory
        PM QoS: Correct pr_debug() misuse and improve parameter checks
        PM: Prevent waiting forever on asynchronous resume after failing suspend
      84e1d836
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6 · 20f4cad6
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6:
        [SCSI] fix use-after-free in scsi_init_io()
        [SCSI] sd: fix medium-removal bug
        [SCSI] qla2xxx: Update version number to 8.03.04-k0.
        [SCSI] qla2xxx: Check for empty slot in request queue before posting Command type 6 request.
        [SCSI] qla2xxx: Cover UNDERRUN case where SCSI status is set.
        [SCSI] qla2xxx: Correctly set fw hung and complete only waiting mbx.
        [SCSI] qla2xxx: Reset seconds_since_last_heartbeat correctly.
        [SCSI] qla2xxx: make rport deletions explicit during vport removal
        [SCSI] qla2xxx: Fix vport delete issues
        [SCSI] sd, sym53c8xx: Remove warnings after vsprintf %pV introducation.
        [SCSI] Fix warning: zero-length gnu_printf format string
        [SCSI] hpsa: disable doorbell reset on reset_devices
        [SCSI] be2iscsi: Fix for Login failure
        [SCSI] fix bio.bi_rw handling
      20f4cad6
    • Rafael J. Wysocki's avatar
      PM / Hibernate: Avoid hitting OOM during preallocation of memory · 6715045d
      Rafael J. Wysocki authored
      There is a problem in hibernate_preallocate_memory() that it calls
      preallocate_image_memory() with an argument that may be greater than
      the total number of available non-highmem memory pages.  If that's
      the case, the OOM condition is guaranteed to trigger, which in turn
      can cause significant slowdown to occur during hibernation.
      
      To avoid that, make preallocate_image_memory() adjust its argument
      before calling preallocate_image_pages(), so that the total number of
      saveable non-highem pages left is not less than the minimum size of
      a hibernation image.  Change hibernate_preallocate_memory() to try to
      allocate from highmem if the number of pages allocated by
      preallocate_image_memory() is too low.
      
      Modify free_unnecessary_pages() to take all possible memory
      allocation patterns into account.
      Reported-by: default avatarKOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
      Signed-off-by: default avatarRafael J. Wysocki <rjw@sisk.pl>
      Tested-by: default avatarM. Vefa Bicakci <bicave@superonline.com>
      6715045d
    • Linus Torvalds's avatar
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6 · 002e473d
      Linus Torvalds authored
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-2.6: (28 commits)
        ipheth: remove incorrect devtype to WWAN
        MAINTAINERS: Add CAIF
        sctp: fix test for end of loop
        KS8851: Correct RX packet allocation
        udp: add rehash on connect()
        net: blackhole route should always be recalculated
        ipv4: Suppress lockdep-RCU false positive in FIB trie (3)
        niu: Fix kernel buffer overflow for ETHTOOL_GRXCLSRLALL
        ipvs: fix active FTP
        gro: Re-fix different skb headrooms
        via-velocity: Turn scatter-gather support back off.
        ipv4: Fix reverse path filtering with multipath routing.
        UNIX: Do not loop forever at unix_autobind().
        PATCH: b44 Handle RX FIFO overflow better (simplified)
        irda: off by one
        3c59x: Fix deadlock in vortex_error()
        netfilter: discard overlapping IPv6 fragment
        ipv6: discard overlapping fragment
        net: fix tx queue selection for bridged devices implementing select_queue
        bonding: Fix jiffies overflow problems (again)
        ...
      
      Fix up trivial conflicts due to the same cgroup API thinko fix going
      through both Andrew and the networking tree.  However, there were small
      differences between the two, with Andrew's version generally being the
      nicer one, and the one I merged first. So pick that one.
      
      Conflicts in: include/linux/cgroup.h and kernel/cgroup.c
      002e473d