Merge tag 'trace-v6.8-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
authorLinus Torvalds <torvalds@linux-foundation.org>
Tue, 30 Jan 2024 02:42:34 +0000 (18:42 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Tue, 30 Jan 2024 02:42:34 +0000 (18:42 -0800)
commit9b7bd05bebfcd3d369272d41ef32a379708ec933
tree5b23475751bc5498f27eb238d653d33aebe8fb42
parent6f3d7d5cedbad7a859bb34161a2807c58e6cdda8
parent29142dc92c37d3259a33aef15b03e6ee25b0d188
Merge tag 'trace-v6.8-rc1-2' of git://git./linux/kernel/git/trace/linux-trace

Pull tracing fixes from Steven Rostedt:
 "Two small fixes for tracefs and eventfs:

   - Fix register_snapshot_trigger() on allocation error

     If the snapshot fails to allocate, the register_snapshot_trigger()
     can still return success. If the call to
     tracing_alloc_snapshot_instance() returned anything but 0, it
     returned 0, but it should have been returning the error code from
     that allocation function.

   - Remove leftover code from tracefs doing a dentry walk on remount.

     The update_gid() function was called by the tracefs code on remount
     to update the gid of eventfs, but that is no longer the case, but
     that code wasn't deleted. Nothing calls it. Remove it"

* tag 'trace-v6.8-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
  tracefs: remove stale 'update_gid' code
  tracing/trigger: Fix to return error if failed to alloc snapshot