]> xenbits.xensource.com Git - xen.git/commitdiff
oxenstored: remove some unused parameters
authorJonathan Davies <jonathan.davies@citrix.com>
Thu, 23 Mar 2017 17:40:08 +0000 (17:40 +0000)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Wed, 5 Apr 2017 14:26:37 +0000 (15:26 +0100)
Reported-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Jonathan Davies <jonathan.davies@citrix.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
Reviewed-by: Jon Ludlam <jonathan.ludlam@citrix.com>
Reviewed-by: Euan Harris <euan.harris@citrix.com>
Acked-by: David Scott <dave@recoil.org>
tools/ocaml/xenstored/process.ml

index 8be2ff182a3262f922abd0e9a35c89515815f989..70267274b279112d015e581e1633bc8f8d08d11d 100644 (file)
@@ -119,7 +119,7 @@ let do_getperms con t domains cons data =
        let perms = Transaction.getperms t (Connection.get_perm con) path in
        Perms.Node.to_string perms ^ "\000"
 
-let do_watch con t rid domains cons data =
+let do_watch con t domains cons data =
        let (node, token) = 
                match (split None '\000' data) with
                | [node; token; ""]   -> node, token
@@ -294,25 +294,25 @@ let send_response ty con t rid response =
        | Packet.Error e ->
                Connection.send_error con (Transaction.get_id t) rid e
 
-let reply_ack fct ty con t rid doms cons data =
+let reply_ack fct con t doms cons data =
        fct con t doms cons data;
        Packet.Ack (fun () ->
                if Transaction.get_id t = Transaction.none then
                        process_watch (Transaction.get_ops t) cons
        )
 
-let reply_data fct ty con t rid doms cons data =
+let reply_data fct con t doms cons data =
        let ret = fct con t doms cons data in
        Packet.Reply ret
 
-let reply_data_or_ack fct ty con t rid doms cons data =
+let reply_data_or_ack fct con t doms cons data =
        match fct con t doms cons data with
                | Some ret -> Packet.Reply ret
                | None -> Packet.Ack (fun () -> ())
 
-let reply_none fct ty con t rid doms cons data =
+let reply_none fct con t doms cons data =
        (* let the function reply *)
-       fct con t rid doms cons data
+       fct con t doms cons data
 
 let function_of_type ty =
        match ty with
@@ -342,7 +342,7 @@ let input_handle_error ~cons ~doms ~fct ~ty ~con ~t ~rid ~data =
        let reply_error e =
                Packet.Error e in
        try
-               fct ty con t rid doms cons data
+               fct con t doms cons data
        with
        | Define.Invalid_path          -> reply_error "EINVAL"
        | Define.Already_exist         -> reply_error "EEXIST"