nbd.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * 1999 Copyright (C) Pavel Machek, pavel@ucw.cz. This code is GPL.
  3.  * 1999/11/04 Copyright (C) 1999 VMware, Inc. (Regis "HPReg" Duchesne)
  4.  *            Made nbd_end_request() use the io_request_lock
  5.  * 2001 Copyright (C) Steven Whitehouse
  6.  *            New nbd_end_request() for compatibility with new linux block
  7.  *            layer code.
  8.  */
  9. #ifndef LINUX_NBD_H
  10. #define LINUX_NBD_H
  11. #define NBD_SET_SOCK _IO( 0xab, 0 )
  12. #define NBD_SET_BLKSIZE _IO( 0xab, 1 )
  13. #define NBD_SET_SIZE _IO( 0xab, 2 )
  14. #define NBD_DO_IT _IO( 0xab, 3 )
  15. #define NBD_CLEAR_SOCK _IO( 0xab, 4 )
  16. #define NBD_CLEAR_QUE _IO( 0xab, 5 )
  17. #define NBD_PRINT_DEBUG _IO( 0xab, 6 )
  18. #define NBD_SET_SIZE_BLOCKS _IO( 0xab, 7 )
  19. #define NBD_DISCONNECT  _IO( 0xab, 8 )
  20. #ifdef MAJOR_NR
  21. #include <linux/locks.h>
  22. #include <asm/semaphore.h>
  23. #define LOCAL_END_REQUEST
  24. #include <linux/blk.h>
  25. #ifdef PARANOIA
  26. extern int requests_in;
  27. extern int requests_out;
  28. #endif
  29. static void
  30. nbd_end_request(struct request *req)
  31. {
  32. struct buffer_head *bh;
  33. unsigned nsect;
  34. unsigned long flags;
  35. int uptodate = (req->errors == 0) ? 1 : 0;
  36. #ifdef PARANOIA
  37. requests_out++;
  38. #endif
  39. spin_lock_irqsave(&io_request_lock, flags);
  40. while((bh = req->bh) != NULL) {
  41. nsect = bh->b_size >> 9;
  42. blk_finished_io(nsect);
  43. req->bh = bh->b_reqnext;
  44. bh->b_reqnext = NULL;
  45. bh->b_end_io(bh, uptodate);
  46. }
  47. blkdev_release_request(req);
  48. spin_unlock_irqrestore(&io_request_lock, flags);
  49. }
  50. #define MAX_NBD 128
  51. struct nbd_device {
  52. int refcnt;
  53. int flags;
  54. int harderror; /* Code of hard error */
  55. #define NBD_READ_ONLY 0x0001
  56. #define NBD_WRITE_NOCHK 0x0002
  57. struct socket * sock;
  58. struct file * file;  /* If == NULL, device is not ready, yet */
  59. int magic; /* FIXME: not if debugging is off */
  60. struct list_head queue_head; /* Requests are added here... */
  61. struct semaphore queue_lock;
  62. };
  63. #endif
  64. /* This now IS in some kind of include file... */
  65. /* These are send over network in request/reply magic field */
  66. #define NBD_REQUEST_MAGIC 0x25609513
  67. #define NBD_REPLY_MAGIC 0x67446698
  68. /* Do *not* use magics: 0x12560953 0x96744668. */
  69. /*
  70.  * This is packet used for communication between client and
  71.  * server. All data are in network byte order.
  72.  */
  73. struct nbd_request {
  74. u32 magic;
  75. u32 type; /* == READ || == WRITE  */
  76. char handle[8];
  77. u64 from;
  78. u32 len;
  79. }
  80. #ifdef __GNUC__
  81. __attribute__ ((packed))
  82. #endif
  83. ;
  84. struct nbd_reply {
  85. u32 magic;
  86. u32 error; /* 0 = ok, else error */
  87. char handle[8]; /* handle you got from request */
  88. };
  89. #endif