Are you the host or the device, and which direction is the transfer? Most transfers can be stopped, and if you can't stop it, you can just receive the data and discard it.
The sender of the data can always send a zero length packet to terminate the transfer. The device can terminate a transfer the host is sending it by returning a STALL handshake. If the host wants to terminate a bulk transfer it initiated, that's bad, hosts are supposed to know what they're doing and not change their mind like that.
If that's your problem the best thing to do would be to fix your logic so you don't get into that situation. Failing that, you could just accept the data and discard it.
A bulk only device should respond to a Mass storage reset and go back to the accepting CBW state. If your mass storage device doesn't accept that (and I wouldn't be surprised if it did), a port reset is your next step. Your best option is to not get into this circumstance in the first place though.