On a DX graphics device, which is what an XNA device fundamentally is, spending excessive amounts of time in Present is not indicative of being inefficient graphically. Precisely the opposite normally. Now, I do stress "normally".

Without anymore code or a more worthwhile profile it'd be difficult to say. However, more times than not if you're spending ridiculous amounts of time in Present it means that your CPU is at least several frames ahead of your GPU and you're stalling it. This isn't to say that your draw calls are expensive, this may or may not be the case. If the complexity of all the tasks within your main loop aren't too terribly deep, then it can simply mean that you're sitting in a "busy-wait" loop. Eg: You're not handling the case where attempting to present when the GPU is excessively busy.
With DX devices, and I'm sure XNA is no different here, invoking Present on a device that is busy will raise an error that indicates the GPU is busy. Since Present operates asynchronously you're free to do whatever you wish here, further game processing or whatever. This is part of the beauty of that pipeline is that you can offload tasks to the CPU while you're stuck in that busy-wait loop. You'll never be faster than your slowest piece of the pipeline so you may look at metering your application (eg: slowing it down so that you don't end up with this massive disparity in CPU/GPU wait time) or you may look at perhaps doing some preprocessing on some number of frames ahead while you're waiting. The GPU is going to take a certain amount of time regardless if the application is even relatively efficient in terms of graphics API code, so you can just always count on this. With very simple applications with a lack of very in-depth game logic, it's very common to see this busy-wait cycle going on and on because the game logic simply doesn't consume enough time so it goes ahead and fills up the command buffer of the GPU very very quickly so you end up waiting every frame for retarded amounts of time. (In this case it's Present). This is primarily the case if you've got triple buffering going on (VSync). If this is the case you should look at the PRESENT flags and see if there's one that will allow you to go off and do something else if its busy, normally D3DPRESENT_DONOTWAIT. A simple test may be to FORCE the device to update whether its ready or not (which may cause tearing) but may reveal something about what's going on. This flag is normally D3DPRESENT_INTERVAL_IMMEDIATE.
So this is based ONLY on the indications from VTune. It may turn out that an instrumented profiler turns up something more meaningful and reveals a problem elsewhere that is manifesting itself similarly. I can't be sure. Either way, as you're no doubt seeing...balancing the GPU and CPU load is QUITE paramount and the usage of a good code profiler is absolutely critical.
A more meaningful examination is not inclusive time, which is what you're looking at. You'll want to look at frame time. See if PIX isn't available for XNA devices or if there is an XNA GPU profiler available similar to DX's PIX profiler available to you, it will give you time spent rendering a single frame and dissect the draw calls and their time. This is a MUCH more meaningful time, as you can average this out over the course of however much time your CPU is spent spinning around in there and determine who's doing the bulk of the work. There you can see if there's any room for optimization of the GPU code.