summaryrefslogtreecommitdiff
path: root/include/uapi/linux/virtio_scmi.h
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2025-07-21 16:37:14 -0500
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>2025-07-22 17:12:41 +0200
commitf9db1fc56281b96fe8748632b3894de970a8a850 (patch)
tree69400176c2f02c39ea82f6b9b27f8d42ad82d8a0 /include/uapi/linux/virtio_scmi.h
parent492086faa559e5b0bf776d2ade2497394d1ce151 (diff)
downloadkernel-f9db1fc56281b96fe8748632b3894de970a8a850.tar.gz
ACPI: Fix typos
Fix typos in documentation and comments. Signed-off-by: Bjorn Helgaas <bhelgaas@google.com> Link: https://patch.msgid.link/20250722132653.GA2781885@bhelgaas Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/uapi/linux/virtio_scmi.h')
0 files changed, 0 insertions, 0 deletions
o Fixes a cluster coherency bug during SH -> EX lock conversions o Removes the "glmutex" code in favour of a single bit lock o Removes the ->go_xmote_bh() for inodes since it was duplicating ->go_lock() o We now only use the ->lm_lock() function for both locks and unlocks (i.e. unlock is a lock with target mode LM_ST_UNLOCKED) o The fast path is considerably shortly, giving performance gains especially with lock_nolock o The glock_workqueue is now used for all the callbacks from the DLM which allows us to simplify the lock_dlm module (see following patch) o The way is now open to make further changes such as eliminating the two threads (gfs2_glockd and gfs2_scand) in favour of a more efficient scheme. This patch has undergone extensive testing with various test suites so it should be pretty stable by now. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com> Cc: Bob Peterson <rpeterso@redhat.com> 2008-04-10[GFS2] fix GFP_KERNEL misusesJosef Bacik There are several places where GFP_KERNEL allocations happen under a glock, which will result in hangs if we're under memory pressure and go to re-enter the fs in order to flush stuff out. This patch changes the culprits to GFS_NOFS to keep this problem from happening. Thank you, Signed-off-by: Josef Bacik <jbacik@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com> 2008-03-31[GFS2] Invalidate cache at correct pointBenjamin Marzinski GFS2 wasn't invalidating its cache before it called into the lock manager with a request that could potentially drop a lock. This was leaving a window where the lock could be actually be held by another node, but the file's page cache would still appear valid, causing coherency problems. This patch moves the cache invalidation to before the lock manager call when dropping a lock. It also adds the option to the lock_dlm lock manager to not use conversion mode deadlock avoidance, which, on a conversion from shared to exclusive, could internally drop the lock, and then reacquire in. GFS2 now asks lock_dlm to not do this. Instead, GFS2 manually drops the lock and reacquires it. Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>