aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index fc4dc28c5735..e4de2b543a73 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2323,19 +2323,7 @@ ssize_t simple_transaction_read(struct file *file, char __user *buf,
2323 size_t size, loff_t *pos); 2323 size_t size, loff_t *pos);
2324int simple_transaction_release(struct inode *inode, struct file *file); 2324int simple_transaction_release(struct inode *inode, struct file *file);
2325 2325
2326static inline void simple_transaction_set(struct file *file, size_t n) 2326void simple_transaction_set(struct file *file, size_t n);
2327{
2328 struct simple_transaction_argresp *ar = file->private_data;
2329
2330 BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
2331
2332 /*
2333 * The barrier ensures that ar->size will really remain zero until
2334 * ar->data is ready for reading.
2335 */
2336 smp_mb();
2337 ar->size = n;
2338}
2339 2327
2340/* 2328/*
2341 * simple attribute files 2329 * simple attribute files