]> git.openfabrics.org - ~shefty/libibverbs.git/commitdiff
Change .nl macro in man pages to .sp
authorRoland Dreier <rolandd@cisco.com>
Fri, 18 Apr 2008 23:12:14 +0000 (16:12 -0700)
committerRoland Dreier <rolandd@cisco.com>
Fri, 18 Apr 2008 23:12:14 +0000 (16:12 -0700)
There actually is no ".nl" macro defined in troff, so convert all uses
of it to ".sp", which seems to be what was intended.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
15 files changed:
man/ibv_alloc_pd.3
man/ibv_attach_mcast.3
man/ibv_create_ah.3
man/ibv_create_ah_from_wc.3
man/ibv_create_comp_channel.3
man/ibv_create_cq.3
man/ibv_create_qp.3
man/ibv_create_srq.3
man/ibv_event_type_str.3
man/ibv_get_async_event.3
man/ibv_get_cq_event.3
man/ibv_get_device_list.3
man/ibv_open_device.3
man/ibv_rate_to_mult.3
man/ibv_reg_mr.3

index 28b7953812f620ef907e7f71e74bab5d628cfefb..c3afd1aa7ee220c7d0aa6ed6bd77b483bb93f7bc 100644 (file)
@@ -8,7 +8,7 @@ ibv_alloc_pd, ibv_dealloc_pd \- allocate or deallocate a protection domain (PDs)
 .B #include <infiniband/verbs.h>
 .sp
 .BI "struct ibv_pd *ibv_alloc_pd(struct ibv_context " "*context" );
-.nl
+.sp
 .BI "int ibv_dealloc_pd(struct ibv_pd " "*pd" );
 .fi
 .SH "DESCRIPTION"
index cb6ddf25fd04c6354999cf5e1bfab5ddbe45c46d..24bcaac4462bd621a59339cc508c7dde747d0271 100644 (file)
@@ -10,7 +10,7 @@ ibv_attach_mcast, ibv_detach_mcast \- attach and detach a queue pair
 .sp
 .BI "int ibv_attach_mcast(struct ibv_qp " "*qp" ", union ibv_gid " "*gid" ",
 .BI "                     uint16_t " "lid" ");
-.nl
+.sp
 .BI "int ibv_detach_mcast(struct ibv_qp " "*qp" ", union ibv_gid " "*gid" ",
 .BI "                     uint16_t " "lid" ");
 .fi
index 85e4a712c03dcf094729d5fac1843bc37e6f71be..0260f0f53de0d87cecc34d7ad31ad7f166be778e 100644 (file)
@@ -9,7 +9,7 @@ ibv_create_ah, ibv_destroy_ah \- create or destroy an address handle (AH)
 .sp
 .BI "struct ibv_ah *ibv_create_ah(struct ibv_pd " "*pd" ",
 .BI "                             struct ibv_ah_attr " "*attr" ");
-.nl
+.sp
 .BI "int ibv_destroy_ah(struct ibv_ah " "*ah" ");
 .fi
 .SH "DESCRIPTION"
index bc5d135208e5b79888a0a7c5830341b63114d475..eb20dd3e71395344e415875d7c20f01014fc0b11 100644 (file)
@@ -11,7 +11,7 @@ address handle (AH) from a work completion
 .BI "int ibv_init_ah_from_wc(struct ibv_context " "*context" ", uint8_t " "port_num" ,
 .BI "                        struct ibv_wc " "*wc" ", struct ibv_grh " "*grh" ,
 .BI "                        struct ibv_ah_attr " "*ah_attr" );
-.nl
+.sp
 .BI "struct ibv_ah *ibv_create_ah_from_wc(struct ibv_pd " "*pd" ,
 .BI "                                     struct ibv_wc " "*wc" ,
 .BI "                                     struct ibv_grh " "*grh" ,
index d8e17f1dc71f8c60cbde7b0c16119aea297755b0..285ee04571ee97191062ab119ce629bf161b639c 100644 (file)
@@ -10,7 +10,7 @@ destroy a completion event channel
 .sp
 .BI "struct ibv_comp_channel *ibv_create_comp_channel(struct ibv_context
 .BI "                                                 " "*context" );
-.nl
+.sp
 .BI "int ibv_destroy_comp_channel(struct ibv_comp_channel " "*channel" );
 .fi
 .SH "DESCRIPTION"
index 211feea9b5c5c79313e1db162a6f52e49c865c38..cfa5f3e1af8d52608c8115b7c13d8232e721a198 100644 (file)
@@ -11,7 +11,7 @@ ibv_create_cq, ibv_destroy_cq \- create or destroy a completion queue (CQ)
 .BI "                             void " "*cq_context" ,
 .BI "                             struct ibv_comp_channel " "*channel" ,
 .BI "                             int " "comp_vector" );
-.nl
+.sp
 .BI "int ibv_destroy_cq(struct ibv_cq " "*cq" );
 .fi
 .SH "DESCRIPTION"
index abd544961e168becba1ad62d044f874645bf0c19..28b3a09b62b187e2260b188078e1de55fbbbc7c0 100644 (file)
@@ -9,7 +9,7 @@ ibv_create_qp, ibv_destroy_qp \- create or destroy a queue pair (QP)
 .sp
 .BI "struct ibv_qp *ibv_create_qp(struct ibv_pd " "*pd" ,
 .BI "                             struct ibv_qp_init_attr " "*qp_init_attr" );
-.nl
+.sp
 .BI "int ibv_destroy_qp(struct ibv_qp " "*qp" );
 .fi
 .SH "DESCRIPTION"
