aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/sonypi.c
diff options
context:
space:
mode:
authorStefani Seibold <stefani@seibold.net>2009-12-21 17:37:26 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2009-12-22 17:17:55 -0500
commit45465487897a1c6d508b14b904dc5777f7ec7e04 (patch)
tree935c8dae68dc793ff2f795d57cf027531475cd53 /drivers/char/sonypi.c
parent2ec91eec47f713e3d158ba5b28a24a85a2cf3650 (diff)
kfifo: move struct kfifo in place
This is a new generic kernel FIFO implementation. The current kernel fifo API is not very widely used, because it has to many constrains. Only 17 files in the current 2.6.31-rc5 used it. FIFO's are like list's a very basic thing and a kfifo API which handles the most use case would save a lot of development time and memory resources. I think this are the reasons why kfifo is not in use: - The API is to simple, important functions are missing - A fifo can be only allocated dynamically - There is a requirement of a spinlock whether you need it or not - There is no support for data records inside a fifo So I decided to extend the kfifo in a more generic way without blowing up the API to much. The new API has the following benefits: - Generic usage: For kernel internal use and/or device driver. - Provide an API for the most use case. - Slim API: The whole API provides 25 functions. - Linux style habit. - DECLARE_KFIFO, DEFINE_KFIFO and INIT_KFIFO Macros - Direct copy_to_user from the fifo and copy_from_user into the fifo. - The kfifo itself is an in place member of the using data structure, this save an indirection access and does not waste the kernel allocator. - Lockless access: if only one reader and one writer is active on the fifo, which is the common use case, no additional locking is necessary. - Remove spinlock - give the user the freedom of choice what kind of locking to use if one is required. - Ability to handle records. Three type of records are supported: - Variable length records between 0-255 bytes, with a record size field of 1 bytes. - Variable length records between 0-65535 bytes, with a record size field of 2 bytes. - Fixed size records, which no record size field. - Preserve memory resource. - Performance! - Easy to use! This patch: Since most users want to have the kfifo as part of another object, reorganize the code to allow including struct kfifo in another data structure. This requires changing the kfifo_alloc and kfifo_init prototypes so that we pass an existing kfifo pointer into them. This patch changes the implementation and all existing users. [akpm@linux-foundation.org: fix warning] Signed-off-by: Stefani Seibold <stefani@seibold.net> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Acked-by: Mauro Carvalho Chehab <mchehab@redhat.com> Acked-by: Andi Kleen <ak@linux.intel.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/char/sonypi.c')
-rw-r--r--drivers/char/sonypi.c40
1 files changed, 19 insertions, 21 deletions
diff --git a/drivers/char/sonypi.c b/drivers/char/sonypi.c
index 8c262aaf7c26..9e6efb1f029f 100644
--- a/drivers/char/sonypi.c
+++ b/drivers/char/sonypi.c
@@ -487,7 +487,7 @@ static struct sonypi_device {
487 int camera_power; 487 int camera_power;
488 int bluetooth_power; 488 int bluetooth_power;
489 struct mutex lock; 489 struct mutex lock;
490 struct kfifo *fifo; 490 struct kfifo fifo;
491 spinlock_t fifo_lock; 491 spinlock_t fifo_lock;
492 wait_queue_head_t fifo_proc_list; 492 wait_queue_head_t fifo_proc_list;
493 struct fasync_struct *fifo_async; 493 struct fasync_struct *fifo_async;
@@ -496,7 +496,7 @@ static struct sonypi_device {
496 struct input_dev *input_jog_dev; 496 struct input_dev *input_jog_dev;
497 struct input_dev *input_key_dev; 497 struct input_dev *input_key_dev;
498 struct work_struct input_work; 498 struct work_struct input_work;
499 struct kfifo *input_fifo; 499 struct kfifo input_fifo;
500 spinlock_t input_fifo_lock; 500 spinlock_t input_fifo_lock;
501} sonypi_device; 501} sonypi_device;
502 502
@@ -777,7 +777,7 @@ static void input_keyrelease(struct work_struct *work)
777{ 777{
778 struct sonypi_keypress kp; 778 struct sonypi_keypress kp;
779 779
780 while (kfifo_get(sonypi_device.input_fifo, (unsigned char *)&kp, 780 while (kfifo_get(&sonypi_device.input_fifo, (unsigned char *)&kp,
781 sizeof(kp)) == sizeof(kp)) { 781 sizeof(kp)) == sizeof(kp)) {
782 msleep(10); 782 msleep(10);
783 input_report_key(kp.dev, kp.key, 0); 783 input_report_key(kp.dev, kp.key, 0);
@@ -827,7 +827,7 @@ static void sonypi_report_input_event(u8 event)
827 if (kp.dev) { 827 if (kp.dev) {
828 input_report_key(kp.dev, kp.key, 1); 828 input_report_key(kp.dev, kp.key, 1);
829 input_sync(kp.dev); 829 input_sync(kp.dev);
830 kfifo_put(sonypi_device.input_fifo, 830 kfifo_put(&sonypi_device.input_fifo,
831 (unsigned char *)&kp, sizeof(kp)); 831 (unsigned char *)&kp, sizeof(kp));
832 schedule_work(&sonypi_device.input_work); 832 schedule_work(&sonypi_device.input_work);
833 } 833 }
@@ -880,7 +880,7 @@ found:
880 acpi_bus_generate_proc_event(sonypi_acpi_device, 1, event); 880 acpi_bus_generate_proc_event(sonypi_acpi_device, 1, event);
881#endif 881#endif
882 882
883 kfifo_put(sonypi_device.fifo, (unsigned char *)&event, sizeof(event)); 883 kfifo_put(&sonypi_device.fifo, (unsigned char *)&event, sizeof(event));
884 kill_fasync(&sonypi_device.fifo_async, SIGIO, POLL_IN); 884 kill_fasync(&sonypi_device.fifo_async, SIGIO, POLL_IN);
885 wake_up_interruptible(&sonypi_device.fifo_proc_list); 885 wake_up_interruptible(&sonypi_device.fifo_proc_list);
886 886
@@ -906,7 +906,7 @@ static int sonypi_misc_open(struct inode *inode, struct file *file)
906 mutex_lock(&sonypi_device.lock); 906 mutex_lock(&sonypi_device.lock);
907 /* Flush input queue on first open */ 907 /* Flush input queue on first open */
908 if (!sonypi_device.open_count) 908 if (!sonypi_device.open_count)
909 kfifo_reset(sonypi_device.fifo); 909 kfifo_reset(&sonypi_device.fifo);
910 sonypi_device.open_count++; 910 sonypi_device.open_count++;
911 mutex_unlock(&sonypi_device.lock); 911 mutex_unlock(&sonypi_device.lock);
912 unlock_kernel(); 912 unlock_kernel();
@@ -919,17 +919,17 @@ static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
919 ssize_t ret; 919 ssize_t ret;
920 unsigned char c; 920 unsigned char c;
921 921
922 if ((kfifo_len(sonypi_device.fifo) == 0) && 922 if ((kfifo_len(&sonypi_device.fifo) == 0) &&
923 (file->f_flags & O_NONBLOCK)) 923 (file->f_flags & O_NONBLOCK))
924 return -EAGAIN; 924 return -EAGAIN;
925 925
926 ret = wait_event_interruptible(sonypi_device.fifo_proc_list, 926 ret = wait_event_interruptible(sonypi_device.fifo_proc_list,
927 kfifo_len(sonypi_device.fifo) != 0); 927 kfifo_len(&sonypi_device.fifo) != 0);
928 if (ret) 928 if (ret)
929 return ret; 929 return ret;
930 930
931 while (ret < count && 931 while (ret < count &&
932 (kfifo_get(sonypi_device.fifo, &c, sizeof(c)) == sizeof(c))) { 932 (kfifo_get(&sonypi_device.fifo, &c, sizeof(c)) == sizeof(c))) {
933 if (put_user(c, buf++)) 933 if (put_user(c, buf++))
934 return -EFAULT; 934 return -EFAULT;
935 ret++; 935 ret++;
@@ -946,7 +946,7 @@ static ssize_t sonypi_misc_read(struct file *file, char __user *buf,
946static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait) 946static unsigned int sonypi_misc_poll(struct file *file, poll_table *wait)
947{ 947{
948 poll_wait(file, &sonypi_device.fifo_proc_list, wait); 948 poll_wait(file, &sonypi_device.fifo_proc_list, wait);
949 if (kfifo_len(sonypi_device.fifo)) 949 if (kfifo_len(&sonypi_device.fifo))
950 return POLLIN | POLLRDNORM; 950 return POLLIN | POLLRDNORM;
951 return 0; 951 return 0;
952} 952}
@@ -1313,11 +1313,11 @@ static int __devinit sonypi_probe(struct platform_device *dev)
1313 "http://www.linux.it/~malattia/wiki/index.php/Sony_drivers\n"); 1313 "http://www.linux.it/~malattia/wiki/index.php/Sony_drivers\n");
1314 1314
1315 spin_lock_init(&sonypi_device.fifo_lock); 1315 spin_lock_init(&sonypi_device.fifo_lock);
1316 sonypi_device.fifo = kfifo_alloc(SONYPI_BUF_SIZE, GFP_KERNEL, 1316 error = kfifo_alloc(&sonypi_device.fifo, SONYPI_BUF_SIZE, GFP_KERNEL,
1317 &sonypi_device.fifo_lock); 1317 &sonypi_device.fifo_lock);
1318 if (IS_ERR(sonypi_device.fifo)) { 1318 if (error) {
1319 printk(KERN_ERR "sonypi: kfifo_alloc failed\n"); 1319 printk(KERN_ERR "sonypi: kfifo_alloc failed\n");
1320 return PTR_ERR(sonypi_device.fifo); 1320 return error;
1321 } 1321 }
1322 1322
1323 init_waitqueue_head(&sonypi_device.fifo_proc_list); 1323 init_waitqueue_head(&sonypi_device.fifo_proc_list);
@@ -1393,12 +1393,10 @@ static int __devinit sonypi_probe(struct platform_device *dev)
1393 } 1393 }
1394 1394
1395 spin_lock_init(&sonypi_device.input_fifo_lock); 1395 spin_lock_init(&sonypi_device.input_fifo_lock);
1396 sonypi_device.input_fifo = 1396 error = kfifo_alloc(&sonypi_device.input_fifo, SONYPI_BUF_SIZE,
1397 kfifo_alloc(SONYPI_BUF_SIZE, GFP_KERNEL, 1397 GFP_KERNEL, &sonypi_device.input_fifo_lock);
1398 &sonypi_device.input_fifo_lock); 1398 if (error) {
1399 if (IS_ERR(sonypi_device.input_fifo)) {
1400 printk(KERN_ERR "sonypi: kfifo_alloc failed\n"); 1399 printk(KERN_ERR "sonypi: kfifo_alloc failed\n");
1401 error = PTR_ERR(sonypi_device.input_fifo);
1402 goto err_inpdev_unregister; 1400 goto err_inpdev_unregister;
1403 } 1401 }
1404 1402
@@ -1423,7 +1421,7 @@ static int __devinit sonypi_probe(struct platform_device *dev)
1423 pci_disable_device(pcidev); 1421 pci_disable_device(pcidev);
1424 err_put_pcidev: 1422 err_put_pcidev:
1425 pci_dev_put(pcidev); 1423 pci_dev_put(pcidev);
1426 kfifo_free(sonypi_device.fifo); 1424 kfifo_free(&sonypi_device.fifo);
1427 1425
1428 return error; 1426 return error;
1429} 1427}
@@ -1438,7 +1436,7 @@ static int __devexit sonypi_remove(struct platform_device *dev)
1438 if (useinput) { 1436 if (useinput) {
1439 input_unregister_device(sonypi_device.input_key_dev); 1437 input_unregister_device(sonypi_device.input_key_dev);
1440 input_unregister_device(sonypi_device.input_jog_dev); 1438 input_unregister_device(sonypi_device.input_jog_dev);
1441 kfifo_free(sonypi_device.input_fifo); 1439 kfifo_free(&sonypi_device.input_fifo);
1442 } 1440 }
1443 1441
1444 misc_deregister(&sonypi_misc_device); 1442 misc_deregister(&sonypi_misc_device);
@@ -1451,7 +1449,7 @@ static int __devexit sonypi_remove(struct platform_device *dev)
1451 pci_dev_put(sonypi_device.dev); 1449 pci_dev_put(sonypi_device.dev);
1452 } 1450 }
1453 1451
1454 kfifo_free(sonypi_device.fifo); 1452 kfifo_free(&sonypi_device.fifo);
1455 1453
1456 return 0; 1454 return 0;
1457} 1455}