struct ib_udata *udata)
 
 {
-       int err;
        struct rxe_dev *rxe = to_rdev(ibah->device);
        struct rxe_ah *ah = to_rah(ibah);
+       struct rxe_create_ah_resp __user *uresp = NULL;
+       int err;
+
+       if (udata) {
+               /* test if new user provider */
+               if (udata->outlen >= sizeof(*uresp))
+                       uresp = udata->outbuf;
+               ah->is_user = true;
+       } else {
+               ah->is_user = false;
+       }
 
        err = rxe_av_chk_attr(rxe, init_attr->ah_attr);
        if (err)
        if (err)
                return err;
 
+       /* create index > 0 */
+       rxe_add_index(ah);
+       ah->ah_num = ah->pelem.index;
+
+       if (uresp) {
+               /* only if new user provider */
+               err = copy_to_user(&uresp->ah_num, &ah->ah_num,
+                                        sizeof(uresp->ah_num));
+               if (err) {
+                       rxe_drop_index(ah);
+                       rxe_drop_ref(ah);
+                       return -EFAULT;
+               }
+       } else if (ah->is_user) {
+               /* only if old user provider */
+               ah->ah_num = 0;
+       }
+
        rxe_init_av(init_attr->ah_attr, &ah->av);
        return 0;
 }
 {
        struct rxe_ah *ah = to_rah(ibah);
 
+       rxe_drop_index(ah);
        rxe_drop_ref(ah);
        return 0;
 }