summaryrefslogtreecommitdiff
path: root/include/linux/osq_lock.h
diff options
context:
space:
mode:
authorThomas Bertschinger <tahbertschinger@gmail.com>2024-01-15 23:41:02 -0700
committerKent Overstreet <kent.overstreet@linux.dev>2024-01-16 01:47:05 -0500
commitf5baaf48e3e82b1caf9f5cd1207d4d6feba3a2e5 (patch)
tree59f7b0e4667df7a9d3d5a45725f2aaab3e79b4c5 /include/linux/osq_lock.h
parentfb35dbfdc5a9446fbb856dae5542b23963e28b89 (diff)
move Rust sources to top level, C sources into c_src
This moves the Rust sources out of rust_src/ and into the top level. Running the bcachefs executable out of the development tree is now: $ ./target/release/bcachefs command or $ cargo run --profile release -- command instead of "./bcachefs command". Building and installing is still: $ make && make install Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'include/linux/osq_lock.h')
-rw-r--r--include/linux/osq_lock.h44
1 files changed, 0 insertions, 44 deletions
diff --git a/include/linux/osq_lock.h b/include/linux/osq_lock.h
deleted file mode 100644
index bde9f0d2..00000000
--- a/include/linux/osq_lock.h
+++ /dev/null
@@ -1,44 +0,0 @@
-#ifndef __LINUX_OSQ_LOCK_H
-#define __LINUX_OSQ_LOCK_H
-
-/*
- * An MCS like lock especially tailored for optimistic spinning for sleeping
- * lock implementations (mutex, rwsem, etc).
- */
-struct optimistic_spin_node {
- struct optimistic_spin_node *next, *prev;
- int locked; /* 1 if lock acquired */
- int cpu; /* encoded CPU # + 1 value */
-};
-
-struct optimistic_spin_queue {
- /*
- * Stores an encoded value of the CPU # of the tail node in the queue.
- * If the queue is empty, then it's set to OSQ_UNLOCKED_VAL.
- */
- atomic_t tail;
-};
-
-#define OSQ_UNLOCKED_VAL (0)
-
-/* Init macro and function. */
-#define OSQ_LOCK_UNLOCKED { ATOMIC_INIT(OSQ_UNLOCKED_VAL) }
-
-static inline void osq_lock_init(struct optimistic_spin_queue *lock)
-{
- atomic_set(&lock->tail, OSQ_UNLOCKED_VAL);
-}
-
-static inline bool osq_lock(struct optimistic_spin_queue *lock)
-{
- return false;
-}
-
-static inline void osq_unlock(struct optimistic_spin_queue *lock) {}
-
-static inline bool osq_is_locked(struct optimistic_spin_queue *lock)
-{
- return atomic_read(&lock->tail) != OSQ_UNLOCKED_VAL;
-}
-
-#endif