index ff3373670a2f79d166dc94285d3382b5bb6c965b..f0963e8ecfb1a9ea1d1409bf49609ecff44a2a30 100644 (file)
@@ -9,7 +9,7 @@ ibv_create_srq, ibv_destroy_srq \- create or destroy a shared receive queue (SRQ
 .sp
 .BI "struct ibv_srq *ibv_create_srq(struct ibv_pd " "*pd" ", struct "
 .BI "                               ibv_srq_init_attr " "*srq_init_attr" );
-.nl
+.sp
 .BI "int ibv_destroy_srq(struct ibv_srq " "*srq" );
 .fi
 .SH "DESCRIPTION"
index 0df8fcd844219a067374e4d242bc054a2a8d7829..f9ebc35bbaccd9417a3f577f584fbea5b22d1c4a 100644 (file)
@@ -4,18 +4,18 @@
 .SH "NAME"
 .nf
 ibv_event_type_str \- Return string describing event_type enum value
-.nl
+.sp
 ibv_node_type_str \- Return string describing node_type enum value
-.nl
+.sp
 ibv_port_state_str \- Return string describing port_state enum value
 .SH "SYNOPSIS"
 .nf
 .B #include <infiniband/verbs.h>
 .sp
 .BI "const char *ibv_event_type_str(enum ibv_event_type " "event_type");
-.nl
+.sp
 .BI "const char *ibv_node_type_str(enum ibv_node_type " "node_type");
-.nl
+.sp
 .BI "const char *ibv_port_state_str(enum ibv_port_state " "port_state");
 .fi
 .SH "DESCRIPTION"
index 076f757d34aaa154fb5dd96a14928f872957b901..7426f4da07296e281fe7e3d492ba0617871200f2 100644 (file)
@@ -9,7 +9,7 @@ ibv_get_async_event, ibv_ack_async_event \- get or acknowledge asynchronous even
 .sp
 .BI "int ibv_get_async_event(struct ibv_context " "*context" ,
 .BI "                        struct ibv_async_event " "*event" );
-.nl
+.sp
 .BI "void ibv_ack_async_event(struct ibv_async_event " "*event" );
 .fi
 .SH "DESCRIPTION"
index 27dca6f15beb701407c68e018feb4ab0fb474abe..58c744a87d0ee39708c0468ff788010fcfabb0f4 100644 (file)
@@ -10,7 +10,7 @@ ibv_get_cq_event, ibv_ack_cq_events \- get and acknowledge completion queue (CQ)
 .sp
 .BI "int ibv_get_cq_event(struct ibv_comp_channel " "*channel" ,
 .BI "                     struct ibv_cq " "**cq" ", void " "**cq_context" );
-.nl
+.sp
 .BI "void ibv_ack_cq_events(struct ibv_cq " "*cq" ", unsigned int " "nevents" );
 .fi
 
index 104c13755ee5a5ec8006c2a36c1471a0f1d9c50d..c881c2897be566e196f54b6c5a615d571425fbf6 100644 (file)
@@ -8,7 +8,7 @@ ibv_get_device_list, ibv_free_device_list \- get and release list of available R
 .B #include <infiniband/verbs.h>
 .sp
 .BI "struct ibv_device **ibv_get_device_list(int " "*num_devices" );
-.nl
+.sp
 .BI "void ibv_free_device_list(struct ibv_device " "**list" );
 .fi
 .SH "DESCRIPTION"
index 61fa82b5f140e78d54dc75715c305eb65ebe4eb2..d5149a54875bb7d529159ee03c39fe98aeda604d 100644 (file)
@@ -8,7 +8,7 @@ ibv_open_device, ibv_close_device \- open and close an RDMA device context
 .B #include <infiniband/verbs.h>
 .sp
 .BI "struct ibv_context *ibv_open_device(struct ibv_device " "*device" ");
-.nl
+.sp
 .BI "int ibv_close_device(struct ibv_context " "*context" ");
 .fi
 .SH "DESCRIPTION"
index 28dff7679ee51a5a9b9f600cedf210556104942d..1346d754cf4d6616045f1098e99ede50b32d5ee2 100644 (file)
@@ -4,14 +4,14 @@
 .SH "NAME"
 .nf
 ibv_rate_to_mult \- convert IB rate enumeration to multiplier of 2.5 Gbit/sec
-.nl
+.sp
 mult_to_ibv_rate \- convert multiplier of 2.5 Gbit/sec to an IB rate enumeration
 .SH "SYNOPSIS"
 .nf
 .B #include <infiniband/verbs.h>
 .sp
 .BI "int ibv_rate_to_mult(enum ibv_rate " "rate" ");
-.nl
+.sp
 .BI "enum ibv_rate mult_to_ibv_rate(int " "mult" ");
 .fi
 .SH "DESCRIPTION"
index bd2387b86907f97b0ab70400d80131c3b4eeeb58..cb0d8b810b05ba0a736205ec7fd2da673a68abf7 100644 (file)
@@ -10,7 +10,7 @@ ibv_reg_mr, ibv_dereg_mr \- register or deregister a memory region (MR)
 .BI "struct ibv_mr *ibv_reg_mr(struct ibv_pd " "*pd" ", void " "*addr" ,
 .BI "                          size_t " "length" ,
 .BI "                          enum ibv_access_flags " "access" );
-.nl
+.sp
 .BI "int ibv_dereg_mr(struct ibv_mr " "*mr" );
 .fi
 .SH "DESCRIPTION"